From 31496fdb80290f4b1425ffc3dc39b070d68a712c Mon Sep 17 00:00:00 2001 From: Sheng Yang <sheng.yang@rancher.com> Date: Fri, 16 Oct 2020 16:21:09 -0700 Subject: [PATCH] Local Path Provisioner v0.0.18 release Changelog: 1. Thanks to @nickming 's PR, we've added the ability to make the helper pod and setup/teardown script customizable. For example, now you can setup the local path provisioner to use quota with btrfs. 2. Thanks to @hwaastad 's PR, now the helper pod supports pull secret. 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 8c41aad..59f96aa 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.17 -appVersion: "v0.0.17" +version: 0.0.18 +appVersion: "v0.0.18" keywords: - storage - hostpath diff --git a/deploy/chart/README.md b/deploy/chart/README.md index e4e739f..03235f0 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.17` | +| `image.tag` | Local Path Provisioner image tag | `v0.0.18` | | `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 66a8f55..a19bcd2 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.17 + tag: v0.0.18 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index 8d4a560..18434c9 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.17 + image: rancher/local-path-provisioner:v0.0.18 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index 4cebc66..a6a1adf 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.17 + image: rancher/local-path-provisioner:v0.0.18 imagePullPolicy: Always command: - local-path-provisioner -- GitLab