mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
15 lines
402 B
YAML
15 lines
402 B
YAML
{{- if .Values.headers }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
app: {{ template "nginx-ingress.name" . }}
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version }}
|
|
component: "{{ .Values.name }}"
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
name: {{ template "nginx-ingress.fullname" . }}-custom-headers
|
|
data:
|
|
{{ toYaml .Values.headers | indent 2 }}
|
|
{{- end }}
|