From 9827989301f08cfe4d98cee9aa7e9aee3f2c1fdc Mon Sep 17 00:00:00 2001 From: Joshua Lambert Date: Mon, 6 May 2019 20:15:37 +0000 Subject: [PATCH] Fix signin link, correct normal example file URL in shell command --- doc/development/minikube/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/minikube/index.md b/doc/development/minikube/index.md index f9e9afc7..d1b02356 100644 --- a/doc/development/minikube/index.md +++ b/doc/development/minikube/index.md @@ -174,7 +174,7 @@ helm repo add gitlab https://charts.gitlab.io/ helm repo update helm upgrade --install gitlab gitlab/gitlab \ --timeout 600 \ - -f https://gitlab.com/charts/gitlab/raw/master/examples/values-minikube-minimum.yaml + -f https://gitlab.com/charts/gitlab/raw/master/examples/values-minikube.yaml ``` ### Deploying GitLab with minimal settings @@ -220,7 +220,7 @@ covering most operating systems. ### Logging in -You can access the GitLab instance by visiting the domain specified, [https://192.168.99.100.nip.io](https://192.168.99.100.nip.io) is used in these examples. If you manually created the secret for initial root password, you can use that to sign in as root user. If not, Gitlab automatically created a random password for the root user. This can be extracted by the following command (replace by name of the release - which is gitlab if you used the command above). +You can access the GitLab instance by visiting the domain specified, [https://gitlab.192.168.99.100.nip.io](https://gitlab.192.168.99.100.nip.io) is used in these examples. If you manually created the secret for initial root password, you can use that to sign in as root user. If not, Gitlab automatically created a random password for the root user. This can be extracted by the following command (replace by name of the release - which is gitlab if you used the command above). ```shell kubectl get secret -gitlab-initial-root-password -ojsonpath='{.data.password}' | base64 --decode ; echo -- 2.22.2