diff --git a/examples/chart/teleport-cluster/templates/proxy/_config.common.tpl b/examples/chart/teleport-cluster/templates/proxy/_config.common.tpl index d63f36768c486..883ed5734d85d 100644 --- a/examples/chart/teleport-cluster/templates/proxy/_config.common.tpl +++ b/examples/chart/teleport-cluster/templates/proxy/_config.common.tpl @@ -23,7 +23,7 @@ proxy_service: {{- else }} public_addr: '{{ required "clusterName is required in chart values" .Values.clusterName }}:443' {{- end }} -{{- if eq .Values.proxyListenerMode "separate" }} +{{- if ne .Values.proxyListenerMode "multiplex" }} listen_addr: 0.0.0.0:3023 {{- if .Values.sshPublicAddr }} ssh_public_addr: {{- toYaml .Values.sshPublicAddr | nindent 8 }} diff --git a/examples/chart/teleport-cluster/templates/proxy/deployment.yaml b/examples/chart/teleport-cluster/templates/proxy/deployment.yaml index 8e502e209db56..fc1c15eb9ee94 100644 --- a/examples/chart/teleport-cluster/templates/proxy/deployment.yaml +++ b/examples/chart/teleport-cluster/templates/proxy/deployment.yaml @@ -169,7 +169,7 @@ spec: containerPort: 3021 protocol: TCP {{- end }} - {{- if eq $proxy.proxyListenerMode "separate" }} + {{- if ne $proxy.proxyListenerMode "multiplex" }} - name: sshproxy containerPort: 3023 protocol: TCP diff --git a/examples/chart/teleport-cluster/templates/proxy/service.yaml b/examples/chart/teleport-cluster/templates/proxy/service.yaml index d1b3d634ffdd0..d5d3e8046dd14 100644 --- a/examples/chart/teleport-cluster/templates/proxy/service.yaml +++ b/examples/chart/teleport-cluster/templates/proxy/service.yaml @@ -33,7 +33,7 @@ spec: port: 443 targetPort: 3080 protocol: TCP -{{- if eq $proxy.proxyListenerMode "separate" }} +{{- if ne $proxy.proxyListenerMode "multiplex" }} - name: sshproxy port: 3023 targetPort: 3023