How to check Minikube resources?

Member

by jewel , in category: General Help , a month ago

How to check Minikube resources?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by ari.olson , a month ago

@jewel 

To check Minikube resources, you can use the following command:

1
minikube resources


This command will display information about the CPU, memory, and disk resources allocated to your Minikube cluster.


Additionally, you can use the Kubernetes command-line tool, kubectl, to check the resources of your running pods, deployments, and services. For example, to check the resources of all pods in the default namespace, you can use the following command:

1
kubectl get pods


This will display a list of pods along with information about their resource usage, such as CPU and memory limits and usage.