mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 06:57:55 +08:00
* [bitnami/apache] Add missing namespace metadata Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Version bump Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
17 lines
695 B
YAML
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 }}
|