Skip to content

Commit

Permalink
Add unique listener tls secret
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Zgabur <[email protected]>
  • Loading branch information
azgabur committed Dec 5, 2024
1 parent 133b244 commit ee9750f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion testsuite/gateway/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,10 @@ def asdict(self):
"port": self.port,
"protocol": self.protocol,
"allowedRoutes": self.allowedRoutes,
"tls": {"mode": self.mode, "certificateRefs": [{"name": f"{self.gateway_name}-tls", "kind": "Secret"}]},
"tls": {
"mode": self.mode,
"certificateRefs": [{"name": f"{self.gateway_name}-{self.name}-tls", "kind": "Secret"}],
},
}


Expand Down

0 comments on commit ee9750f

Please sign in to comment.