clearml-helm-charts/charts/clearml-agent/templates/service-secret.yaml
2023-04-13 17:44:58 +02:00

11 lines
250 B
YAML

{{ if .Values.agentk8sglue.fileMounts }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "clearmlAgent.fullname" . }}-afm
data:
{{- range .Values.agentk8sglue.fileMounts }}
{{ .name }}: {{ .fileContent | b64enc }}
{{- end }}
{{ end }}