From 61ecdb489de3c2e39dffda1a0bf3ef8b7e6ba306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@jku.at> Date: Tue, 30 May 2023 10:49:47 +0200 Subject: [PATCH] Add example config for Kafka nodeports on Windows --- helm/values.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/helm/values.yaml b/helm/values.yaml index 3e3dda0d..44f418e3 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -23,7 +23,7 @@ grafana: # Strimzi and Kafka ### strimzi-kafka-operator: - createGlobalResources: false # Might disable some of Strimzi's features + createGlobalResources: true # Might disable some of Strimzi's features strimzi: enabled: true @@ -33,6 +33,20 @@ strimzi: port: 9092 type: internal tls: false + - name: external + port: 9094 + type: nodeport + tls: false + configuration: + bootstrap: + nodePort: 32100 + brokers: + - broker: 0 + advertisedHost: localhost + - broker: 1 + advertisedHost: localhost + - broker: 2 + advertisedHost: localhost replicas: 3 config: "message.max.bytes": "134217728" # 128 MB -- GitLab