From 38cd398fbdf24f74a911e06cf292a094d81d3b14 Mon Sep 17 00:00:00 2001 From: Stanley Sung Date: Wed, 2 Feb 2022 15:04:16 -0600 Subject: [PATCH] added value overrides for master broadcastaddress --- stable/yugabyte/templates/service.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/yugabyte/templates/service.yaml b/stable/yugabyte/templates/service.yaml index b2143b5f07..91214d53eb 100644 --- a/stable/yugabyte/templates/service.yaml +++ b/stable/yugabyte/templates/service.yaml @@ -350,7 +350,7 @@ spec: --allow_insecure_connections={{ $root.Values.tls.insecure }} \ {{- end }} --rpc_bind_addresses={{ $rpcAddr }} \ - --server_broadcast_addresses={{ $broadcastAddr }} \ + --server_broadcast_addresses={{ $root.Values.master.serverBroadcastAddress | default $broadcastAddr }} \ --webserver_interface={{ $webserverAddr }} {{- else }} {{- $cqlAddr := include "yugabyte.cql_proxy_bind_address" $serviceValues -}} @@ -386,7 +386,7 @@ spec: --undefok=num_cpus,enable_ysql \ --use_node_hostname_for_local_tserver=true \ {{- if $root.Values.authCredentials.ysql.password }} - --ysql_enable_auth=true \ + --ysql_enable_auth=true {{- end }} {{- if or $root.Values.authCredentials.ycql.user $root.Values.authCredentials.ycql.password }} --use_cassandra_authentication=true \