local-path-provisioner
local-path-provisioner copied to clipboard
Dynamically provisioning persistent local storage with Kubernetes
PVC is in pending state with error - `configuration error, no node was specified`. This behaviour is seen only when binding type is set to `Immediate`. Volume gets provisioned when...
Bumps google.golang.org/protobuf from 1.31.0 to 1.33.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Add `local-path-provisioner` to `./deploy/chart` in helm install commands Fixes #387
step to reproduce: ``` $ git clone https://github.com/rancher/local-path-provisioner.git $ cd local-path-provisioner $ helm install --name local-path-storage --namespace local-path-storage ./deploy/chart/ ``` how to fix: we should substitute `./deploy/chart/` with `./deploy/chart/local-path-provisioner`
I am using the latest version of rancher Local path provisioner I am trying to backup pvc it is getting backed-up without files? If I restore no files are there....
* Fixes https://github.com/rancher/local-path-provisioner/issues/38 * Fixes https://github.com/rancher/local-path-provisioner/issues/348 While is is currently possible to deploy multiple instances of the provisioner to support multiple storage classes, as well as to support both RWO,...
This makes it possible to set a 'folderName' annotation on a PVC. When set, the name of the created folder on disk will no longer be '$persistentVolumeName_$persistentVolumeClaimNamespace_$persistentVolumeClaimName'. Instead it will...
This PR implement support for configuring the name of the created volume directories using a template as requested in #302.
Whenever a PV is dynamically created, a directory is generated with the following name `$persistentVolumeName_$persistentVolumeClaimNamespace_$persistentVolumeClaimName`. It would be helpful if we can decide what the directory name of the generated...
If you want to use the local path provisioner in a multi node environment, it is required to explicitly set the node name via an annotation. Unfortunally, this looks very...