From 2d62f6481378fb4ced44de45bbe62d3b219893f7 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Fri, 11 Dec 2020 12:25:27 +0100 Subject: [PATCH] Prepare for v2.1.0 release (#5717) --- 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 | 2 +- package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 67fd11ef0..d1e62ae4f 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: ```sh -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.1.0/aio/deploy/recommended.yaml ``` Alternatively, you can install Dashboard using Helm as described at https://artifacthub.io/packages/helm/k8s-dashboard/kubernetes-dashboard. diff --git a/aio/deploy/alternative.yaml b/aio/deploy/alternative.yaml index 2b8beb171..534c3ac29 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.0.5 + image: kubernetesui/dashboard:v2.1.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 adb010ca7..47055c67b 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.0.5 + image: kubernetesui/dashboard:v2.1.0 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/recommended.yaml b/aio/deploy/recommended.yaml index bb885e70c..0422a493e 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.0.5 + image: kubernetesui/dashboard:v2.1.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 3bc6ada44..1fbc2946e 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.0.5 + image: kubernetesui/dashboard:v2.1.0 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/gulp/conf.js b/aio/gulp/conf.js index dbde7edd7..e6e9966b8 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.0.5', + release: 'v2.1.0', /** * Version name of the head release of the project. */ diff --git a/docs/user/installation.md b/docs/user/installation.md index 93602ca40..95687d25c 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: ``` -kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml +kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.1.0/aio/deploy/recommended.yaml ``` Under Deployment section, add arguments to pod definition, it should look as follows: diff --git a/package.json b/package.json index 97d78c633..2b52a845f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.0.5", + "version": "2.1.0", "repository": { "type": "git", "url": "https://github.com/kubernetes/dashboard.git" -- GitLab