Home > Blockchain >  Do I really need kubeadm on a managed cloud cluster?
Do I really need kubeadm on a managed cloud cluster?

Time:03-17

I am fiddling around with Kubernetes on a small managed cluster within AKS.

It looks like I'm ready to go with deploying as my node pools are already provisioned and bootstrapped (or that's what it looks like) upon setup.

Am I missing something here?

CodePudding user response:

Do I really need kubeadm on a managed cloud cluster?

You DO NOT need kubeadm tool when using Azure AKS / AWS EKS / Google GKE managed Kubernetes clusters.

kubeadm is used to create a self-managed Kubernetes cluster.

You can use the kubeadm tool to create and manage Kubernetes clusters. It performs the actions necessary to get a minimum viable, secure cluster up and running in a user friendly way.

  • Related