local-path-provisioner
local-path-provisioner copied to clipboard
Dynamically provisioning persistent local storage with Kubernetes
when create a pv need create another pod to create file directory on the node. This will involve the whole process of creating a pod. I think this is a...
When the following events happen, we see "junk" PV objects build up in our Kubernetes clusters... - Use local-path storage class with a statefulset, scale it up - The cluster...
Hello. Try to use local-path-provisioner in ephemeral colume. in my deployment I have ```yaml - name: cache ephemeral: volumeClaimTemplate: spec: accessModes: [ "ReadWriteOnce" ] storageClassName: "local-path" resources: requests: storage: 3Gi...
Hello, I tried using this in a cluster where I have Istio running - which is injecting a side container for every pod. Because of that, the POD status is...
``` 2021-09-19T14:17:54.219233413Z I0919 14:17:54.197165 1 leaderelection.go:288] failed to renew lease local-path/cluster.local-local-path-local-path-provisioner: failed to tryAcquireOrRenew context deadline exceeded 2021-09-19T14:17:54.219238413Z F0919 14:17:54.197210 1 controller.go:851] leaderelection lost 2021-09-19T14:19:53.710186005Z E0919 14:18:03.351128 1 leaderelection.go:367] Failed...
Hi devs I read through code and configs and find out that volumes are created with 0777 privs. I think this is suboptimal, as local users on the host can...
If the node has been deleted when deleting a volume, the volume will always be in "Released" state. Should check the node exist before deleting the volume, and delete the...
Hi! k8s 1.19 local-path-provisioner 0.0.19 installed with helm chart. Do I need tune clusterrole somehow? I see error bellow in the log: kubectl -n local-path-storage logs rancher-local-path-provisioner-9ff59fb7-gmngk `I0713 11:53:17.280711 1...
**Basic Info**: Rancher Version: 2.3.2 Kubernetes Version: v1.16.3-rancher1-1 Provider: Amazon EC2 **Brief Description**: Pod which used the PVC created by this module cannot be scheduled due to the auto-generated PV's...
Since local-path-provisioner does not enforce capacity limitations, then I see no reason to throw errors in the event that someone changes the spec.capacity settings. The following PR implements a partial...