Let say I want to find the kubelet and apiserver version of my k8s master(s), what's the best way to do it?
I am aware of the following commands:
kubectl cluster-info
which only shows the endpoints.
kubectl get nodes; kubectl describe node <node>;
which shows very detail information but only the nodes and not master.
There's also
kubectl version
but that only shows the kubectl version and not the kubelet or apiserver version.
What other commands can I use to identify the properties of my cluster?