-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is Kubernetes Kind cluster node running as a pod in the whole cluster container? #441
Comments
no. each node is a container on your host machine. please see https://kind.sigs.k8s.io/docs/design/node-image/#the-node-image |
if you run any pod in your kind cluster, each pod will in your container. (means docker in docker) |
Thanks! If both control-plane and worker nodes are running as a container, clusters are separated by docker object label key. Does that mean the cluster is a logical cluster defined by the cluster name/ID, but they are just a bunch of running container nodes in the same host machine? |
you can create multiple clusters on the same host and their containers (nodes) will be prefixed with the cluster name: |
~ yes, the "node" containers are labeled with their cluster name ( We do run kind in a pod sometimes #303, but locally each node is a container. |
Let me know if you have more questions 😊 |
…ubernetes-sigs#441) * feat: implement aws lb controller * irsa for EKS * change saludations * update CHANGELOG * revert changes internal nginx * fix DEPENDENCIES * fix execute command * fix default name of pdb in Azure managed * fix doc * fix doc * fix doc --------- Co-authored-by: dandres-stratio <101642757+dandres-stratio@users.noreply.github.com>
I'm using kind to create Kubernetes clusters and learn some stuff about Kubernetes and service mesh. I went through the documents of kind, but I still have a question.
As I know, the minikube launch a cluster in a Virtual Machine. If uses create 2 Minikube clusters, there are two VMs running. If I understand it correctly, kind cluster runs in a container, and a kind cluster can be composed with several nodes, does that mean each node is a pod running in the kind cluster container?
The text was updated successfully, but these errors were encountered: