Skip to content

Commit 5b83803

Browse files
author
Sebastian Florek
authored
Bump version to v2.0.1 (kubernetes#5164)
1 parent 36eeea5 commit 5b83803

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters.
1717
To deploy Dashboard, execute following command:
1818

1919
```sh
20-
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/recommended.yaml
20+
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/aio/deploy/recommended.yaml
2121
```
2222

2323
To access Dashboard from your local workstation you must create a secure channel to your Kubernetes cluster. Run the following command:

‎aio/deploy/alternative.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
spec:
177177
containers:
178178
- name: kubernetes-dashboard
179-
image: kubernetesui/dashboard:v2.0.0
179+
image: kubernetesui/dashboard:v2.0.1
180180
ports:
181181
- containerPort: 9090
182182
protocol: TCP

‎aio/deploy/alternative/06_dashboard-deployment.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: kubernetes-dashboard
37-
image: kubernetesui/dashboard:v2.0.0
37+
image: kubernetesui/dashboard:v2.0.1
3838
ports:
3939
- containerPort: 9090
4040
protocol: TCP

‎aio/deploy/recommended.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ spec:
187187
spec:
188188
containers:
189189
- name: kubernetes-dashboard
190-
image: kubernetesui/dashboard:v2.0.0
190+
image: kubernetesui/dashboard:v2.0.1
191191
imagePullPolicy: Always
192192
ports:
193193
- containerPort: 8443

‎aio/deploy/recommended/06_dashboard-deployment.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: kubernetes-dashboard
37-
image: kubernetesui/dashboard:v2.0.0
37+
image: kubernetesui/dashboard:v2.0.1
3838
imagePullPolicy: Always
3939
ports:
4040
- containerPort: 8443

‎aio/gulp/conf.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const version = {
5353
/**
5454
* Current release version of the project.
5555
*/
56-
release: 'v2.0.0',
56+
release: 'v2.0.1',
5757
/**
5858
* Version name of the head release of the project.
5959
*/

‎docs/user/installation.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ kubectl create secret generic kubernetes-dashboard-certs --from-file=$HOME/certs
1919
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:
2020

2121
```
22-
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/recommended.yaml
22+
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/aio/deploy/recommended.yaml
2323
```
2424

2525
Under Deployment section, add arguments to pod definition, it should look as follows:
@@ -38,7 +38,7 @@ This setup is not fully secure. Certificates are not used and Dashboard is expos
3838
To deploy Dashboard execute following command:
3939

4040
```
41-
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/alternative.yaml
41+
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/aio/deploy/alternative.yaml
4242
```
4343

4444

@@ -51,7 +51,7 @@ Besides official releases, there are also development releases, that are pushed
5151
In most of the use cases you need to execute the following command to deploy latest development release:
5252

5353
```
54-
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/head.yaml
54+
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/aio/deploy/head.yaml
5555
```
5656

5757
### Update

‎package-lock.json‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kubernetes-dashboard",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/kubernetes/dashboard.git"

0 commit comments

Comments
 (0)