From 4f898551caa21f73b77280b4ca77d5b7244574f8 Mon Sep 17 00:00:00 2001 From: Michael Edgar Date: Thu, 11 Apr 2024 12:19:12 -0400 Subject: [PATCH] Update console deployment resource for release 0.0.33 Signed-off-by: Michael Edgar --- install/resources/console/console.deployment.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install/resources/console/console.deployment.yaml b/install/resources/console/console.deployment.yaml index e88065e16..2157d1b97 100644 --- a/install/resources/console/console.deployment.yaml +++ b/install/resources/console/console.deployment.yaml @@ -20,9 +20,10 @@ spec: containers: ### API - name: console-api - image: quay.io/eyefloaters/console-api:0.0.31 + image: quay.io/eyefloaters/console-api:0.0.33 ports: - containerPort: 8080 + # Adjust KAFKA and CONSOLE_KAFKA variables to match your Kafka cluster env: - name: KAFKA_SECURITY_PROTOCOL value: SASL_SSL @@ -31,6 +32,7 @@ spec: - name: CONSOLE_KAFKA_EXAMPLE value: ${NAMESPACE}/console-kafka - name: CONSOLE_KAFKA_EXAMPLE_BOOTSTRAP_SERVERS + # Replace with your Kafka's boostrap address value: bootstrap.console-kafka.apps-crc.testing:443 - name: CONSOLE_KAFKA_EXAMPLE_SASL_JAAS_CONFIG valueFrom: @@ -39,7 +41,7 @@ spec: key: sasl.jaas.config ### User Interface - name: console-ui - image: quay.io/eyefloaters/ui:0.0.31 + image: quay.io/eyefloaters/ui:0.0.33 volumeMounts: - mountPath: /app/.next/cache name: cache