Options for running k8s in local system without vm (single node)

3/5/2020

I want to use tool running k8s in single node for devlopment. But without using VM. I could find tools using vm. But I could not find tools without vm. Microk8s is only tool satisfing my condition.

Is there any other options?

  • Not using vm
  • Running k8s locally (single node)

Thank you.

-- Hwang Seonbi
kubernetes
microk8s
minikube

2 Answers

3/5/2020

Checkout K3s : Lightweight Kubernetes. Easy to install, half the memory, all in a binary less than 50mb.

Refer https://rancher.com/docs/k3s/latest/en/

-- DT.
Source: StackOverflow

3/5/2020

You can use kind https://github.com/kubernetes-sigs/kind

and minikube without VM by minikube start --vm-driver=none

-- Tummala Dhanvi
Source: StackOverflow