You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{/* Set secret value to value in values.yaml if specified */}}
20
+
# Set secret value to value in values.yaml if specified
20
21
{{ $k }}: {{ $v | quote }}
21
22
{{- else }}
22
-
{{/* Refresh at any deployment for ? (pure random) value */}}
23
+
# Refresh at any deployment for ? (pure random) value
23
24
{{ $k }}: {{ randAlphaNum 20 | quote }}
24
25
{{- end }}
25
26
{{- end }}
26
27
{{- else if eq (typeOf $secret.data) "map" }}
27
28
{{- if not (hasKey $secret.data $k) }}
28
-
{{/* Create a random secret value if not specified in values.yaml if
29
-
it is not set and it is not already in the deployed secret (static random secret) */}}
29
+
# Create a random secret value if not specified in values.yaml if it is not set and it is not already in the deployed secret (static random secret) */}}
30
30
{{ $k }}: {{ randAlphaNum 20 | quote }}
31
31
{{- end}}
32
-
{{/* if it's not set and it's not ?, ignore */}}
32
+
{{- else }}
33
+
# This value should have been set in the values files or in the CI/CD pipeline"
0 commit comments