You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
547 B
17 lines
547 B
{{- if .Values.tcp -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
{{- include "ingress-nginx.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: controller
|
|
{{- with .Values.controller.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.controller.tcp.annotations }}
|
|
annotations: {{ toYaml .Values.controller.tcp.annotations | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ include "ingress-nginx.fullname" . }}-tcp
|
|
namespace: {{ .Release.Namespace }}
|
|
data: {{ tpl (toYaml .Values.tcp) . | nindent 2 }}
|
|
{{- end }}
|
|
|