diff --git a/docs/getting-started/user-onboarding.md b/docs/getting-started/user-onboarding.md index adeb82bc..0be84515 100644 --- a/docs/getting-started/user-onboarding.md +++ b/docs/getting-started/user-onboarding.md @@ -28,7 +28,7 @@ Run the following script: ```sh - ./script/onboard-user johndoe "John Doe" "johndoe@example.com" + ./scripts/onboard-user johndoe "John Doe" "johndoe@example.com" ``` Let the user scan the QR code or follow the link to set up passkeys or password + TOTP. diff --git a/platform/kanidm/values.yaml b/platform/kanidm/values.yaml index 7b44fe1f..20884ec2 100644 --- a/platform/kanidm/values.yaml +++ b/platform/kanidm/values.yaml @@ -6,7 +6,7 @@ app-template: main: image: repository: docker.io/kanidm/server - tag: 1.1.0-rc.15 + tag: 1.1.0-rc.16 statefulset: volumeClaimTemplates: - name: data diff --git a/scripts/hacks b/scripts/hacks index 661cc6fd..de4f2a60 100755 --- a/scripts/hacks +++ b/scripts/hacks @@ -145,9 +145,9 @@ def reset_kanidm_account_password(account: str) -> str: 'kanidm-0', 'kanidm', command=["kanidmd", "recover-account", "--output", "json", account], - stderr=True, stdin=False, - stdout=False, tty=False - ).replace("\'", "\"") + stderr=False, stdin=False, + stdout=True, tty=False + ).splitlines()[-1] return json.loads(resp)['password']