mirror of
https://github.com/bitnami/charts.git
synced 2026-03-13 14:57:24 +08:00
* [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>
17 lines
766 B
YAML
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 }}
|