From 7b1dad8fbdc8f7df05e221e29e0062d1efd1a56a Mon Sep 17 00:00:00 2001 From: Derek Su <derek.su@suse.com> Date: Fri, 24 Jan 2025 21:18:43 +0800 Subject: [PATCH] chore(release): bump to v0.0.31 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 3cee1d7a..5b2f816a 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.30/deploy/local-path-storage.yaml +kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.31/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.30" | kubectl apply -f - +kustomize build "github.com/rancher/local-path-provisioner/deploy?ref=v0.0.31" | kubectl apply -f - ``` - Development @@ -301,7 +301,7 @@ To uninstall, execute: - Stable ``` -kubectl delete -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.30/deploy/local-path-storage.yaml +kubectl delete -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.31/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 3832e0d9..8a07f177 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.30 -appVersion: "v0.0.30" +version: 0.0.31 +appVersion: "v0.0.31" keywords: - storage - hostpath diff --git a/deploy/chart/local-path-provisioner/README.md b/deploy/chart/local-path-provisioner/README.md index 7c66b471..4067993d 100644 --- a/deploy/chart/local-path-provisioner/README.md +++ b/deploy/chart/local-path-provisioner/README.md @@ -57,7 +57,7 @@ default values. | ----------------------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | | `commonLabels` | Custom labels to apply to all resources | `{}` | | `image.repository` | Local Path Provisioner image name | `rancher/local-path-provisioner` | -| `image.tag` | Local Path Provisioner image tag | `v0.0.30` . | +| `image.tag` | Local Path Provisioner image tag | `v0.0.31` . | | `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 3c56f437..d0741d64 100644 --- a/deploy/chart/local-path-provisioner/values.yaml +++ b/deploy/chart/local-path-provisioner/values.yaml @@ -5,7 +5,7 @@ commonLabels: {} image: repository: rancher/local-path-provisioner - tag: v0.0.30 + tag: v0.0.31 pullPolicy: IfNotPresent helperImage: diff --git a/deploy/local-path-storage.yaml b/deploy/local-path-storage.yaml index 928c7660..400de58d 100644 --- a/deploy/local-path-storage.yaml +++ b/deploy/local-path-storage.yaml @@ -88,7 +88,7 @@ spec: serviceAccountName: local-path-provisioner-service-account containers: - name: local-path-provisioner - image: rancher/local-path-provisioner:v0.0.30 + image: rancher/local-path-provisioner:v0.0.31 imagePullPolicy: IfNotPresent command: - local-path-provisioner diff --git a/deploy/provisioner.yaml b/deploy/provisioner.yaml index db39057d..380e10e9 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.30 + image: rancher/local-path-provisioner:v0.0.31 imagePullPolicy: Always command: - local-path-provisioner diff --git a/examples/quota/local-path-storage.yaml b/examples/quota/local-path-storage.yaml index 9b396a88..091e9327 100644 --- a/examples/quota/local-path-storage.yaml +++ b/examples/quota/local-path-storage.yaml @@ -88,7 +88,7 @@ spec: serviceAccountName: local-path-provisioner-service-account containers: - name: local-path-provisioner - image: rancher/local-path-provisioner:v0.0.30 + image: rancher/local-path-provisioner:v0.0.31 imagePullPolicy: IfNotPresent command: - local-path-provisioner -- GitLab