The Kubernetes command-line tool (kubectl) allows you to run commands against Kubernetes clusters. You can use kubectl
to inspect and manage cluster resources, and view logs.Refer to the official Kubernetes documentation for
installation instructions for your specific Windows distribution.
WSL is a feature developed by Microsoft that allows you to run a Linux distribution on your Windows machine. This
feature is supported on Windows 10 and above. For older versions of Windows, you may have to
install it manually.
You can choose your choice of Linux distro, in this example, we will be using Ubuntu. Open PowerShell or Windows Command
Prompt in administrator mode by right-clicking and selecting “Run as administrator”, enter the following command
Copy
wsl --install -d ubuntu
You’ll need to restart your machine after the installation
Check out Official WSL docs for more info.After the reboot, run the command from your PowerShell
Copy
wsl
Once you have installed WSL, you will need to create a user account and password for your newly installed Linux
distribution.
Once you have everything up and running, you can install LocalOps CLI by following the instructions from the
Install Linux page. Since we are running a linux distribution on a windows machine, steps are the
same.