윤태일
윤태일

Reputation: 557

Can I use multiple docker containers on a computer as Kubernetes worker nodes?

I want to configure a Kubernetes cluster with only Docker containers without using vm on one machine. I think it will be, but I ask because it may not be.

Upvotes: 1

Views: 138

Answers (2)

aaruja
aaruja

Reputation: 371

Checkout Kubernetes In Docker - kind This is probably what you want.

Upvotes: 4

Tummala Dhanvi
Tummala Dhanvi

Reputation: 3380

If I am getting your question right you want to use Kubernetes on a physical box without using any hypervisor (no vm)

You can install minikube and use Kubernetes as below

minikube start --vm-driver=none

Upvotes: 1

Related Questions