feat(pooler): allow configuration of advanced TLS cipher settings#9571
Merged
leonardoce merged 3 commits intocloudnative-pg:mainfrom Mar 9, 2026
Merged
Conversation
Contributor
|
❗ By default, the pull request is configured to backport to all release branches.
|
sxd
approved these changes
Dec 26, 2025
400aaa0 to
32eb59c
Compare
Contributor
|
Can you please mention that those features require pgBouncer 1.25 somehow? |
gbartolini
approved these changes
Mar 5, 2026
Contributor
|
/test |
Contributor
|
@gbartolini, here's the link to the E2E on CNPG workflow run: https://github.com/cloudnative-pg/cloudnative-pg/actions/runs/22741659428 |
The operator now allows overriding `client_tls_ciphers`, `client_tls13_ciphers`, and `server_tls13_ciphers`, which were previously rejected. These options were added to PgBouncer 1.25.0. Signed-off-by: Alex Szakaly <[email protected]>
Signed-off-by: Alex Szakaly <[email protected]>
Signed-off-by: Gabriele Bartolini <[email protected]>
afae163 to
eccc1da
Compare
leonardoce
approved these changes
Mar 9, 2026
cnpg-bot
pushed a commit
that referenced
this pull request
Mar 9, 2026
) The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema. Supported parameters: - `client_tls_ciphers` - `client_tls13_ciphers` (requires PgBouncer 1.25+) - `server_tls13_ciphers` (requires PgBouncer 1.25+) Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors. Closes #9570 Signed-off-by: Alex Szakaly <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]> (cherry picked from commit f97b08e)
leonardoce
pushed a commit
that referenced
this pull request
Mar 9, 2026
) The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema. Supported parameters: - `client_tls_ciphers` - `client_tls13_ciphers` (requires PgBouncer 1.25+) - `server_tls13_ciphers` (requires PgBouncer 1.25+) Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors. Closes #9570 Signed-off-by: Alex Szakaly <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]> (cherry picked from commit f97b08e)
leonardoce
pushed a commit
that referenced
this pull request
Mar 9, 2026
) The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema. Supported parameters: - `client_tls_ciphers` - `client_tls13_ciphers` (requires PgBouncer 1.25+) - `server_tls13_ciphers` (requires PgBouncer 1.25+) Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors. Closes #9570 Signed-off-by: Alex Szakaly <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]> (cherry picked from commit f97b08e) (cherry picked from commit 4ea836a)
mnencia
pushed a commit
that referenced
this pull request
Mar 9, 2026
) The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema. Supported parameters: - `client_tls_ciphers` - `client_tls13_ciphers` (requires PgBouncer 1.25+) - `server_tls13_ciphers` (requires PgBouncer 1.25+) Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors. Closes #9570 Signed-off-by: Alex Szakaly <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]> (cherry picked from commit f97b08e)
mnencia
pushed a commit
that referenced
this pull request
Mar 9, 2026
) The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema. Supported parameters: - `client_tls_ciphers` - `client_tls13_ciphers` (requires PgBouncer 1.25+) - `server_tls13_ciphers` (requires PgBouncer 1.25+) Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors. Closes #9570 Signed-off-by: Alex Szakaly <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]> (cherry picked from commit f97b08e) (cherry picked from commit 4ea836a)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The operator now supports overriding specific TLS cipher parameters in the PgBouncer configuration. Previously, these were rejected by the internal validation schema.
Supported parameters:
client_tls_ciphersclient_tls13_ciphers(requires PgBouncer 1.25+)server_tls13_ciphers(requires PgBouncer 1.25+)Note: Users are responsible for ensuring their PgBouncer image version supports these settings to avoid configuration errors.
Closes #9570