From 0f2d2e7327acc42cb6586ff206e8c87a96cb088c Mon Sep 17 00:00:00 2001 From: Derek Su <derek.su@suse.com> Date: Tue, 25 Oct 2022 04:24:23 +0000 Subject: [PATCH] Bump to v0.0.23 Signed-off-by: Derek Su <derek.su@suse.com> --- README.md | 6 +++--- deploy/chart/local-path-provisioner/Chart.yaml | 4 ++-- deploy/chart/local-path-provisioner/README.md | 2 +- deploy/chart/local-path-provisioner/values.yaml | 2 +- deploy/local-path-storage.yaml | 2 +- deploy/provisioner.yaml | 2 +- examples/quota/local-path-storage.yaml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2081ef5..c383afcd 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ In this setup, the directory `/opt/local-path-provisioner` will be used across a - Stable ``` -kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.22/deploy/local-path-storage.yaml +kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.23/deploy/local-path-storage.yaml ``` - Development @@ -38,7 +38,7 @@ kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisione Or, use `kustomize` to deploy. - Stable ``` -kustomize build "github.com/rancher/local-path-provisioner/deploy?ref=v0.0.22" | kubectl apply -f - +kustomize build "github.com/rancher/local-path-provisioner/deploy?ref=v0.0.23" | kubectl apply -f - ``` - Development @@ -239,7 +239,7 @@ To uninstall, execute: - Stable ``` -kubectl delete -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.22/deploy/local-path-storage.yaml +kubectl delete -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.23/deploy/local-path-storage.yaml ``` - Development diff --git a/deploy/chart/local-path-provisioner/Chart.yaml b/deploy/chart/local-path-provisioner/Chart.yaml index db136e91..ec24e80c 100644 --- a/deploy/chart/local-path-provisioner/Chart.yaml +++ b/deploy/chart/local-path-provisioner/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: Use HostPath for persistent local storage with Kubernetes name: local-path-provisioner -version: 0.0.22 -appVersion: "v0.0.22" +version: 0.0.23 +appVersion: "v0.0.23" keywords: - storage - hostpath diff --git a/deploy/chart/local-path-provisioner/README.md b/deploy/chart/local-path-provisioner/README.md index dde34f15..aa940806 100644 --- a/deploy/chart/local-path-provisioner/README.md +++ b/deploy/chart/local-path-provisioner/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.22` | +| `image.tag` | Local Path Provisioner image tag | `v0.0.23` | | `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/local-path-provisioner/values.yaml b/deploy/chart/local-path-provisioner/values.yaml index c483f160..004cb843 100644 --- a/deploy/chart/local-path-provisioner/values.yaml +++ b/deploy/chart/local-path-provisioner/values.yaml @@ -4,7 +4,7 @@ replicaCount: 1 image: repository: rancher/local-path-provisioner - tag: v0.0.22 + tag: v0.0.23 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index a5806a13..5a5595bc 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.22 + image: rancher/local-path-provisioner:v0.0.23 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index 2fdf77b9..f474d369 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.22 + image: rancher/local-path-provisioner:v0.0.23 imagePullPolicy: Always command: - local-path-provisioner diff --git a/examples/quota/local-path-storage.yaml b/examples/quota/local-path-storage.yaml index ccb5ed62..04f21b65 100644 --- a/examples/quota/local-path-storage.yaml +++ b/examples/quota/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.22 + image: rancher/local-path-provisioner:v0.0.23 imagePullPolicy: IfNotPresent command: - local-path-provisioner -- GitLab