Home > database >  What is the meaning of p & s options given after running minikube start command?
What is the meaning of p & s options given after running minikube start command?

Time:12-03

I am very new to the Kubernetes and Docker, and I am following the tutorials in the Kubernetes documentation.

I got the below output after running the minikube start command.

enter image description here

The process was paused for some time and after I entered p it continued, and the configuration was successfully completed.

Can I know what is the meaning for the two options given as p and s in the above output? Thanks in advance.

CodePudding user response:

p/s means "per second"

That line is your machine pulling the relevant docker image(s) to start minikube.

  • Related