DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Securing Your Software Supply Chain with JFrog and Azure
Register Today

Trending

  • 5 Common Data Structures and Algorithms Used in Machine Learning
  • Future of Software Development: Generative AI Augmenting Roles and Unlocking Co-Innovation
  • Grow Your Skills With Low-Code Automation Tools
  • Hiding Data in Cassandra

Trending

  • 5 Common Data Structures and Algorithms Used in Machine Learning
  • Future of Software Development: Generative AI Augmenting Roles and Unlocking Co-Innovation
  • Grow Your Skills With Low-Code Automation Tools
  • Hiding Data in Cassandra
  1. DZone
  2. Software Design and Architecture
  3. Cloud Architecture
  4. Installing Kubernetes on Windows 10 Using Minikube [Snippets]

Installing Kubernetes on Windows 10 Using Minikube [Snippets]

Want to get Kubernetes up and running on your Windows 10 machine? Here are two quick snippets that will install Minikube to do the work for you.

Pieter De Rycke user avatar by
Pieter De Rycke
·
Aug. 20, 18 · Tutorial
Like (4)
Save
Tweet
Share
9.49K Views

Join the DZone community and get the full member experience.

Join For Free

I recently started playing with Kubernetes and I used Minikube to get a working Kubernetes installation on my Windows 10 laptop. I wanted to share how to install Minkube on Windows 10 Pro (using Hyper-V).

It's quite easy to install Minikube using PowerShell (with Admin):

Invoke-WebRequest -uri https://storage.googleapis.com/minikube/releases/v0.28.2/minikube-windows-amd64.exe -OutFile minikube.exe
Invoke-WebRequest -uri https://storage.googleapis.com/kubernetes-release/release/v1.11.2/bin/windows/amd64/kubectl.exe -OutFile kubectl.exe
Copy-Item minikube.exe -Destination $Env:Programfiles\Minikube
Copy-Item kubectl.exe -Destination $Env:Programfiles\Minikube


Add C:\Program Files\Minikube to your Windows path:

$net = Get-NetAdapter -Name 'Wi-Fi' #assuming your network adapter is called 'Wi-Fi'
New-VMSwitch -Name "Minikube" -AllowManagementOS $True -NetAdapterName $net.Name
minikube config set vm-driver hyperv
minikube config set hyperv-virtual-switch Minikube
minikube config set memory 2048
 
minikube start
Kubernetes

Published at DZone with permission of Pieter De Rycke, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Trending

  • 5 Common Data Structures and Algorithms Used in Machine Learning
  • Future of Software Development: Generative AI Augmenting Roles and Unlocking Co-Innovation
  • Grow Your Skills With Low-Code Automation Tools
  • Hiding Data in Cassandra

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: