mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-07 13:22:12 +00:00
dd4d8bf086
* Added: filemounts support for apps agent * Changed: bump up version
11 lines
297 B
YAML
11 lines
297 B
YAML
{{ if .Values.enterpriseFeatures.clearmlApplications.fileMounts }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "clearml.name" . }}-apps-fm
|
|
data:
|
|
{{- range .Values.enterpriseFeatures.clearmlApplications.fileMounts }}
|
|
{{ .name }}: {{ .fileContent | b64enc }}
|
|
{{- end }}
|
|
{{ end }}
|