From e94bb05ee87c38e70e2e26cbd6f2f9c5c7b1a26c Mon Sep 17 00:00:00 2001 From: Evgeny Rudinsky Date: Sat, 16 Sep 2023 10:09:33 +0000 Subject: [PATCH] Typo in the secret name --- doc/quickstart/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/quickstart/index.md b/doc/quickstart/index.md index 04fe0c82af..f874c77d64 100644 --- a/doc/quickstart/index.md +++ b/doc/quickstart/index.md @@ -132,7 +132,7 @@ This is automatically generated at installation time and stored in a Kubernetes Secret. Let's fetch that password from the secret and decode it: ```shell -kubectl get secret gitlab-gitlab-initial-root-password -ojsonpath='{.data.password}' | base64 --decode ; echo +kubectl get secret gitlab-initial-root-password -ojsonpath='{.data.password}' | base64 --decode ; echo ``` You can now sign in to GitLab with username `root`, and the retrieved password. -- GitLab