Files
infrastructure/clusters/cl01tl/helm/local-path-provisioner/values.yaml
Alex Lebens f229055460
All checks were successful
lint-test-helm / lint-helm (push) Successful in 3m57s
renovate / renovate (push) Successful in 2m19s
render-manifests-push / render-manifests-push (push) Successful in 4m20s
remove legacy matching
2026-01-01 22:58:15 -06:00

36 lines
867 B
YAML

local-path-provisioner:
image:
repository: rancher/local-path-provisioner
tag: v0.0.33
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"