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
feat: Allow setting SEQ_FIRSTRUN_ADMINPASSWORD and SEQ_FIRSTRUN_ADMINPASSWORDHASHa from Secret (#65)
If `firstRunAdminPasswordSecret` or `firstRunAdminPasswordHashSecret` object
is defined with `name` of existing Kubernetes secret and its data `key`,
then `envFrom` is used to define the container environment variable with
password or password hash value retrieved from the given secret key.
Closes#64
Signed-off-by: Mateusz Łoskot <[email protected]>
# At least one of the default password variables must be set; note that this ignores SEQ_PASSWORD, but
182
196
# that variable is just a convenience alias for SEQ_FIRSTRUN_ADMINPASSWORD anyway.
183
-
{{- if not (or .Values.firstRunNoAuthentication .Values.firstRunAdminPassword .Values.firstRunAdminPasswordHash) }}
184
-
{{- fail "One of firstRunAdminPassword or firstRunAdminPasswordHash must be specified." }}
197
+
{{- if not (or .Values.firstRunNoAuthentication .Values.firstRunAdminPassword .Values.firstRunAdminPasswordHash .Values.firstRunAdminPasswordSecret .Values.firstRunAdminPasswordHashSecret) }}
198
+
{{- fail "One of firstRunAdminPassword or firstRunAdminPasswordHash or firstRunAdminPasswordSecret or firstRunAdminPasswordHashSecret must be specified." }}
0 commit comments