No introduction found. Create it?
local-path-provisioner from democratic-csi is more popular with 11 repositories.
Install with:
helm repo add local-path-provisioner oci://ghcr.io/rancher/local-path-provisioner/charts/local-path-provisioner
helm install local-path-provisioner local-path-provisioner/local-path-provisioner -f values.yamlSee examples from other people.
| Name | Repo | Stars | Version | Timestamp |
|---|---|---|---|---|
| local-path-provisioner | pascaliske/infrastructure | 72 | 0.0.36 | 3 days ago |
See the most popular values for this chart:
| Key | Types |
|---|---|
nodePathMap[].node (8) DEFAULT_PATH_FOR_NON_LISTED_NODES | string |
nodePathMap[].paths[] (7) - /var/mnt/local-path-provisioner | string |
nodePathMap[].paths (1) ${LOCAL_PATH_PROVISIONER_NODE_PATHS} | string |
| boolean | |
storageClass.name (5) local-path | string |
| string | |
| boolean | |
storageClass.volumeBindingMode (1) WaitForFirstConsumer | string |
helperImage.repository (3) mirror.gcr.io/busybox | string |
helperImage.tag (3) latest | string |
image.repository (3) mirror.gcr.io/rancher/local-path-provisioner | string |
image.tag (1) v0.0.36 | string |
configmap.setup (2) #!/bin/sh
while getopts "m:s:p:" opt
do
case $opt in
p)
absolutePath=$OPTARG
;;
s)
sizeInBytes=$OPTARG
;;
m)
volMode=$OPTARG
;;
esac
done
mkdir -m 0777 -p ${absolutePath}
chmod 701 ${absolutePath}/.. | string |
configmap.teardown (2) #!/bin/sh
while getopts "m:s:p:" opt
do
case $opt in
p)
absolutePath=$OPTARG
;;
s)
sizeInBytes=$OPTARG
;;
m)
volMode=$OPTARG
;;
esac
done
rm -rf ${absolutePath} | string |
| boolean | |
| boolean | |
| string | |
| boolean | |
| number | |
| number | |
securityContext.seccompProfile.type (1) RuntimeDefault | string |