Add ingressShim.extraArgs param to helm chart

This commit is contained in:
James Munnelly 2017-12-01 15:28:02 +00:00
parent d9e44d2af9
commit 638733f617
2 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,10 @@ spec:
- name: ingress-shim
image: "{{ .Values.ingressShim.image.repository }}:{{ default .Values.ingressShim.image.tag | default .Values.image.tag }}"
imagePullPolicy: {{ .Values.ingressShim.image.pullPolicy }}
args:
{{- range .Values.ingressShim.extraArgs }}
- {{ . }}
{{- end }}
resources:
{{ toYaml .Values.ingressShim.resources | indent 12 }}
{{- end }}

View File

@ -20,6 +20,8 @@ resources:
ingressShim:
enabled: true
# Optional additional arguments for ingress-shim
extraArgs: []
resources:
requests:
cpu: 10m