Join us
@nawazsiddiqui27 ă» Jan 08,2022 ă» 2 min read ă» 2609 views ă» Originally posted on nawazsiddiqui27.medium.com
Kubernetes or K8s is an open-source platform to manage containerized workloads and applications.
With containers, itâs easy to manage, run or ship your application. Kubernetes helps to manage cloud resources and makes your cloud infrastructure more scalable by automating and deploying applications in no time. While installing Kubernetes for the first time, these are the steps I followed on my Windows 10 home. Letâs explore each of them:
Setting up Hyper-V
Hyper-V is windowâs own virtualization software same as Virtualbox. If you are using windows home, you need to install Hyper-V. Here is the article for that. After installing, follow these steps to enable Hyper-V on your local machine.
Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Installing Docker on Windows 10
You can install any alternatives of docker like Containerd, RunC, Podman, and many more to mention. Although I am installing Kubernetes for the first time in the system, I used the Docker desktop. Click here to go to the official website of docker and click on Get Docker Desktop. Follow the instructions while installing and you are ready to run Docker on your machine.
Installing Kubernetes on Windows 10
Follow these steps to install Kubernetes on windows 10 seamlessly.
Apply the changes, wait for 5 to 10 minutes, or until the installation complete popup message is shown up on the screen.
To confirm the running of Kubernetes, hover your mouse pointer on the down left side of the Docker desktop plane, you will see âKubernetes Runningâ message.
Accessing Kubernetes UI
Kubernetes UI is not installed by default. Itâs a web-based interface and can be accessed via a web browser. Open the command prompt and paste the given script to deploy dashboard UI.
Accessing Kubernetes Dashboard
You need to create a sample user to access the Kubernetes dashboard. Follow this article to create a sample user and generate token.
To enable access to the dashboard, use the below command in the terminal
kubectl proxy
The dashboard will be available at http://localhost:8001/api/v1/namespaces/Kubernetes-dashboard/services/https:Kubernetes-dashboard:/proxy/
If everything is done right you will be able to get access to the dashboard.
These are the steps I followed to install Kubernetes on windows 10 home. I hope this article was helpful. If you still face any problems, comment down below, I will try to get back to you with the solution.
Join other developers and claim your FAUN account now!
Influence
Total Hits
Posts
Only registered users can post comments. Please, login or signup.