This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rancher/local-path-provisioner](https://github.com/rancher/local-path-provisioner) | patch | `v0.0.34` → `v0.0.35` | --- ### Release Notes <details> <summary>rancher/local-path-provisioner (rancher/local-path-provisioner)</summary> ### [`v0.0.35`](https://github.com/rancher/local-path-provisioner/releases/tag/v0.0.35): Local Path Provisioner v0.0.35 [Compare Source](https://github.com/rancher/local-path-provisioner/compare/v0.0.34...v0.0.35) #### What's Changed - Add FOSSA scanning workflow by [@​macedogm](https://github.com/macedogm) in [#​551](https://github.com/rancher/local-path-provisioner/pull/551) - Build linux/ppc64le images through build on GitHub Actions by [@​kishen-v](https://github.com/kishen-v) in [#​554](https://github.com/rancher/local-path-provisioner/pull/554) - updated golang to 1.26.0 by [@​jgoodall](https://github.com/jgoodall) in [#​557](https://github.com/rancher/local-path-provisioner/pull/557) - feat: Allow custom node affinity keys by [@​ipantchev](https://github.com/ipantchev) in [#​559](https://github.com/rancher/local-path-provisioner/pull/559) - chore: update golang to 1.26.1 by [@​derekbit](https://github.com/derekbit) in [#​561](https://github.com/rancher/local-path-provisioner/pull/561) - chore(release): bump to v0.0.35 by [@​derekbit](https://github.com/derekbit) in [#​562](https://github.com/rancher/local-path-provisioner/pull/562) #### New Contributors - [@​macedogm](https://github.com/macedogm) made their first contribution in [#​551](https://github.com/rancher/local-path-provisioner/pull/551) - [@​jgoodall](https://github.com/jgoodall) made their first contribution in [#​557](https://github.com/rancher/local-path-provisioner/pull/557) - [@​ipantchev](https://github.com/ipantchev) made their first contribution in [#​559](https://github.com/rancher/local-path-provisioner/pull/559) **Full Changelog**: <https://github.com/rancher/local-path-provisioner/compare/v0.0.34...v0.0.35> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates 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:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4yIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=--> Reviewed-on: #4585 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
36 lines
867 B
YAML
36 lines
867 B
YAML
local-path-provisioner:
|
|
image:
|
|
repository: rancher/local-path-provisioner
|
|
tag: v0.0.35
|
|
helperImage:
|
|
repository: busybox
|
|
tag: 1.37.0
|
|
storageClass:
|
|
create: true
|
|
defaultClass: false
|
|
defaultVolumeType: hostPath
|
|
name: local-path
|
|
reclaimPolicy: Delete
|
|
volumeBindingMode: WaitForFirstConsumer
|
|
nodePathMap:
|
|
- node: DEFAULT_PATH_FOR_NON_LISTED_NODES
|
|
paths:
|
|
- /var/mnt/local-storage
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: node-role.kubernetes.io/local-storage-node
|
|
operator: Exists
|
|
configmap:
|
|
name: local-path-config
|
|
setup: |-
|
|
#!/bin/sh
|
|
set -eu
|
|
mkdir -m 0777 -p "$VOL_DIR"
|
|
teardown: |-
|
|
#!/bin/sh
|
|
set -eu
|
|
rm -rf "$VOL_DIR"
|