Skip to content
This repository has been archived by the owner on Oct 27, 2020. It is now read-only.

Commit

Permalink
node port (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank B Greco Jr committed Jun 15, 2018
1 parent c562326 commit 2596299
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions helm/kanali/templates/service-kanali.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ spec:
{{- if .Values.gateway.securePort }}
- name: https
port: {{.Values.gateway.securePort}}
{{- if .Values.gateway.secureNodePort }}
nodePort: {{.Values.gateway.secureNodePort}}
{{- end }}
{{- end }}
{{- if .Values.gateway.insecurePort }}
- name: http
port: {{.Values.gateway.insecurePort}}
{{- if .Values.gateway.insecureNodePort }}
nodePort: {{.Values.gateway.insecureNodePort}}
{{- end }}
{{- end }}
type: NodePort
2 changes: 2 additions & 0 deletions helm/kanali/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ namespace: kanali
logLevel: info
gateway:
securePort: 8443
secureNodePort: 0
secureBindAddress: 0.0.0.0
insecurePort: 0
insecureNodePort: 0
insecureBindAddress: 0.0.0.0
rsa:
secretName: kanali-rsa
Expand Down

0 comments on commit 2596299

Please sign in to comment.