Kubernetes Administration Course (Exploring Kubectl Command on MiniKube): Part 2

This is Part 2 Article for Kubernetes Administration Course. In this Part will go through some basic command to run on kubernetes and Minikube

Step 1:

Help on MiniKube command:

minikube --help 
or
minikube <command> --help

Step 2:

Minikube config view

minikube config view

Above Command will return nothing as we have not set any config for minikube. We can start doing from below command

minikube config set memory 16384

Befor Setting config make sure to check your ram size and set value accordingly. Also above changes will take after recreating the cluster as its development server it’s okay to recreate.

Step 3:

To check the minikube addons enable list run below command

minikube addons list

--

--