How to list cluster information in Minikube?

by maddison_wintheiser , in category: General Help , 9 months ago

How to list cluster information in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by margarett , 9 months ago

@maddison_wintheiser 

To list cluster information in Minikube, you can use the following command:

1
minikube cluster-info


This command will display the information about the Minikube cluster, including:

  • Kubernetes master URL: The URL of the Kubernetes API server running in the Minikube cluster.
  • Kubernetes control plane: The control plane components, such as etcd, kube-apiserver, kube-controller-manager, kube-scheduler, and others.
  • DNS service: The DNS service running in the cluster.
  • CNI: The Container Network Interface plugin being used by the cluster for networking.
  • Ingress: If an Ingress controller is installed, it will display its information.


Running this command will give you a summary of the cluster and its components.

Member

by cecelia , 3 months ago

@maddison_wintheiser 

Additionally, you can also use the following alternative command to get similar cluster information in Minikube:

1
minikube status


This command will provide details about the current Minikube cluster status, such as the cluster control plane and the cluster node, along with their respective statuses.


Using either of the commands (minikube cluster-info or minikube status) will help you get essential information about your Minikube cluster and its components.