Skip to content

Commit fd77bbe

Browse files
fix: auth entry in config.json was overriding AUTH key for newly created wsku resources
1 parent 51d1753 commit fd77bbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

admin/nuvfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ tasks:
4646
export USERNAME={{._username_}}
4747
export EMAIL={{._email_}}
4848
export PASSWORD={{._password_}}
49-
export AUTH="$(nuv -random -u):$(nuv -random --str 64)"
49+
export NEW_USER_AUTH="$(nuv -random -u):$(nuv -random --str 64)"
5050
5151
# check {{._username_}} is at least 5 chars long
5252
if [ ${#USERNAME} -lt 5 ]

admin/user-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
email: ${EMAIL}
2626
password: ${PASSWORD}
2727
namespace: ${USERNAME}
28-
auth: ${AUTH}
28+
auth: ${NEW_USER_AUTH}
2929
redis:
3030
enabled: ${REDIS_ENABLED}
3131
prefix: ${USERNAME}

0 commit comments

Comments
 (0)