Files
charts/bitnami/nginx-ingress-controller/templates/addheaders-configmap.yaml
Miguel Ruiz abbdaca6af [bitnami/nginx-ingress-controller] Chart standardised (#10049)
* [bitnami/nginx-ingress-controller] Chart standardised

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Remove metadata and regenerate README.md

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Apply suggetions

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Update VIB

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* [bitnami/nginx-ingress-controller] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2022-05-11 09:25:01 +02:00

17 lines
766 B
YAML

{{- if .Values.addHeaders }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ printf "%s-custom-add-headers" (include "common.names.fullname" .) }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: controller
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" (dict "value" .Values.commonLabels "context" $) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data: {{- include "common.tplvalues.render" (dict "value" .Values.addHeaders "context" $ ) | nindent 2 }}
{{- end }}