Quick start
Quick Start with Helm Chart
General
Clone/Copy Chart to your working directory
Execute command
Passing Kafka-UI configuration as Dict
Create values.yml file
Install by executing command
helm install helm-release-name charts/kafka-ui -f values.yml
Passing configuration file as ConfigMap
Create config map
This ConfigMap will be mounted to the Pod
Install by executing the command
helm install helm-release-name charts/kafka-ui --set yamlApplicationConfigConfigMap.name="kafka-ui-configmap",yamlApplicationConfigConfigMap.keyName="config.yml"
Passing environment variables as ConfigMap
Create config map
Install by executing the command
helm install helm-release-name charts/kafka-ui --set existingConfigMap="kafka-ui-helm-values"
Last updated