mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/khuedoan/homelab.git
synced 2026-09-20 08:03:58 +08:00
fix(kandim): upgrade to 1.1.0-rc.16
Fixes ERR_ZSTD_WINDOW_SIZE_TOO_BIG
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
Run the following script:
|
Run the following script:
|
||||||
|
|
||||||
```sh
|
```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.
|
Let the user scan the QR code or follow the link to set up passkeys or password + TOTP.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ app-template:
|
|||||||
main:
|
main:
|
||||||
image:
|
image:
|
||||||
repository: docker.io/kanidm/server
|
repository: docker.io/kanidm/server
|
||||||
tag: 1.1.0-rc.15
|
tag: 1.1.0-rc.16
|
||||||
statefulset:
|
statefulset:
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- name: data
|
- name: data
|
||||||
|
|||||||
@@ -145,9 +145,9 @@ def reset_kanidm_account_password(account: str) -> str:
|
|||||||
'kanidm-0',
|
'kanidm-0',
|
||||||
'kanidm',
|
'kanidm',
|
||||||
command=["kanidmd", "recover-account", "--output", "json", account],
|
command=["kanidmd", "recover-account", "--output", "json", account],
|
||||||
stderr=True, stdin=False,
|
stderr=False, stdin=False,
|
||||||
stdout=False, tty=False
|
stdout=True, tty=False
|
||||||
).replace("\'", "\"")
|
).splitlines()[-1]
|
||||||
|
|
||||||
return json.loads(resp)['password']
|
return json.loads(resp)['password']
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user