-
Sreekanth Adari posted an update in the group Kubernetes discussion Group 3 years, 3 months ago
What are different 3rd party tools ti install Kubernetes ?
MFH IT Solutions (GST ID: 37ABWFM7509H1ZL)
Job Consultancy
Sreekanth Adari posted an update in the group Kubernetes discussion Group 3 years, 3 months ago
What are different 3rd party tools ti install Kubernetes ?
Minikube,
Rancher 3KD
Installation steps
1. Installed minikube with below command :
1. Before installing, we need drivers, we can find details here https://minikube.sigs.k8s.io/docs/drivers/
$ brew install minikube
1. Installation did not worked to run the command “minikube start” as it did not find below drivers :
Docker
Hyperv
Vmware
Therefore installed drivers with the command which installed all required virtualisation drivers :
$ brew install hyperkit
$ minikube start –driver=hyperkit
After Installation :
(base) Sreekanths-MacBook-Air:~ sreekanthadari$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
minikube Ready control-plane,master 31m v1.20.2
(base) Sreekanths-MacBook-Air:~ sreekanthadari$ minikube status
minikube
type: Control Plane
host: Running
kubelet: Running
apiserver: Running
kubeconfig: Configured
timeToStop: Nonexistent
(base) Sreekanths-MacBook-Air:~ sreekanthadari$ kubectl version
Client Version: version.Info{Major:”1″, Minor:”20+”, GitVersion:”v1.20.4-dirty”, GitCommit:”e87da0bd6e03ec3fea7933c4b5263d151aafd07c”, GitTreeState:”dirty”, BuildDate:”2021-03-15T09:58:13Z”, GoVersion:”go1.16.2″, Compiler:”gc”, Platform:”darwin/amd64″}
Server Version: version.Info{Major:”1″, Minor:”20″, GitVersion:”v1.20.2″, GitCommit:”faecb196815e248d3ecfb03c680a4507229c2a56″, GitTreeState:”clean”, BuildDate:”2021-01-13T13:20:00Z”, GoVersion:”go1.15.5″, Compiler:”gc”, Platform:”linux/amd64″}