mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-01-31 09:06:48 +00:00
a36519536b
* Fixed: name reference * Changed: bump up version
12 lines
310 B
YAML
12 lines
310 B
YAML
{{- if .Values.imageCredentials.enabled }}
|
|
{{- if not .Values.imageCredentials.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "clearmlServing.fullname" . }}-ark
|
|
type: kubernetes.io/dockerconfigjson
|
|
data:
|
|
.dockerconfigjson: {{ template "imagePullSecret" . }}
|
|
{{- end }}
|
|
{{- end }}
|