Answers for "what is minikube"

1

install kubectl

curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x ./kubectl
sudo mv ./kubectl /usr/bin/kubectl # you can replace /usr/bin for some dir in your PATH
Posted by: Guest on October-21-2020
2

what is minikube

minikube is a tool that lets you run Kubernetes locally. 
minikube runs a single-node Kubernetes cluster on your personal computer
(including Windows, macOS and Linux PCs) so that you can try out
Kubernetes, or for daily development work.
Posted by: Guest on August-03-2021

Browse Popular Code Answers by Language