Team, is there way to know whether the cluster is setup from scratch or using ku . . .

AshisMahapatra:
Team, is there way to know whether the cluster is setup from scratch or using kubeadm? If so how to check that?

Tej_Singh_Rana:
Hello, @AshisMahapatra
If you see control plane components in the form of static pods then cluster setup by kubeadm tool.

kubectl get po -n kube-system

If you see control plane components as service then cluster setup by hard-way.

systemctl status kube-apiserver.service

AshisMahapatra:
Thank you Tej