Merge pull request #5178 from gregsidelinger/master
Adding annotations support to helm chart configmaps
This commit is contained in:
commit
a7fa4cd2ce
5 changed files with 19 additions and 2 deletions
|
|
@ -8,6 +8,8 @@ metadata:
|
|||
component: "{{ .Values.controller.name }}"
|
||||
heritage: {{ .Release.Service }}
|
||||
release: {{ .Release.Name }}
|
||||
annotations:
|
||||
{{ toYaml .Values.controller.configAnnotations | indent 4}}
|
||||
name: {{ template "nginx-ingress.controller.fullname" . }}
|
||||
data:
|
||||
{{- if .Values.controller.addHeaders }}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ metadata:
|
|||
component: "{{ .Values.controller.name }}"
|
||||
heritage: {{ .Release.Service }}
|
||||
release: {{ .Release.Name }}
|
||||
annotations:
|
||||
{{ toYaml .Values.controller.tcp.annotations | indent 4}}
|
||||
name: {{ template "nginx-ingress.fullname" . }}-tcp
|
||||
data:
|
||||
{{ tpl (toYaml .Values.tcp) . | indent 2 }}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ metadata:
|
|||
component: "{{ .Values.controller.name }}"
|
||||
heritage: {{ .Release.Service }}
|
||||
release: {{ .Release.Name }}
|
||||
annotations:
|
||||
{{ toYaml .Values.controller.udp.annotations | indent 4}}
|
||||
name: {{ template "nginx-ingress.fullname" . }}-udp
|
||||
data:
|
||||
{{ tpl (toYaml .Values.udp) . | indent 2 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue