go-skynet / helm-charts

go-skynet helm chart repository
55 stars 40 forks source link

k3d PVC accessMode #42

Open ronaldpetty opened 8 months ago

ronaldpetty commented 8 months ago

I am using k3d (default install) to test, and noticed local-ai wouldn't install. Turns out its because the k3d local-path provisioner only can use ReadWriteOnce. The helm template generates ReadWriteMany as default. I changed to Once and it worked. I don't know much about provisioners but maybe setting default to Once might work for more people (thats an assumption though).

ssurovich commented 8 months ago

I had the same issue - Pretty easy change, but unless you know your underlying PVC provisioner, some people may not know how to resolve it. A describe on the PVC will show that it fails with many, so a change to once resolves it (as you called out) - Great for posting it for others to see!