Quick Start with Windows 
Prerequisites
1. Install the Meshery command line client, mesheryctl .Overview
To set up and run Meshery on Windows
Compatibility
The following minimum Windows build versions are required:
Name | Version |
---|---|
WSL1 | x64 - Windows 7 |
WSL2 | x64 - Version 1903, Build 18362; ARM 64 - Version 2004, Build 19041 |
Custom Kernel | Build 18945 |
Kernel with K8s required modules | Build 19013 |
Note
Run the following command on Powershell to check your Windows build and version:
[System.Environment]::OSVersion.Version
Steps
Perform the following steps in order:
1. Install Windows Subsystem for Linux (WSL)
Open Powershell in administrator mode and run:
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart Restart-Computer
Choosing your WSL version:
WSL2 (Recommended)
Set the default version to WSL2, which will be inherited by any distro you wish to use.
Enable VM (Virtual Machine) feature:
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Set WSL2 as the default version:
wsl --set-default-version 2
WSL1
Warning: It is recommended to update to WSL2 as WSL1 doesn’t support the Docker Desktop application for Windows. Instead, it only supports the deprecated version, Docker Toolbox.
If you still wish to continue, follow the instructions for
2. Install a new distro
In this tutorial, Ubuntu 18.04 will be the distro used. Feel free to use any distro of your choice.
3. Enable Docker
The Docker Desktop application for Windows includes a comprehensive set of tools, including Docker Engine, Docker CLI client, Docker Compose, Notary, Kubernetes, and a Credential Helper.
Windows 10 Version | Docker Desktop |
---|---|
Pro/Education/Enterprise | Docker Desktop for Windows Pro |
Home | Docker Desktop for Windows Home |
4. Install a Kubernetes cluster
Once Docker is installed, the next step will be to install a Kubernetes cluster. In this how-to, K3d will be used as it relies only on Docker.
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash k3d cluster create export KUBECONFIG="$(k3d kubeconfig get 'k3s-default')"
5. Set up Meshery
Follow the installation steps to install the mesheryctl CLI. Then, execute:
./mesheryctl system start