-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
helm: Add support for separate Postgres/Mongo listeners in teleport-cluster chart #10858
Conversation
@zmb3 The scope of the PR has changed a bit now with a couple of new values, so would appreciate a re-review. |
- it: matches snapshot for acme-off.yaml | ||
values: | ||
- ../.lint/acme-off.yaml | ||
asserts: | ||
- hasDocuments: | ||
count: 1 | ||
- isKind: | ||
of: ConfigMap | ||
- matchSnapshot: {} | ||
|
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.
This test was accidentally duplicated twice in the initial commit.
@zmb3 This one has unit tests now... 😁 |
7b211d1
to
4f94a12
Compare
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.
@webvictim Should we add this to the Helm chart docs too in this PR?
@r0mant Yes, good point. I will add this to the docs, merge and backport tomorrow. |
Also adds missing example for setitng proxyListenerMode
Also adds a quick fix for #11411 |
…luster chart (#10858) * helm: Update NOTES.txt for AWS ACM * Add support for separate Postgres/MongoDB listeners in teleport-cluster chart * Special case backend listener protocol based on presence of ACM annotation * Don't add AWS annotations when not in AWS mode * Adds for separatePostgresListener/separateMongoListener Also adds missing example for setitng proxyListenerMode * Add continuous backups permission to DynamoDB policy Fixes #11411
…luster chart (#10858) * helm: Update NOTES.txt for AWS ACM * Add support for separate Postgres/MongoDB listeners in teleport-cluster chart * Special case backend listener protocol based on presence of ACM annotation * Don't add AWS annotations when not in AWS mode * Adds for separatePostgresListener/separateMongoListener Also adds missing example for setitng proxyListenerMode * Add continuous backups permission to DynamoDB policy
…luster chart (#10858) (#11434) * helm: Update NOTES.txt for AWS ACM * Add support for separate Postgres/MongoDB listeners in teleport-cluster chart * Special case backend listener protocol based on presence of ACM annotation * Don't add AWS annotations when not in AWS mode * Adds for separatePostgresListener/separateMongoListener Also adds missing example for setitng proxyListenerMode * Add continuous backups permission to DynamoDB policy
This PR implements support for separating Postgres and/or Mongo listeners out to a separate port and configuring the
LoadBalancer
appropriately. This is useful when using ACM to terminate traffic in front of the load balancer, as multiplexing on the same port will no longer work.It also adds a special case to
teleport-cluster
NOTES.txt when using AWS ACM, so we don't show an error whencert-manager
isn't enabled but ACM is being used.Backports required:
branch/v8
branch/v9
Linked to #10857