diff --git a/docs/admin/users.md b/docs/admin/users.md index 6363d64aa2b53..39e7b994f044d 100644 --- a/docs/admin/users.md +++ b/docs/admin/users.md @@ -119,3 +119,13 @@ You can also reset a password via the CLI: # run `coder reset-password --help` for usage instructions coder reset-password ``` + +> 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 +```