-
Notifications
You must be signed in to change notification settings - Fork 689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
internal/provisioner: support more than one instance per namespace #4426
Conversation
Codecov Report
@@ Coverage Diff @@
## main #4426 +/- ##
==========================================
+ Coverage 74.20% 74.26% +0.06%
==========================================
Files 136 137 +1
Lines 12237 12272 +35
==========================================
+ Hits 9080 9114 +34
- Misses 2959 2960 +1
Partials 198 198
|
4db2114
to
40097c3
Compare
// ContourCertsSecretName returns the name of the Contour xDS TLS certs Secret resource. | ||
func (c *Contour) ContourCertsSecretName() string { | ||
return c.Name + "-contourcert" | ||
} | ||
|
||
// EnvoyCertsSecretName returns the name of the Envoy xDS TLS certs Secret resource. | ||
func (c *Contour) EnvoyCertsSecretName() string { | ||
return c.Name + "-envoycert" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a subsequent PR that flips these cert secrets' names around to use the Gateway name as a suffix rather than a prefix, for consistency. Will be done as part of directly generating the certs rather than using the Job.
Signed-off-by: Steve Kriss <krisss@vmware.com>
Signed-off-by: Steve Kriss <krisss@vmware.com>
Signed-off-by: Steve Kriss <krisss@vmware.com>
Signed-off-by: Steve Kriss <krisss@vmware.com>
Signed-off-by: Steve Kriss <krisss@vmware.com>
40097c3
to
b06fc00
Compare
Rebased. |
Adds support for provisioning more than one Contour+Envoy instance per namespace.
Closes #4418.