kale icon indicating copy to clipboard operation
kale copied to clipboard

Kale enabled kubeflow pipeline giving error during execution

Open Anushka30 opened this issue 2 years ago • 2 comments

jupyterlab==2.3.2 kubeflow-kale==0.7.0 K8s = v1.19.3

The very first pipeline component's pod is giving the following error: Error: error while running "VolumeBinding" prebind plugin for pod "fraud-detection-ssfbx-3356273866": Failed to bind volumes: provisioning failed for PVC "fraud-detection-ssfbx-kale-marshal-pvc"

Anushka30 avatar Jan 27 '22 15:01 Anushka30

any fixes for above issue?

Anushka30 avatar Feb 19 '22 13:02 Anushka30

i have the same issue...

SanderRednas avatar Oct 18 '22 13:10 SanderRednas

any fixes for above issue?

The problem is likely the storage class you are using, when you run: kubectl -n <"yournamespace"> describe pvc <"pvcname">

you can see details on the problem. In my case it was this: Failed to provision volume with StorageClass "gp2": invalid AccessModes [ReadWriteMany]: only AccessModes [ReadWriteOnce] are supported

So I guess you either have to change the accessmode or the storageclass, havent figured this part out yet ;)

SanderRednas avatar Oct 19 '22 07:10 SanderRednas