diff --git a/README.md b/README.md index 428e6fa051e8fd3109ecd93c965a2aa76c52db29..9b6dabdec5b60161d80e00b882381e02d61176e5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. To deploy Dashboard, execute following command: ```shell -kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/recommended.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/recommended.yaml ``` 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). diff --git a/aio/deploy/alternative.yaml b/aio/deploy/alternative.yaml index a665df28113144445a0809ccd5afae162ba70588..d9270791255fa68840b5a55e84cf6b2fd5580a6b 100644 --- a/aio/deploy/alternative.yaml +++ b/aio/deploy/alternative.yaml @@ -176,7 +176,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: kubernetesui/dashboard:v2.2.0 + image: kubernetesui/dashboard:v2.3.0 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/alternative/06_dashboard-deployment.yaml b/aio/deploy/alternative/06_dashboard-deployment.yaml index 712c26631092c4dbfc8e9e9f014126a12bbe6f07..13a3dde191cc573b657d438045987a5af3c42ed8 100644 --- a/aio/deploy/alternative/06_dashboard-deployment.yaml +++ b/aio/deploy/alternative/06_dashboard-deployment.yaml @@ -34,7 +34,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: kubernetesui/dashboard:v2.2.0 + image: kubernetesui/dashboard:v2.3.0 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/recommended.yaml b/aio/deploy/recommended.yaml index 531ab1fa845136b84a50b79394417372b9a56326..7b60a7edb731288ec5f30b39f048b3cc8592e65b 100644 --- a/aio/deploy/recommended.yaml +++ b/aio/deploy/recommended.yaml @@ -187,7 +187,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: kubernetesui/dashboard:v2.2.0 + image: kubernetesui/dashboard:v2.3.0 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/deploy/recommended/06_dashboard-deployment.yaml b/aio/deploy/recommended/06_dashboard-deployment.yaml index cc80bf28d8d495d7500ead68e741c8ac9a2857c6..592f1aae0a9ef76168190f8cd05da749e4b52a73 100644 --- a/aio/deploy/recommended/06_dashboard-deployment.yaml +++ b/aio/deploy/recommended/06_dashboard-deployment.yaml @@ -34,7 +34,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: kubernetesui/dashboard:v2.2.0 + image: kubernetesui/dashboard:v2.3.0 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/gulp/conf.js b/aio/gulp/conf.js index d514b91c418ccc6782e5e5b431604582814858ec..4fe4b0902b14a70517613319e4a92aa6eed28094 100644 --- a/aio/gulp/conf.js +++ b/aio/gulp/conf.js @@ -57,7 +57,7 @@ const version = { /** * Current release version of the project. */ - release: 'v2.2.0', + release: 'v2.3.0', /** * Version name of the head release of the project. */ diff --git a/docs/user/installation.md b/docs/user/installation.md index 025b5ff22ec5970ba2615f9d3d90709921fee00b..ab7cf6b7891651e22b359d51aa324d52005abb64 100644 --- a/docs/user/installation.md +++ b/docs/user/installation.md @@ -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: ```shell -kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/recommended.yaml +kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/recommended.yaml ``` 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 To deploy Dashboard execute following command: ```shell -kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/alternative.yaml +kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/alternative.yaml ``` @@ -51,7 +51,7 @@ Besides official releases, there are also development releases, that are pushed In most of the use cases you need to execute the following command to deploy latest development release: ```shell -kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/head.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.0/aio/deploy/head.yaml ``` ### Update diff --git a/package-lock.json b/package-lock.json index fd5d3ccda4b6b6916566881424f6ebc998883148..f0551ccd8f3327f6707fc3f5c40484615f9a53c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3b65e6a64e96fac986a134b53409866a2fa7dc51..1413d196c8f59dd82850d30557a7e2679d5a6605 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.2.0", + "version": "2.3.0", "type": "module", "repository": { "type": "git",