-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: Kafka Setup SSL Arg Fix (#16469)
- Loading branch information
1 parent
55400a9
commit 40ecd60
Showing
4 changed files
with
146 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
46 changes: 46 additions & 0 deletions
46
ingestion/src/metadata/examples/workflows/kafka_ssl_config.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
source: | ||
type: kafka | ||
serviceName: local_kafka | ||
serviceConnection: | ||
config: | ||
type: Kafka | ||
bootstrapServers: localhost:9092 | ||
schemaRegistryURL: http://localhost:8081 | ||
#consumerConfig: | ||
# example of consume config, for more info about accepted values visit: | ||
# https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md | ||
#ssl.truststore.password: password | ||
#schemaRegistryConfig: | ||
# example of scema registry config, for more info about accepted values visit: | ||
# https://docs.confluent.io/5.5.1/clients/confluent-kafka-python/index.html#confluent_kafka.schema_registry.SchemaRegistryClient | ||
#basic.auth.user.info: username:password | ||
schemaRegistrySSL: | ||
caCertificate: | | ||
-----BEGIN CERTIFICATE----- | ||
sample caCertificateData | ||
-----END CERTIFICATE----- | ||
sslCertificate: | | ||
-----BEGIN CERTIFICATE----- | ||
sample sslCertificateData | ||
-----END CERTIFICATE----- | ||
sslKey: | | ||
-----BEGIN RSA PRIVATE KEY | ||
sample sslKeyData | ||
-----END RSA PRIVATE KEY | ||
sourceConfig: | ||
config: | ||
type: MessagingMetadata | ||
topicFilterPattern: | ||
excludes: | ||
- _confluent.* | ||
generateSampleData: true | ||
sink: | ||
type: metadata-rest | ||
config: {} | ||
workflowConfig: | ||
# loggerLevel: INFO # DEBUG, INFO, WARN or ERROR | ||
openMetadataServerConfig: | ||
hostPort: http://localhost:8585/api | ||
authProvider: openmetadata | ||
securityConfig: | ||
jwtToken: "eyJraWQiOiJHYjM4OWEtOWY3Ni1nZGpzLWE5MmotMDI0MmJrOTQzNTYiLCJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJhZG1pbiIsImlzQm90IjpmYWxzZSwiaXNzIjoib3Blbi1tZXRhZGF0YS5vcmciLCJpYXQiOjE2NjM5Mzg0NjIsImVtYWlsIjoiYWRtaW5Ab3Blbm1ldGFkYXRhLm9yZyJ9.tS8um_5DKu7HgzGBzS1VTA5uUjKWOCU0B_j08WXBiEC0mr0zNREkqVfwFDD-d24HlNEbrqioLsBuFRiwIWKc1m_ZlVQbG7P36RUxhuv2vbSp80FKyNM-Tj93FDzq91jsyNmsQhyNv_fNr3TXfzzSPjHt8Go0FMMP66weoKMgW2PbXlhVKwEuXUHyakLLzewm9UMeQaEiRzhiTMU3UkLXcKbYEJJvfNFcLwSl9W8JCO_l0Yj3ud-qt_nQYEZwqW6u5nfdQllN133iikV4fM5QZsMCnm8Rq1mvLR0y9bmJiD7fwM1tmJ791TUWqmKaTnP49U493VanKpUAfzIiOiIbhg" |
This file contains 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
This file contains 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