Home > Software design >  Is it possible to deploy Kubernetes on a single web server?
Is it possible to deploy Kubernetes on a single web server?

Time:09-06

Good afternoon!

In my study of Kubernetes, I got to the practice of deploying Kuber on the server. There are different deployment scenarios. I chose kubespray. Can you tell me if you can somehow deploy kuber on a host? Or is it necessary to create virtual machines, set up a network between them and only then deploy the cluster?

CodePudding user response:

Node: A node may be a virtual or physical machine, depending on the cluster. Each node is managed by the control plane and contains the services necessary to run Pods.

You can deploy single Node Kubernetes

For local (development, test etc) purposes:

  • minikube
  • kind ...

For production:

  • k3s
  • k0s ...

And, of course, you can create separate nodes under one "machine." And use them as worker nodes, but the above solutions are simpler.

  • Related