From 47ea46952b27e8f60863316af24cc886090326c2 Mon Sep 17 00:00:00 2001 From: David Ko <dko@suse.com> Date: Wed, 28 Jul 2021 10:11:09 +0800 Subject: [PATCH] Update image version in the chart Signed-off-by: David Ko <dko@suse.com> --- deploy/chart/Chart.yaml | 2 +- deploy/chart/README.md | 2 +- deploy/chart/values.yaml | 2 +- deploy/local-path-storage.yaml | 2 +- deploy/provisioner.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy/chart/Chart.yaml b/deploy/chart/Chart.yaml index 98bf3d9..d366e91 100644 --- a/deploy/chart/Chart.yaml +++ b/deploy/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 description: Use HostPath for persistent local storage with Kubernetes name: local-path-provisioner version: 0.0.19 -appVersion: "v0.0.19" +appVersion: "v0.0.20" keywords: - storage - hostpath diff --git a/deploy/chart/README.md b/deploy/chart/README.md index b5e110f..8999003 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.19` | +| `image.tag` | Local Path Provisioner image tag | `v0.0.20` | | `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 edd631f..043337e 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.19 + tag: v0.0.20 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index 3c7154b..9b4f4a4 100644 --- a/deploy/local-path-storage.yaml +++ b/deploy/local-path-storage.yaml @@ -62,7 +62,7 @@ spec: serviceAccountName: local-path-provisioner-service-account containers: - name: local-path-provisioner - image: rancher/local-path-provisioner:v0.0.19 + image: rancher/local-path-provisioner:v0.0.20 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index b701854..cdd30c7 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.19 + image: rancher/local-path-provisioner:v0.0.20 imagePullPolicy: Always command: - local-path-provisioner -- GitLab