init nemo chart

This commit is contained in:
Your Name
2025-06-05 08:36:12 +00:00
parent dbfbebb13c
commit f2203cd282
1235 changed files with 151843 additions and 0 deletions
@@ -0,0 +1,14 @@
{{- if not (.Values.existingImagePullSecret) }}
{{- range .Values.imagePullSecrets }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ .name }}
labels:
{{- include "nemo-platform.labels" $ | nindent 4 }}
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: {{ printf "{\"auths\":{\"%s\":{\"username\":\"%s\",\"password\":\"%s\",\"auth\":\"%s\"}}}" .registry .username .password (printf "%s:%s" .username .password | b64enc) | b64enc | quote }}
{{- end }}
{{- end }}