Kubeflow on K3s
I want to try out Kubeflow on my desktop. The obvious choice is to use microk8s (or minikube, but I prefer not to use VM). But somehow I keep getting problem to successfully configure Kubeflow on it. At this point, I don't want to get too deep with the infrastructure itself (Kubernetes). Let's save it for another time. I just want to focus on Kubeflow. Finally I am able to make it working properly. I use k3s instead of microk8s. I'll explain the steps shortly. As a note, I use Ubuntu 20.04. Install k3s on a single node curl -sfL https://get.k3s.io | sh -s - server confirm if k3s is running: sudo k3s kubectl get nodes Install Kubeflow operator Reference: https://www.kubeflow.org/docs/operator/install-operator/ Go to Kubeflow operator: https://operatorhub.io/operator/kubeflow Click `Install`, a pop-up menu will be displayed with installation instruction: According to the instruction, the first step is to download a script that will install Operator Lifecycle Manager ...