mirror of
https://github.com/bitnami/charts.git
synced 2026-03-03 06:58:45 +08:00
* [bitnami/mxnet] Standardisation + Refactor Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Service changes Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Fix issues with namespace helper Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Regenerate README Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> * Apply suggestions Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Add missing references to namespace and common labels/annotations Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Remove comments from values.yaml Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Fix metadata and regenerate README Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Fix updateStrategy for deployment Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Fix indent Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> * Fix spec.strategy Signed-off-by: Miguel Ruiz <miruiz@vmware.com> * [bitnami/mxnet] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
17 lines
667 B
YAML
17 lines
667 B
YAML
{{- if .Files.Glob "files/*" }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ printf "%s-files" (include "common.names.fullname" .) }}
|
|
namespace: {{ include "common.names.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/*").AsConfig | indent 2 }}
|
|
{{- end }}
|