Skip to content

Commit

Permalink
Bump version to 2.0.3 (#5292)
Browse files Browse the repository at this point in the history
* Bump version to 2.0.3

* Bump version to 2.0.3

* Update Chart.yaml
  • Loading branch information
Marcin Maciaszczyk committed Jun 22, 2020
1 parent fe539e3 commit 665b4d3
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters.
To deploy Dashboard, execute following command:

```sh
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.2/aio/deploy/recommended.yaml
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.3/aio/deploy/recommended.yaml
```

Alternatively, you can install Dashboard using Helm as described at https://hub.helm.sh/charts/k8s-dashboard/kubernetes-dashboard.
Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/alternative.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ spec:
spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.2
image: kubernetesui/dashboard:v2.0.3
ports:
- containerPort: 9090
protocol: TCP
Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/alternative/06_dashboard-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.2
image: kubernetesui/dashboard:v2.0.3
ports:
- containerPort: 9090
protocol: TCP
Expand Down
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 @@ -15,7 +15,7 @@
apiVersion: v1
name: kubernetes-dashboard
version: 2.0.2
appVersion: 2.0.2
appVersion: 2.0.3
description: General-purpose web UI for Kubernetes clusters
keywords:
- kubernetes
Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/helm-chart/kubernetes-dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The following table lists the configurable parameters of the kubernetes-dashboar
Parameter | Description | Default
------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------
`image.repository` | Repository for container image | `kubernetesui/dashboard`
`image.tag` | Image tag | `v2.0.2`
`image.tag` | Image tag | `v2.0.3`
`image.pullPolicy` | Image pull policy | `IfNotPresent`
`image.pullSecrets` | Image pull secrets | `[]`
`replicaCount` | Number of replicas | `1`
Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/helm-chart/kubernetes-dashboard/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

image:
repository: kubernetesui/dashboard
tag: v2.0.2
tag: v2.0.3
pullPolicy: IfNotPresent
pullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/recommended.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ spec:
spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.2
image: kubernetesui/dashboard:v2.0.3
imagePullPolicy: Always
ports:
- containerPort: 8443
Expand Down
2 changes: 1 addition & 1 deletion aio/deploy/recommended/06_dashboard-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.2
image: kubernetesui/dashboard:v2.0.3
imagePullPolicy: Always
ports:
- containerPort: 8443
Expand Down
2 changes: 1 addition & 1 deletion aio/gulp/conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const version = {
/**
* Current release version of the project.
*/
release: 'v2.0.2',
release: 'v2.0.3',
/**
* Version name of the head release of the project.
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/user/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kubectl create secret generic kubernetes-dashboard-certs --from-file=$HOME/certs
For Dashboard to pickup the certificates, you must pass arguments `--tls-cert-file=/tls.crt` and `--tls-key-file=/tls.key` to the container. You can edit YAML definition and deploy Dashboard in one go:

```
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.2/aio/deploy/recommended.yaml
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.3/aio/deploy/recommended.yaml
```

Under Deployment section, add arguments to pod definition, it should look as follows:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kubernetes-dashboard",
"version": "2.0.2",
"version": "2.0.3",
"repository": {
"type": "git",
"url": "https://github.com/kubernetes/dashboard.git"
Expand Down

0 comments on commit 665b4d3

Please sign in to comment.