Files
charts/bitnami/apache/templates/configmap-vhosts.yaml
Miguel Ruiz b7953e1646 [bitnami/apache] Add missing namespace metadata (#10097)
* [bitnami/apache] Add missing namespace metadata

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

* Version bump

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
2022-05-11 08:51:11 +02:00

17 lines
695 B
YAML

{{- if and (.Files.Glob "files/vhosts/*.conf") (not .Values.vhostsConfigMap) }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.names.fullname" . }}-vhosts
namespace: {{ .Release.Namespace | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
{{- 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:
{{ (.Files.Glob "files/vhosts/*.conf").AsConfig | indent 2 }}
{{ end }}