This blog represents steps/instructions on how to setup Kubernetes on Ubuntu (Linux) using Minikube. The instructions have been used to setup Kubernetes on Ubuntu 16.04. Following are key steps which need to be taken in order to setup and get started with Kubernetes:
First and foremost, ensure that Virtualization Technology (VT) is enabled in BIOS setup. In order to do that, do following:
Follow the steps given below to setup Virtual Box:
Follow the steps given below to setup VBoxManage:
VBoxManage is the command-line interface to VirtualBox.
wget http://download.virtualbox.org/virtualbox/5.1.0/Oracle_VM_VirtualBox_Extension_Pack-5.1.0.vbox-extpack
sudo VBoxManage extpack install ./Oracle_VM_VirtualBox_Extension_Pack-5.1.0.vbox-extpack
VBoxManage list extpacks
Following is the screenshot representing the output of execution of above command:
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/local/bin/kubectl
The above details can also be found on the page, Install Kubectl binary via curl
In order to confirm if everything is alright, execute the following command:
kubectl version
Above would show the result as shown in the screenshot given below:
Install Minikube using the following command:
curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.22.2/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
Execute the following command which would print the version of Minikube such as v0.22.2
minikube version
Execute the following command to launch Kubernetes cluster
minikube start
Above would result in starting of Kubernetes cluster. Following screenshot represents the same:
Once started, access the Kubernetes Dashboard by executing following command:
minikube dashboard
It would open up a browser window with Dashboard as represented in the following screenshot.
You can stop the cluster using the following command:
minikube stop
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…