Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ spec:
description: The name of the OpenSearch index.
type: string
example: data
sslContextParameters:
title: SSL Context Parameters
description: >-
Reference to a registry bean of type org.apache.camel.support.jsse.SSLContextParameters,
written as "#bean:myBeanName". Use this for anything the certificate property cannot
express - mutual TLS with a client keystore, a custom trust store, a specific TLS protocol
version, or cipher suite selection. When set it takes precedence over certificate, so
configure one or the other rather than both.
type: string
certificate:
title: Certificate
description: The Certificate for accessing the OpenSearch cluster. You must encode this value in base64.
Expand Down Expand Up @@ -129,3 +138,4 @@ spec:
enableSSL: "{{enableSSL}}"
indexName: "{{?indexName}}"
certificatePath: "base64:{{?certificate}}"
sslContextParameters: "{{?sslContextParameters}}"
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ spec:
title: OpenSearch Cluster Name
description: The name of the cluster.
type: string
sslContextParameters:
title: SSL Context Parameters
description: >-
Reference to a registry bean of type org.apache.camel.support.jsse.SSLContextParameters,
written as "#bean:myBeanName". Use this for anything the certificate property cannot
express - mutual TLS with a client keystore, a custom trust store, a specific TLS protocol
version, or cipher suite selection. When set it takes precedence over certificate, so
configure one or the other rather than both.
type: string
certificate:
title: Certificate
description: The Certificate for accessing the Opensearch cluster. You must encode this value in base64.
Expand Down Expand Up @@ -112,6 +121,7 @@ spec:
hostAddresses: "{{hostAddresses}}"
enableSSL: "{{enableSSL}}"
certificatePath: "base64:{{?certificate}}"
sslContextParameters: "{{?sslContextParameters}}"
- marshal:
json:
library: Gson
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ spec:
- to:
uri: pulsar:{{topicType}}/{{tenant}}/{{namespaceName}}/{{topic}}
parameters:
serviceUrl: "{{serviceUrl}}"
serviceUrl: "RAW({{serviceUrl}})"
authenticationClass: "{{?authenticationClass}}"
authenticationParams: "{{?authenticationParams}}"
batchingEnabled: "{{?batchingEnabled}}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ spec:
from:
uri: pulsar:{{topicType}}/{{tenant}}/{{namespaceName}}/{{topic}}
parameters:
serviceUrl: "{{serviceUrl}}"
serviceUrl: "RAW({{serviceUrl}})"
authenticationClass: "{{?authenticationClass}}"
authenticationParams: "{{?authenticationParams}}"
consumerNamePrefix: "{{?consumerNamePrefix}}"
Expand Down
Loading