[kubernetes-dashboard] Adds docs about fullnameOverride for kubectl proxy (#5052)

* [kubernetes-dashboard] Adds docs about fullnameOverride for kubectl proxy

If you want to use 'localhost:8001/ui' as a shorthand to get
to the kubernetes-dashboard, the service name must be
'kubernetes-dashboard', but this is not typically what
Helm generates. This commit adds a short note
about how to override that.

* Increments kubernetes-dashboard chart version
This commit is contained in:
Jason Gwartz
2018-04-20 10:10:59 -07:00
committed by k8s-ci-robot
parent e25931c792
commit 4d25fb1ccb
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: kubernetes-dashboard
version: 0.6.3
version: 0.6.4
appVersion: 1.8.3
description: General-purpose web UI for Kubernetes clusters
keywords:
+7
View File
@@ -76,3 +76,10 @@ $ helm install stable/kubernetes-dashboard --name my-release -f values.yaml
```
> **Tip**: You can use the default [values.yaml](values.yaml)
## Using the dashboard with 'kubectl proxy'
When running 'kubectl proxy', the address `localhost:8001/ui` automatically expands to `http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/`. For this to reach the dashboard, the name of the service must be 'kubernetes-dashboard', not any other value as set by Helm. You can manually specify this using the value 'fullnameOverride':
```
fullnameOverride: 'kubernetes-dashboard'
```