Skip to content

Commit ccb45d8

Browse files
authored
Bump version to v2.3.0 (#6156)
1 parent 4e306a3 commit ccb45d8

9 files changed

+11
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters.
2020
To deploy Dashboard, execute following command:
2121

2222
```shell
23-
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/recommended.yaml
23+
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/recommended.yaml
2424
```
2525

2626
Alternatively, you can install Dashboard using Helm as described at [`https://artifacthub.io/packages/helm/k8s-dashboard/kubernetes-dashboard`](https://artifacthub.io/packages/helm/k8s-dashboard/kubernetes-dashboard).

aio/deploy/alternative.yaml

+1-1
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.2.0
179+
image: kubernetesui/dashboard:v2.3.0
180180
ports:
181181
- containerPort: 9090
182182
protocol: TCP

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

+1-1
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.2.0
37+
image: kubernetesui/dashboard:v2.3.0
3838
ports:
3939
- containerPort: 9090
4040
protocol: TCP

aio/deploy/recommended.yaml

+1-1
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.2.0
190+
image: kubernetesui/dashboard:v2.3.0
191191
imagePullPolicy: Always
192192
ports:
193193
- containerPort: 8443

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

+1-1
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.2.0
37+
image: kubernetesui/dashboard:v2.3.0
3838
imagePullPolicy: Always
3939
ports:
4040
- containerPort: 8443

aio/gulp/conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const version = {
5757
/**
5858
* Current release version of the project.
5959
*/
60-
release: 'v2.2.0',
60+
release: 'v2.3.0',
6161
/**
6262
* Version name of the head release of the project.
6363
*/

docs/user/installation.md

+3-3
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
```shell
22-
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/recommended.yaml
22+
kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/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
```shell
41-
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/alternative.yaml
41+
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/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
```shell
54-
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/head.yaml
54+
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/head.yaml
5555
```
5656

5757
### Update

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kubernetes-dashboard",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"type": "module",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)