diff --git a/README.md b/README.md index 1bf0933a670..41e48dbb6ad 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/aio/deploy/recommended.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/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 bac36409be4..877bc7d8e1e 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 + image: kubernetesui/dashboard:v2.0.1 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/alternative/06_dashboard-deployment.yaml b/aio/deploy/alternative/06_dashboard-deployment.yaml index d01db03c4fb..d5b58aab989 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 + image: kubernetesui/dashboard:v2.0.1 ports: - containerPort: 9090 protocol: TCP diff --git a/aio/deploy/recommended.yaml b/aio/deploy/recommended.yaml index c5afd36ec70..8b250178462 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 + image: kubernetesui/dashboard:v2.0.1 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/deploy/recommended/06_dashboard-deployment.yaml b/aio/deploy/recommended/06_dashboard-deployment.yaml index f18296d1f2f..e502b8f12fb 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 + image: kubernetesui/dashboard:v2.0.1 imagePullPolicy: Always ports: - containerPort: 8443 diff --git a/aio/gulp/conf.js b/aio/gulp/conf.js index c46cc287874..f75d22a4fb0 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', + release: 'v2.0.1', /** * Version name of the head release of the project. */ diff --git a/docs/user/installation.md b/docs/user/installation.md index d747900c14d..d97e11e3a71 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.0/aio/deploy/recommended.yaml +kubectl create --edit -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/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: ``` -kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/alternative.yaml +kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/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: ``` -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/head.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.1/aio/deploy/head.yaml ``` ### Update diff --git a/package-lock.json b/package-lock.json index 5de6f6c685d..54a0f4b740c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 24289e0d439..a75aeb8e70f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kubernetes-dashboard", - "version": "2.0.0", + "version": "2.0.1", "repository": { "type": "git", "url": "https://github.com/kubernetes/dashboard.git"