Created
October 17, 2022 21:41
-
-
Save Oyelowo/4d701639fdff0a7d892efe995b191ab9 to your computer and use it in GitHub Desktop.
Launch a lightweight virtual machine on M1 MAC with k3s installed: https://github.com/canonical/multipass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Virtual machine multipass | |
brew install --cask multipass | |
multipass launch --name k3s --mem 4G --disk 40G | |
multipass shell k3s | |
# From inside the VM run: | |
ubuntu@k3s:~$ curl -sfL https://get.k3s.io | sh - | |
ubuntu@k3s:~$ kubectl get nodes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment