diff --git a/stable/kubernetes-dashboard/Chart.yaml b/stable/kubernetes-dashboard/Chart.yaml index 0db8b20212..2c41e756e2 100644 --- a/stable/kubernetes-dashboard/Chart.yaml +++ b/stable/kubernetes-dashboard/Chart.yaml @@ -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: diff --git a/stable/kubernetes-dashboard/README.md b/stable/kubernetes-dashboard/README.md index dd5089e707..5700d73b0a 100644 --- a/stable/kubernetes-dashboard/README.md +++ b/stable/kubernetes-dashboard/README.md @@ -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' +``` \ No newline at end of file