From d45bdcf6112a55c2cbaa03ea9cad4d65f4f20e54 Mon Sep 17 00:00:00 2001 From: Sheng Yang <sheng.yang@rancher.com> Date: Mon, 30 Nov 2020 11:20:23 -0800 Subject: [PATCH] Local Path Provisioner v0.0.19 release Fixed the helper pod race condition for multiple PVCs. Issue: #154 Signed-off-by: Sheng Yang <sheng.yang@rancher.com> --- deploy/chart/Chart.yaml | 4 ++-- deploy/chart/README.md | 2 +- deploy/chart/values.yaml | 2 +- deploy/local-path-storage.yaml | 2 +- deploy/provisioner.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/chart/Chart.yaml b/deploy/chart/Chart.yaml index 59f96aa..98bf3d9 100644 --- a/deploy/chart/Chart.yaml +++ b/deploy/chart/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: Use HostPath for persistent local storage with Kubernetes name: local-path-provisioner -version: 0.0.18 -appVersion: "v0.0.18" +version: 0.0.19 +appVersion: "v0.0.19" keywords: - storage - hostpath diff --git a/deploy/chart/README.md b/deploy/chart/README.md index 03235f0..b5e110f 100644 --- a/deploy/chart/README.md +++ b/deploy/chart/README.md @@ -56,7 +56,7 @@ default values. | Parameter | Description | Default | | ----------------------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | | `image.repository` | Local Path Provisioner image name | `rancher/local-path-provisioner` | -| `image.tag` | Local Path Provisioner image tag | `v0.0.18` | +| `image.tag` | Local Path Provisioner image tag | `v0.0.19` | | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `storageClass.create` | If true, create a `StorageClass` | `true` | | `storageClass.provisionerName` | The provisioner name for the storage class | `nil` | diff --git a/deploy/chart/values.yaml b/deploy/chart/values.yaml index a19bcd2..5d3a8f1 100644 --- a/deploy/chart/values.yaml +++ b/deploy/chart/values.yaml @@ -4,7 +4,7 @@ replicaCount: 1 image: repository: rancher/local-path-provisioner - tag: v0.0.18 + tag: v0.0.19 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index 18434c9..dc174ad 100644 --- a/deploy/local-path-storage.yaml +++ b/deploy/local-path-storage.yaml @@ -58,7 +58,7 @@ spec: serviceAccountName: local-path-provisioner-service-account containers: - name: local-path-provisioner - image: rancher/local-path-provisioner:v0.0.18 + image: rancher/local-path-provisioner:v0.0.19 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index a6a1adf..1f69478 100644 --- a/deploy/provisioner.yaml +++ b/deploy/provisioner.yaml @@ -16,7 +16,7 @@ spec: serviceAccountName: local-path-provisioner-service-account containers: - name: local-path-provisioner - image: rancher/local-path-provisioner:v0.0.18 + image: rancher/local-path-provisioner:v0.0.19 imagePullPolicy: Always command: - local-path-provisioner -- GitLab