CAMEL-23314: camel-opensearch - add SSLContextParameters support for TLS configuration#22578
Merged
oscerd merged 3 commits intoapache:mainfrom Apr 13, 2026
Merged
CAMEL-23314: camel-opensearch - add SSLContextParameters support for TLS configuration#22578oscerd merged 3 commits intoapache:mainfrom
oscerd merged 3 commits intoapache:mainfrom
Conversation
…TLS configuration Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
Contributor
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🐫 Apache Camel Committers, please review the following items:
|
davsclaus
approved these changes
Apr 13, 2026
orpiske
approved these changes
Apr 13, 2026
squakez
approved these changes
Apr 13, 2026
…tions Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
Croway
approved these changes
Apr 13, 2026
…tions Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
Contributor
|
🧪 CI tested the following changed modules:
All tested modules (10 modules)
|
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.
Summary
Adds
SSLContextParameterssupport tocamel-opensearch, following the same pattern as other Camel components that expose TLS configuration (camel-vertx-http,camel-kafka, etc.). Users can now configure TLS protocols, cipher suites, named groups, and signature schemes instead of relying solely on the CA certificate path.Changes
OpensearchConfiguration- newsslContextParametersURI option (labelsecurity).OpensearchComponent- now implementsSSLContextParametersAware; exposessslContextParametersanduseGlobalSslContextParametersat component level. Propagates the component-level value to the endpoint configuration, falling back to the globalSSLContextParameterswhenuseGlobalSslContextParameters=true.OpensearchProducer- the SSL setup increateClient()now prefersSSLContextParameters(viacreateSSLContext(camelContext)) when configured; falls back tocertificatePath(existing behaviour), and finally toSSLContext.getDefault().The existing certificate-path-only configuration continues to work as a fallback.
Acceptance Criteria (from CAMEL-23314)
SSLContext)Test plan
Claude Code on behalf of Andrea Cosentino