Home > database >  CrashLoopBackOff when launching notebook from Kubeflow DashBoard
CrashLoopBackOff when launching notebook from Kubeflow DashBoard

Time:08-16

Launching notebook from kubeflow dashboard using minikube as kubernetes server does not end due to CrashLoopBackOff state. When I run kubectl get po -n kubeflow, there is no error. So I am confused. I already posted enter image description here

enter image description here

I found similar questions. But they are different from my case.

CodePudding user response:

I solved the issue by myself.
The reason could be the allocated resources.
I started kubernetes server locally again by this command:

minikube start \
--cpus 4 --memory 20G --disk-size 50G \
--kubernetes-version v1.21.14 \
--driver=kvm2
  • Related