AWS MSK SASL
Setting up SASL/SCRAM authentication for an Amazon MSK cluster
Create Kubernetes Secret
kubectl create secret generic aws-msk-kafka-secret -n seldon-mesh --from-literal password="<MSK SASL Password>"Configure Seldon Core 2
# k8s/samples/values-aws-msk-kafka-sasl-scram.yaml.tmpl
kafka:
bootstrap: <msk-bootstrap-server-endpoints>
topics:
replicationFactor: 3
numPartitions: 4
security:
kafka:
protocol: SASL_SSL
sasl:
mechanism: SCRAM-SHA-512
client:
username: < username >
secret: aws-msk-kafka-secret
passwordPath: password
ssl:
client:
secret:
brokerValidationSecret:Troubleshooting
Last updated
Was this helpful?

