Skip to content

Commit

Permalink
helm: support setting proxyListenerMode to emptystring
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoShaka committed Apr 12, 2023
1 parent cf4100b commit df975e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -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 }}
Expand Down
Expand Up @@ -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
Expand Down
Expand Up @@ -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
Expand Down

0 comments on commit df975e1

Please sign in to comment.