Skip to content
Snippets Groups Projects
Commit ccbaa480 authored by Joshua Lambert's avatar Joshua Lambert
Browse files

Simplify the decode secret step

parent 7576be97
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Loading
Loading
@@ -89,18 +89,8 @@ created a random password for `root` user. This can be extracted by the
following command (replace `<name>` by name of the release - which is `gitlab`
if you used the command above).
 
> **Note**: On some versions of Kubernetes a `%` will appear at the end of the password, do not include it.
Mac OS:
```
kubectl get secret <name>-gitlab-initial-root-password -ojsonpath={.data.password} | base64 -D
```
Linux:
```
kubectl get secret <name>-gitlab-initial-root-password -ojsonpath={.data.password} | base64 -d
kubectl get secret <name>-gitlab-initial-root-password -ojsonpath={.data.password} | base64 --decode
```
 
## Outgoing email
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment