Microk8s for Kubeflow

Quickly get Kubeflow running locally on native hypervisors

Alpha

This Kubeflow component has alpha status with limited support. See the Kubeflow versioning policies. The Kubeflow team is interested in your feedback about the usability of the feature.

This document outlines the steps that you can take to get your local installation of Kubeflow running on top of Microk8s, a small enterprise Kubernetes cluster. Microk8s requires Linux; if you are not on a Linux system, you can use Multipass to create a Linux VM (virtual machine) on your native hypervisor.

Introduction

If you already have Ubuntu or Linux that supports snaps, you can easily install Kubernetes using Microk8s. You can jump to the Install Kubeflow using Microk8s section below.

If you don’t have a Linux system already, or you would like to confine your Kubeflow to a disposable machine, then Create a VM with Multipass first and then follow the instructions below. That will get you an Ubuntu machine that can be used to install Kubernetes and Kubeflow.

Install Kubeflow using Microk8s

Here’s a summary of the steps involved:

  • Set up Microk8s
  • Enable Kubeflow

1. Install and set up Microk8s

Run the following commands to install and setup MicroK8s:

  1. snap install microk8s --classic
  2. microk8s.status --wait-ready
  3. # Enable common services:
  4. microk8s.enable dns dashboard storage
  5. # If you have a GPU, run: `microk8s.enable gpu`

2. Enable Kubeflow

Run the following command to enable Kubeflow:

  1. microk8s.enable kubeflow

This script will print out the port number for Ambassador and for Jupyter notebookservers.

Access Kubeflow

If you installed Microk8s on your local host, then you can use localhost as the IP address in your browser. Otherwise, if you used Multipass, you can get the IP address of the VM with either multipass list or multipass info kubeflow.

Point browser to either:- http://” Your kubeflow VM IP”:“Ambassador PORT”- http://localhost:" Ambassador PORT”

Next steps

Feedback

Was this page helpful?

Glad to hear it! Please tell us how we can improve.

Sorry to hear that. Please tell us how we can improve.

Last modified 11.02.2020: Standardise the alpha notices in the docs (#1649) (73a24d48)