diff --git a/demo01-kafka/values.yaml b/demo01-kafka/values.yaml new file mode 100644 index 0000000..52811bd --- /dev/null +++ b/demo01-kafka/values.yaml @@ -0,0 +1,39 @@ +#version: kafka-ui, 1.5.1 +image: + registry: ghcr.io + repository: kafbat/kafka-ui + pullPolicy: IfNotPresent +yamlApplicationConfig: + kafka: + clusters: + - name: kafka-cluster + bootstrapServers: SASL_PLAINTEXT://demo01-kafka.demo01-kafka.svc.cluster.local:9092 + properties: + security.protocol: SASL_PLAINTEXT + sasl.mechanism: SCRAM-SHA-512 + sasl.jaas.config: org.apache.kafka.common.security.scram.ScramLoginModule required username="admin" password="password1234!"; + auth: + type: disabled + management: + health: + ldap: + enabled: false + +env: + - name: SERVER_MAX_HTTP_REQUEST_HEADER_SIZE + value: "32768" + +ingress: + enabled: true + annotations: + cert-manager.io/cluster-issuer: "root-ca-issuer" + cert-manager.io/duration: 8760h + cert-manager.io/renew-before: 720h + kubernetes.io/ingress.class: kong + konghq.com/protocols: https + konghq.com/https-redirect-status-code: "301" + konghq.com/plugins: oidc-plugin, keycloak-authz-plugin + host: "demo01-kafka.gke.paasup.io" + tls: + enabled: true + secretName: "demo01-kafka-tls-secret" \ No newline at end of file