Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update token retrieval instructions in install docs #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions docs/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,17 @@ spec:
# Give that service account root on the cluster
kubectl create clusterrolebinding skooner-sa --clusterrole=cluster-admin --serviceaccount=default:skooner-sa

# For Kubernetes v1.21 and older
# Find the secret that was created to hold the token for the SA
kubectl get secrets

# Show the contents of the secret to extract the token
kubectl describe secret skooner-sa-token-xxxxx

# For Kubernetes v1.22 and newer
kubectl create token skooner-sa
```
Retrieve the `token` value from the secret and enter it into the login screen to access the dashboard.
Retrieve the `token` value and enter it into the login screen to access the dashboard.
* You can also log in to Skooner with [OIDC](#running-oidc-on-Skooner) or [NodePort](#running-Skooner-with-nodeport).

## Installing Metrics Server
Expand Down Expand Up @@ -96,10 +100,3 @@ $ kubectl get svc --namespace=kube-system
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
skooner NodePort 10.107.107.62 <none> 4654:32565/TCP 1m
```