From caad19ccce39799e4f2113a4506280e015cabf08 Mon Sep 17 00:00:00 2001 From: Derek Su <derek.su@suse.com> Date: Tue, 21 Dec 2021 14:35:18 +0800 Subject: [PATCH] Update image version in the chart Signed-off-by: Derek Su <derek.su@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 2fdb6456..2928cfe1 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.20 -appVersion: "v0.0.20" +appVersion: "v0.0.21" keywords: - storage - hostpath diff --git a/deploy/chart/README.md b/deploy/chart/README.md index 89990030..07f52dbc 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.20` | +| `image.tag` | Local Path Provisioner image tag | `v0.0.21` | | `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 043337e4..57107533 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.20 + tag: v0.0.21 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index 9b4f4a4e..32db7e10 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.20 + image: rancher/local-path-provisioner:v0.0.21 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index cdd30c7c..17aa6f92 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.20 + image: rancher/local-path-provisioner:v0.0.21 imagePullPolicy: Always command: - local-path-provisioner -- GitLab