kubeflow-kale / kale

Kubeflow’s superfood for Data Scientists
http://kubeflow-kale.github.io
Apache License 2.0
628 stars 129 forks source link

Kale enabled kubeflow pipeline giving error during execution #402

Open Anushka30 opened 2 years ago

Anushka30 commented 2 years ago

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 commented 2 years ago

any fixes for above issue?

SanderRednas commented 1 year ago

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 ;)