mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
13 lines
416 B
YAML
13 lines
416 B
YAML
{{- if .Files.Glob "files/*" }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "pytorch.fullname" . }}-files
|
|
labels:
|
|
app.kubernetes.io/name: {{ include "pytorch.name" . }}
|
|
helm.sh/chart: {{ include "pytorch.chart" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
data:
|
|
{{ (.Files.Glob "files/*").AsConfig | indent 2 }}
|
|
{{ end }} |