Skip to content

Commit

Permalink
docs: deploy helm with name kubernetes-dashboard (#7068)
Browse files Browse the repository at this point in the history
* docs: deploy `helm` with name `my-release`

* docs: change all `my-release` to `kubernetes-dashboard`
  • Loading branch information
JounQin authored May 2, 2022
1 parent d0cfa46 commit 2c889a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aio/deploy/helm-chart/kubernetes-dashboard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

apiVersion: v2
name: kubernetes-dashboard
version: 5.5.0
version: 5.5.1
appVersion: 2.5.1
description: General-purpose web UI for Kubernetes clusters
keywords:
Expand Down
14 changes: 7 additions & 7 deletions aio/deploy/helm-chart/kubernetes-dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ It allows users to manage applications running in the cluster and troubleshoot t
```console
# Add kubernetes-dashboard repository
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
# Deploy a Helm Release named "my-release" using the kubernetes-dashboard chart
helm install my-release kubernetes-dashboard/kubernetes-dashboard
# Deploy a Helm Release named "kubernetes-dashboard" using the kubernetes-dashboard chart
helm install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard
```

## Introduction
Expand All @@ -18,7 +18,7 @@ This chart bootstraps a [Kubernetes Dashboard](https://github.com/kubernetes/das

## Installing the Chart

To install the [Chart](https://helm.sh/docs/intro/using_helm/#three-big-concepts) with the [Release](https://helm.sh/docs/intro/using_helm/#three-big-concepts) name `my-release`:
To install the [Chart](https://helm.sh/docs/intro/using_helm/#three-big-concepts) with the [Release](https://helm.sh/docs/intro/using_helm/#three-big-concepts) name `kubernetes-dashboard`:

```console
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
Expand All @@ -30,10 +30,10 @@ The [configuration](#configuration) section lists the parameters that can be con

## Uninstalling the Chart

To uninstall/delete the `my-release` deployment:
To uninstall/delete the `kubernetes-dashboard` deployment:

```console
helm delete my-release
helm delete kubernetes-dashboard
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand All @@ -53,14 +53,14 @@ for valid values and their defaults.
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```console
helm install kubernetes-dashboard/kubernetes-dashboard --name my-release \
helm install kubernetes-dashboard/kubernetes-dashboard --name kubernetes-dashboard \
--set=service.externalPort=8080,resources.limits.cpu=200m
```

Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,

```console
helm install kubernetes-dashboard/kubernetes-dashboard --name my-release -f values.yaml
helm install kubernetes-dashboard/kubernetes-dashboard --name kubernetes-dashboard -f values.yaml
```

> **Tip**: You can use the default [values.yaml](values.yaml), which is used by default, as reference
Expand Down

0 comments on commit 2c889a7

Please sign in to comment.