Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' into viccuad/add-yaml-linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Thulio Ferraz Assis authored Nov 26, 2019
2 parents cd1cf45 + 2d3f908 commit 0879c1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/dev/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ admin_pass=$(kubectl get secret \
| base64 --decode)

# Use the password from the previous step when requested.
cf auth -u admin -p "${admin_pass}"
cf auth admin "${admin_pass}"
```

### Advanced Topics
Expand Down
8 changes: 4 additions & 4 deletions doc/dev/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ cf api --skip-ssl-validation "https://api.$(minikube ip).xip.io"

# Copy the admin cluster password.
acp=$(kubectl get secret \
--namespace kubecf kubecf.var-cf-admin-password \
-o jsonpath='{.data.password}' \
| base64 --decode)
--namespace kubecf kubecf.var-cf-admin-password \
-o jsonpath='{.data.password}' \
| base64 --decode)

# Use the password from the previous step when requested.
cf auth -u admin -p "${acp}"
cf auth admin "${acp}"
```

### Advanced Topics
Expand Down

0 comments on commit 0879c1b

Please sign in to comment.