ingress-nginx-helm/charts/ingress-nginx/templates/udp-configmap.yaml

17 lines
475 B
YAML
Raw Normal View History

2020-02-24 19:25:57 +00:00
{{- if .Values.udp }}
apiVersion: v1
kind: ConfigMap
metadata:
labels:
app: {{ template "nginx-ingress.name" . }}
chart: {{ template "nginx-ingress.chart" . }}
component: "{{ .Values.controller.name }}"
heritage: {{ .Release.Service }}
release: {{ .Release.Name }}
annotations:
{{ toYaml .Values.controller.udp.annotations | indent 4}}
2020-02-24 19:25:57 +00:00
name: {{ template "nginx-ingress.fullname" . }}-udp
data:
{{ tpl (toYaml .Values.udp) . | indent 2 }}
{{- end }}