From 0a30039e0111cbfd0c9bb09d6de6649e4a36fc3a Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Thu, 18 Feb 2021 15:32:51 +0100 Subject: [PATCH] Prepare for v2.2.0 release (#5812) --- README.md | 2 +- aio/deploy/alternative.yaml | 2 +- aio/deploy/alternative/06_dashboard-deployment.yaml | 2 +- aio/deploy/recommended.yaml | 2 +- aio/deploy/recommended/06_dashboard-deployment.yaml | 2 +- aio/gulp/conf.js | 2 +- docs/user/installation.md | 6 +++--- package-lock.json | 2 +- package.json | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4022447d5..428e6fa05 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.1.0/aio/deploy/recommended.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.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 534c3ac29..a665df281 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.1.0 + image: kubernetesui/dashboard:v2.2.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 47055c67b..712c26631 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.1.0 + image: kubernetesui/dashboard:v2.2.0 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/recommended.yaml b/aio/deploy/recommended.yaml index 0422a493e..531ab1fa8 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.1.0 + image: kubernetesui/dashboard:v2.2.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 1fbc2946e..cc80bf28d 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.1.0 + image: kubernetesui/dashboard:v2.2.0 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/gulp/conf.js b/aio/gulp/conf.js index e6e9966b8..3f26a4779 100644 --- a/aio/gulp/conf.js +++ b/aio/gulp/conf.js @@ -53,7 +53,7 @@ const version = { /** * Current release version of the project. */ - release: 'v2.1.0', + release: 'v2.2.0', /** * Version name of the head release of the project. */ diff --git a/docs/user/installation.md b/docs/user/installation.md index 85d3203dd..025b5ff22 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.1.0/aio/deploy/recommended.yaml +kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.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.0.1/aio/deploy/alternative.yaml +kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.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.0.1/aio/deploy/head.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.2.0/aio/deploy/head.yaml ``` ### Update diff --git a/package-lock.json b/package-lock.json index 4307c9665..3a56bf618 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.1.0", + "version": "2.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b00d60014..36b43d1c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.1.0", + "version": "2.2.0", "repository": { "type": "git", "url": "https://github.com/kubernetes/dashboard.git" -- GitLab