website/docs: use default container name from helm chart in recovery documentation for kubernetes (#10919)

* use default container name from helm chart

the default name for the worker container is worker and not authentik.
see https://github.com/goauthentik/helm/blob/main/charts/authentik/values.yaml#L603

Signed-off-by: rickra <richardkraus98@pm.me>

* fix container name everywhere

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: rickra <richardkraus98@pm.me>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
rickra
2024-08-15 14:56:52 +02:00
committed by GitHub
parent 0754d9c3d4
commit 1d5d096ffc
5 changed files with 6 additions and 6 deletions

View File

@ -13,5 +13,5 @@ docker compose run --rm server create_admin_group username
or, for Kubernetes, run
```shell
kubectl exec -it deployment/authentik-worker -c authentik -- ak create_admin_group username
kubectl exec -it deployment/authentik-worker -c worker -- ak create_admin_group username
```