Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for custom path patterns #385

Merged
merged 2 commits into from
May 26, 2024

Conversation

AlbanBedel
Copy link
Contributor

This PR implement support for configuring the name of the created volume directories using a template as requested in #302.

@rpenziol
Copy link

Thanks for implementing this! I built your branch and took this for a spin. It worked exactly like how I'd expect.

Here's a minimal example of a working config. This will create a new directory based on the directory-name annotation on the PersistentVolumeClaim

---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: local-path-test
provisioner: rancher.io/local-path
parameters:
  nodePath: /storage/container-data
  pathPattern: '{{ index .PVC.Annotations "directory-name" }}'
volumeBindingMode: WaitForFirstConsumer
reclaimPolicy: Retain

---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  labels:
    app: test
  name: test-pvc
  annotations:
    directory-name: test-dir-name
spec:
  storageClassName: local-path-test
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 500Mi

@vjm
Copy link

vjm commented May 10, 2024

any news on this?

@derekbit
Copy link
Member

@AlbanBedel
Can you help resolve the conflict and add a test case? Thank you.
I will review it soon and include it in v0.0.27. Thanks.

Add support for the `pathPattern` parameter, if set it is expanded as
a go template with the PV name and PVC metadata as input. This allow
configuring the provisioner to use predictable paths so volumes can be
prefilled externally or re-used.

Signed-off-by: Alban Bedel <alban.bedel@aerq.com>
Add the `pathPattern` parameter to the storage class values so it can
also be configured from the helm chart.

Signed-off-by: Alban Bedel <alban.bedel@aerq.com>
@vjm
Copy link

vjm commented May 18, 2024

did this build fail due to a CI issue? is this ready to be released?

@derekbit
Copy link
Member

did this build fail due to a CI issue? is this ready to be released?

No worries. The failure is due to amd64 ci broken env. It's ready to be released in v0.0.27.

@vjm
Copy link

vjm commented May 24, 2024

is there a timeline for this release?

Copy link
Member

@derekbit derekbit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

TODO: add an e2e test for the feature.

@derekbit derekbit merged commit 056e358 into rancher:master May 26, 2024
1 check failed
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Jun 5, 2024
…7 ) (#4774)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[local-path-provisioner](https://github.com/rancher/local-path-provisioner)
| patch | `v0.0.26` -> `v0.0.27` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>rancher/local-path-provisioner
(local-path-provisioner)</summary>

###
[`v0.0.27`](https://github.com/rancher/local-path-provisioner/releases/tag/v0.0.27):
Local Path Provisioner v0.0.27

[Compare
Source](https://github.com/rancher/local-path-provisioner/compare/v0.0.26...v0.0.27)

#### What's Changed

- Repair code example in storageClass description. by
[@&#8203;c4lliope](https://github.com/c4lliope) in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- Update README.md to 0.26 by
[@&#8203;e-minguez](https://github.com/e-minguez) in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- Update README.md,rm /manager by
[@&#8203;terryzwt](https://github.com/terryzwt) in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- Fix duplicate labels by
[@&#8203;runningman84](https://github.com/runningman84) in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- drone: remove s390x support by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/391](https://github.com/rancher/local-path-provisioner/pull/391)
- Feature/multiple storage classes by
[@&#8203;meln5674](https://github.com/meln5674) in
[https://github.com/rancher/local-path-provisioner/pull/361](https://github.com/rancher/local-path-provisioner/pull/361)
- Remove duplicate labels and add ability to set helperpod resource
requests/limits by [@&#8203;visokoo](https://github.com/visokoo) in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- Automatic reloading of the helper pod manifest by the provisioner by
[@&#8203;js185692](https://github.com/js185692) in
[https://github.com/rancher/local-path-provisioner/pull/399](https://github.com/rancher/local-path-provisioner/pull/399)
- Add support for custom path patterns by
[@&#8203;AlbanBedel](https://github.com/AlbanBedel) in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- adding pvc with node name example by
[@&#8203;sebastianohl](https://github.com/sebastianohl) in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- Add e2e test for custom path patterns by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/404](https://github.com/rancher/local-path-provisioner/pull/404)
- Give the helper pod more range of MCS categories by
[@&#8203;galal-hussein](https://github.com/galal-hussein) in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- Fix: Chart.yaml file is missing on helm install by
[@&#8203;jamshidi799](https://github.com/jamshidi799) in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- drone: disable e2e test by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/405](https://github.com/rancher/local-path-provisioner/pull/405)
- Allow customizing helper pod by
[@&#8203;justusbunsi](https://github.com/justusbunsi) in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)
- test: use reclaimPolicy Delete instead by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/406](https://github.com/rancher/local-path-provisioner/pull/406)
- chart: fix pathPattern by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/409](https://github.com/rancher/local-path-provisioner/pull/409)

#### New Contributors

- [@&#8203;c4lliope](https://github.com/c4lliope) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- [@&#8203;e-minguez](https://github.com/e-minguez) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- [@&#8203;terryzwt](https://github.com/terryzwt) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- [@&#8203;runningman84](https://github.com/runningman84) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- [@&#8203;visokoo](https://github.com/visokoo) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- [@&#8203;AlbanBedel](https://github.com/AlbanBedel) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- [@&#8203;sebastianohl](https://github.com/sebastianohl) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- [@&#8203;galal-hussein](https://github.com/galal-hussein) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- [@&#8203;jamshidi799](https://github.com/jamshidi799) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- [@&#8203;justusbunsi](https://github.com/justusbunsi) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)

**Full Changelog**:
rancher/local-path-provisioner@v0.0.26...v0.0.27

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuNiIsInVwZGF0ZWRJblZlciI6IjM3LjM4MS42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvcGF0Y2giXX0=-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Jun 5, 2024
…7 ) (#4773)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[local-path-provisioner](https://github.com/rancher/local-path-provisioner)
| patch | `v0.0.26` -> `v0.0.27` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>rancher/local-path-provisioner
(local-path-provisioner)</summary>

###
[`v0.0.27`](https://github.com/rancher/local-path-provisioner/releases/tag/v0.0.27):
Local Path Provisioner v0.0.27

[Compare
Source](https://github.com/rancher/local-path-provisioner/compare/v0.0.26...v0.0.27)

#### What's Changed

- Repair code example in storageClass description. by
[@&#8203;c4lliope](https://github.com/c4lliope) in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- Update README.md to 0.26 by
[@&#8203;e-minguez](https://github.com/e-minguez) in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- Update README.md,rm /manager by
[@&#8203;terryzwt](https://github.com/terryzwt) in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- Fix duplicate labels by
[@&#8203;runningman84](https://github.com/runningman84) in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- drone: remove s390x support by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/391](https://github.com/rancher/local-path-provisioner/pull/391)
- Feature/multiple storage classes by
[@&#8203;meln5674](https://github.com/meln5674) in
[https://github.com/rancher/local-path-provisioner/pull/361](https://github.com/rancher/local-path-provisioner/pull/361)
- Remove duplicate labels and add ability to set helperpod resource
requests/limits by [@&#8203;visokoo](https://github.com/visokoo) in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- Automatic reloading of the helper pod manifest by the provisioner by
[@&#8203;js185692](https://github.com/js185692) in
[https://github.com/rancher/local-path-provisioner/pull/399](https://github.com/rancher/local-path-provisioner/pull/399)
- Add support for custom path patterns by
[@&#8203;AlbanBedel](https://github.com/AlbanBedel) in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- adding pvc with node name example by
[@&#8203;sebastianohl](https://github.com/sebastianohl) in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- Add e2e test for custom path patterns by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/404](https://github.com/rancher/local-path-provisioner/pull/404)
- Give the helper pod more range of MCS categories by
[@&#8203;galal-hussein](https://github.com/galal-hussein) in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- Fix: Chart.yaml file is missing on helm install by
[@&#8203;jamshidi799](https://github.com/jamshidi799) in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- drone: disable e2e test by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/405](https://github.com/rancher/local-path-provisioner/pull/405)
- Allow customizing helper pod by
[@&#8203;justusbunsi](https://github.com/justusbunsi) in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)
- test: use reclaimPolicy Delete instead by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/406](https://github.com/rancher/local-path-provisioner/pull/406)
- chart: fix pathPattern by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/409](https://github.com/rancher/local-path-provisioner/pull/409)

#### New Contributors

- [@&#8203;c4lliope](https://github.com/c4lliope) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- [@&#8203;e-minguez](https://github.com/e-minguez) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- [@&#8203;terryzwt](https://github.com/terryzwt) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- [@&#8203;runningman84](https://github.com/runningman84) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- [@&#8203;visokoo](https://github.com/visokoo) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- [@&#8203;AlbanBedel](https://github.com/AlbanBedel) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- [@&#8203;sebastianohl](https://github.com/sebastianohl) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- [@&#8203;galal-hussein](https://github.com/galal-hussein) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- [@&#8203;jamshidi799](https://github.com/jamshidi799) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- [@&#8203;justusbunsi](https://github.com/justusbunsi) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)

**Full Changelog**:
rancher/local-path-provisioner@v0.0.26...v0.0.27

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuNiIsInVwZGF0ZWRJblZlciI6IjM3LjM4MS42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvcGF0Y2giXX0=-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
sp3nx0r referenced this pull request in sp3nx0r/homelab Jun 22, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[local-path-provisioner](https://github.com/rancher/local-path-provisioner)
| patch | `v0.0.26` -> `v0.0.28` |

---

### Release Notes

<details>
<summary>rancher/local-path-provisioner
(local-path-provisioner)</summary>

###
[`v0.0.28`](https://github.com/rancher/local-path-provisioner/releases/tag/v0.0.28):
Local Path Provisioner v0.0.28

[Compare
Source](https://github.com/rancher/local-path-provisioner/compare/v0.0.27...v0.0.28-rc1)

#### What's Changed

- Migrate CI to github Actions by
[@&#8203;mantissahz](https://github.com/mantissahz) in
[https://github.com/rancher/local-path-provisioner/pull/403](https://github.com/rancher/local-path-provisioner/pull/403)
- fix(ci): allow to read docker hub secret by
[@&#8203;mantissahz](https://github.com/mantissahz) in
[https://github.com/rancher/local-path-provisioner/pull/412](https://github.com/rancher/local-path-provisioner/pull/412)
- Revert "Give the helper pod more range of MCS categories" by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/421](https://github.com/rancher/local-path-provisioner/pull/421)
- Temporarily disable TestPodWithMultipleStorageClasses by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/423](https://github.com/rancher/local-path-provisioner/pull/423)
- Move helperPod namespace into metadata by
[@&#8203;justusbunsi](https://github.com/justusbunsi) in
[https://github.com/rancher/local-path-provisioner/pull/425](https://github.com/rancher/local-path-provisioner/pull/425)

#### New Contributors

- [@&#8203;justusbunsi](https://github.com/justusbunsi) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)
- [@&#8203;mantissahz](https://github.com/mantissahz) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/403](https://github.com/rancher/local-path-provisioner/pull/403)

**Full Changelog**:
rancher/local-path-provisioner@v0.0.27...v0.0.28

###
[`v0.0.27`](https://github.com/rancher/local-path-provisioner/releases/tag/v0.0.27):
Local Path Provisioner v0.0.27

[Compare
Source](https://github.com/rancher/local-path-provisioner/compare/v0.0.26...v0.0.27)

#### What's Changed

- Repair code example in storageClass description. by
[@&#8203;c4lliope](https://github.com/c4lliope) in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- Update README.md to 0.26 by
[@&#8203;e-minguez](https://github.com/e-minguez) in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- Update README.md,rm /manager by
[@&#8203;terryzwt](https://github.com/terryzwt) in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- Fix duplicate labels by
[@&#8203;runningman84](https://github.com/runningman84) in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- drone: remove s390x support by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/391](https://github.com/rancher/local-path-provisioner/pull/391)
- Feature/multiple storage classes by
[@&#8203;meln5674](https://github.com/meln5674) in
[https://github.com/rancher/local-path-provisioner/pull/361](https://github.com/rancher/local-path-provisioner/pull/361)
- Remove duplicate labels and add ability to set helperpod resource
requests/limits by [@&#8203;visokoo](https://github.com/visokoo) in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- Automatic reloading of the helper pod manifest by the provisioner by
[@&#8203;js185692](https://github.com/js185692) in
[https://github.com/rancher/local-path-provisioner/pull/399](https://github.com/rancher/local-path-provisioner/pull/399)
- Add support for custom path patterns by
[@&#8203;AlbanBedel](https://github.com/AlbanBedel) in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- adding pvc with node name example by
[@&#8203;sebastianohl](https://github.com/sebastianohl) in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- Add e2e test for custom path patterns by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/404](https://github.com/rancher/local-path-provisioner/pull/404)
- Give the helper pod more range of MCS categories by
[@&#8203;galal-hussein](https://github.com/galal-hussein) in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- Fix: Chart.yaml file is missing on helm install by
[@&#8203;jamshidi799](https://github.com/jamshidi799) in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- drone: disable e2e test by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/405](https://github.com/rancher/local-path-provisioner/pull/405)
- Allow customizing helper pod by
[@&#8203;justusbunsi](https://github.com/justusbunsi) in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)
- test: use reclaimPolicy Delete instead by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/406](https://github.com/rancher/local-path-provisioner/pull/406)
- chart: fix pathPattern by
[@&#8203;derekbit](https://github.com/derekbit) in
[https://github.com/rancher/local-path-provisioner/pull/409](https://github.com/rancher/local-path-provisioner/pull/409)

#### New Contributors

- [@&#8203;c4lliope](https://github.com/c4lliope) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/368](https://github.com/rancher/local-path-provisioner/pull/368)
- [@&#8203;e-minguez](https://github.com/e-minguez) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/373](https://github.com/rancher/local-path-provisioner/pull/373)
- [@&#8203;terryzwt](https://github.com/terryzwt) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/379](https://github.com/rancher/local-path-provisioner/pull/379)
- [@&#8203;runningman84](https://github.com/runningman84) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/393](https://github.com/rancher/local-path-provisioner/pull/393)
- [@&#8203;visokoo](https://github.com/visokoo) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/394](https://github.com/rancher/local-path-provisioner/pull/394)
- [@&#8203;AlbanBedel](https://github.com/AlbanBedel) made their first
contribution in
[https://github.com/rancher/local-path-provisioner/pull/385](https://github.com/rancher/local-path-provisioner/pull/385)
- [@&#8203;sebastianohl](https://github.com/sebastianohl) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/382](https://github.com/rancher/local-path-provisioner/pull/382)
- [@&#8203;galal-hussein](https://github.com/galal-hussein) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/402](https://github.com/rancher/local-path-provisioner/pull/402)
- [@&#8203;jamshidi799](https://github.com/jamshidi799) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/388](https://github.com/rancher/local-path-provisioner/pull/388)
- [@&#8203;justusbunsi](https://github.com/justusbunsi) made their
first contribution in
[https://github.com/rancher/local-path-provisioner/pull/365](https://github.com/rancher/local-path-provisioner/pull/365)

**Full Changelog**:
rancher/local-path-provisioner@v0.0.26...v0.0.27

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on saturday" (UTC), Automerge - At
any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/sp3nx0r/homelab).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuOCIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvcGF0Y2giXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants