30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
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.configAnnotations }}
|
|
annotations: {{ toYaml .Values.controller.configAnnotations | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ include "ingress-nginx.controller.fullname" . }}
|
|
namespace: {{ include "ingress-nginx.namespace" . }}
|
|
data:
|
|
{{- if .Values.controller.allowSnippetAnnotations }}
|
|
allow-snippet-annotations: "true"
|
|
{{- end }}
|
|
{{- if .Values.controller.addHeaders }}
|
|
add-headers: {{ include "ingress-nginx.namespace" . }}/{{ include "ingress-nginx.fullname" . }}-custom-add-headers
|
|
{{- end }}
|
|
{{- if .Values.controller.proxySetHeaders }}
|
|
proxy-set-headers: {{ include "ingress-nginx.namespace" . }}/{{ include "ingress-nginx.fullname" . }}-custom-proxy-headers
|
|
{{- end }}
|
|
{{- if .Values.dhParam }}
|
|
ssl-dh-param: {{ include "ingress-nginx.namespace" . }}/{{ include "ingress-nginx.controller.fullname" . }}
|
|
{{- end }}
|
|
{{- range $key, $value := .Values.controller.config }}
|
|
{{- $key | nindent 2 }}: {{ tpl (toString $value) $ | quote }}
|
|
{{- end }}
|