13 lines
447 B
YAML
13 lines
447 B
YAML
{{- if .Values.tcp -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
{{- include "ingress-nginx.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: {{ .Values.controller.name | quote }}
|
|
{{- if .Values.controller.tcp.annotations }}
|
|
annotations: {{ toYaml .Values.controller.tcp.annotations | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ include "ingress-nginx.fullname" . }}-tcp
|
|
data: {{ tpl (toYaml .Values.tcp) . | nindent 2 }}
|
|
{{- end }}
|