Files
charts/bitnami/nginx-ingress-controller/templates/default-backend-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

19 lines
880 B
YAML

{{- if and (.Values.defaultBackend.enabled) (.Values.defaultBackend.serverBlockConfig) -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "nginx-ingress-controller.defaultBackend.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: default-backend
{{- 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:
defaultBackend.conf: |-
{{- include "common.tplvalues.render" (dict "value" .Values.defaultBackend.serverBlockConfig "context" $) | nindent 4 }}
{{- end }}