Sheng Yang
Sheng Yang
@AmreeshTyagi @steav Can you elaborate the problem? Or provide a yaml for expected behavior? Does the container work?
@khassel When you said `add a subpath`, it's like this? https://github.com/rancher/local-path-provisioner/blob/master/examples/pod-with-subpath.yaml
@khassel You're right, I am able to reproduce the issue now. It seems due to https://github.com/kubernetes/kubernetes/issues/61456 , which is a problem with containerized kubelet. If you're using RKE, we have...
Yeah, it's possible. Local path provisioner will need to have read permission for the nodes to get the annotations from nodes and have a setting in the config map to...
@ahmadalli The local path provisioner is designed for using local disk for volumes, so they're configured to always affiliate with the node. Since you're using glusterfs, it's better for you...
@ahmadalli I don't think it would be the ideal way to solve your issue. What if you mount the glusterfs into different directories on the different nodes? Local path provisioner...
You can refer to https://github.com/rancher/local-path-provisioner/issues/22#issuecomment-490984554 to setup custom image for the busybox image.
Local Path Provisioner doesn't take PVC size into consideration, since it's backed by a directory on the node. So there is no quota/enforcement for the volume size.
Seems we should add an image pull secret option in the cmdline.
@nicktming I like that idea. Yes, we can make them configurable. PRs are welcome! There might be more we can do, e.g. set a quota for btrfs if needed if...