From 815aa54758e7e5727ad5410c60703d8ebb2433bf Mon Sep 17 00:00:00 2001 From: Oleksandr Mazur Date: Thu, 20 Mar 2025 15:10:54 +0200 Subject: [PATCH 1/2] Helm chart: remove invalid env var declarations CGW_KAFKA_CONSUME_TOPIC and PRODUCE topic are invalid env vars. We can safely remove them to avoid confusion. Signed-off-by: Oleksandr Mazur --- helm/values.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/helm/values.yaml b/helm/values.yaml index 993a893..7c1307e 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -105,8 +105,6 @@ public_env_variables: CGW_WSS_CERT: "websocket-cert.pem" CGW_WSS_KEY: "websocket-key.pem" CGW_LOG_LEVEL: "info" # or debug - CGW_KAFKA_CONSUME_TOPIC: "CnC" - CGW_KAFKA_PRODUCE_TOPIC: "CnC_Res" # set to (#cpus * 2) - 2 DEFAULT_WSS_THREAD_NUM: "6" # CGW_DB_TLS: "yes" @@ -158,4 +156,4 @@ existingDBCertsSecret: # ....... # -----END CERTIFICATE----- -existingCgwCertsSecret: \ No newline at end of file +existingCgwCertsSecret: From 421abc526d9c9abcbd73c4589c618893c6590c5b Mon Sep 17 00:00:00 2001 From: Oleksandr Mazur Date: Thu, 20 Mar 2025 15:11:52 +0200 Subject: [PATCH 2/2] Helm chart: add default env var definitions for advertized grpc info Signed-off-by: Oleksandr Mazur --- helm/values.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm/values.yaml b/helm/values.yaml index 7c1307e..6578508 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -107,6 +107,9 @@ public_env_variables: CGW_LOG_LEVEL: "info" # or debug # set to (#cpus * 2) - 2 DEFAULT_WSS_THREAD_NUM: "6" + CGW_GRPC_PUBLIC_HOST: "localhost" + CGW_GRPC_PUBLIC_PORT: "15051" + # CGW_DB_TLS: "yes" # CGW_REDIS_TLS: "yes" # CGW_KAFKA_TLS: "yes"