Update Windows dashboard config file configuration

18.09
Li Yi 6 years ago committed by GitHub
parent 0d53dba013
commit 0588764690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -99,26 +99,21 @@ Access Kubernetes dashboard
http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/overview?namespace=default http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/overview?namespace=default
#### Config kubeconfig #### Config kubeconfig (Or skip)
![resource](images/k8s_credentials.png) ![resource](images/k8s_credentials.png)
For Mac
```bash ```bash
$ TOKEN=$(kubectl -n kube-system describe secret default| awk '$1=="token:"{print $2}') $ TOKEN=$(kubectl -n kube-system describe secret default| awk '$1=="token:"{print $2}')
kubectl config set-credentials docker-for-desktop --token="${TOKEN}" kubectl config set-credentials docker-for-desktop --token="${TOKEN}"
``` ```
For Windows For Windows
First get value of dashboard-admin-token with below command:
```cmd
kubectl describe secret -n kube-system dashboard-admin-token
```
copy this value and run below command to setup kubeconfig
```cmd ```cmd
$TOKEN="YOUR_TOKEN_COPY_FROM_ABOVE" $TOKEN=((kubectl -n kube-system describe secret default | Select-String "token:") -split " +")[1]
kubectl config set-credentials docker-for-desktop --token="${TOKEN}" kubectl config set-credentials docker-for-desktop --token="${TOKEN}"
``` ```

Loading…
Cancel
Save