mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
k8s-ci-robot
parent
e25931c792
commit
4d25fb1ccb
@@ -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:
|
||||
|
||||
@@ -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'
|
||||
```
|
||||
Reference in New Issue
Block a user