SSL example
Implement ssl for kafbat-ui
Create config map with content from kafka.truststore.jks and kafka.keystore.jks.
kubectl create configmap ssl-files --from-file=kafka.truststore.jks --from-file=kafka.keystore.jkskubectl create configmap ssl-files --from-file=kafka.truststore.jks --from-file=kafka.keystore.jks -n {{namespace}Create secret.
apiVersion: v1
kind: Secret
metadata:
name: ssl-secret
# Specify namespace if needed, uncomment next line and provide namespace
#namespace: {namespace}
type: Opaque
data:
KAFKA_CLUSTERS_0_PROPERTIES_SSL_TRUSTSTORE_PASSWORD: ##Base 64 encoded secret
KAFKA_CLUSTERS_0_PROPERTIES_SSL_KEYSTORE_PASSWORD: ##Base 64 encoded secretCreate ssl-values.yaml file with the following content.
Install chart with command
Last updated
Was this helpful?