chore(docs): Add clarifying language that resetting a user password must run on the coderd host (#7845)

This commit is contained in:
sharkymark
2023-06-05 08:37:12 -05:00
committed by GitHub
parent 6fde86d1ac
commit 88dc66ae47

View File

@ -119,3 +119,13 @@ You can also reset a password via the CLI:
# run `coder reset-password <username> --help` for usage instructions
coder reset-password <username>
```
> Resetting a user's password, e.g., the initial `owner` role-based user, only works when run on the host running the Coder control plane.
### Resetting a password on Kubernetes
```sh
kubectl exec -it deployment/coder /bin/bash -n coder
coder reset-password <username>
```