freeleaps-ops/operators/freeleaps-gitops-initializer/internal/helm/templates/secret/secret.yaml.tpl
zhenyus 0e256f8708 chore(git): code staging
Signed-off-by: zhenyus <zhenyus@mathmast.com>
2025-02-17 14:02:49 +08:00

11 lines
318 B
Smarty

[[ $componentName := .ComponentName ]]
apiVersion: v1
kind: Secret
metadata:
name: [[ .Config.Name ]]
namespace: {{ .Release.Namespace }}
type: Opaque
data:
[[ range $data := .Config.Data ]]
[[- $data.Name ]]: {{ .Values.[[ $componentName ]].configs.[[ $data.Name | camelCase ]] | b64enc | quote }}
[[ end ]]