From ae3d4696b71750a38b2cc89c1b015ffb8c5fb8b4 Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Fri, 13 Mar 2020 13:12:39 +0100 Subject: [PATCH] Bump version to v2.0.0-rc6 (#5007) --- 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 9552a5548..570d0fdb7 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,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.0-rc5/aio/deploy/recommended.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc6/aio/deploy/recommended.yaml ``` To access Dashboard from your local workstation you must create a secure channel to your Kubernetes cluster. Run the following command: diff --git a/aio/deploy/alternative.yaml b/aio/deploy/alternative.yaml index 6e91eba8f..b37f74f6a 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.0-rc5 + image: kubernetesui/dashboard:v2.0.0-rc6 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/alternative/06_dashboard-deployment.yaml b/aio/deploy/alternative/06_dashboard-deployment.yaml index 275e71f1e..1a5be4892 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.0-rc5 + image: kubernetesui/dashboard:v2.0.0-rc6 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/recommended.yaml b/aio/deploy/recommended.yaml index 742f61629..2a5be35ce 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.0-rc5 + image: kubernetesui/dashboard:v2.0.0-rc6 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/deploy/recommended/06_dashboard-deployment.yaml b/aio/deploy/recommended/06_dashboard-deployment.yaml index f5d7f2c7b..a54a56c91 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.0-rc5 + image: kubernetesui/dashboard:v2.0.0-rc6 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/gulp/conf.js b/aio/gulp/conf.js index d979d78a6..98d8a15e8 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.0-rc5', + release: 'v2.0.0-rc6', /** * Version name of the head release of the project. */ diff --git a/docs/user/installation.md b/docs/user/installation.md index 4f5e30338..4d95df592 100644 --- a/docs/user/installation.md +++ b/docs/user/installation.md @@ -23,7 +23,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.0-rc5/aio/deploy/recommended.yaml +kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc6/aio/deploy/recommended.yaml ``` Under Deployment section, add arguments to pod definition, it should look as follows: @@ -42,7 +42,7 @@ This setup is not fully secure. Certificates are not used and Dashboard is expos To deploy Dashboard execute following command: ``` -kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc5/aio/deploy/alternative.yaml +kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc6/aio/deploy/alternative.yaml ``` @@ -55,7 +55,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: ``` -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc5/aio/deploy/head.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc6/aio/deploy/head.yaml ``` ### Update diff --git a/package-lock.json b/package-lock.json index 3cfe9c132..d59a40b28 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.0.0-rc5", + "version": "2.0.0-rc6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6d3b44e67..80d850b3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.0.0-rc5", + "version": "2.0.0-rc6", "repository": { "type": "git", "url": "https://github.com/kubernetes/dashboard.git" -- GitLab