Member-only story

Running K3s with Multipass on Macbook

Zhimin Wen
2 min readMar 20, 2019

--

K3s is the lightweight Kubernetes distribution that is just freshly baked. As its lightweight, it’s ideal to run on a laptop for a developer to explore and experiment with it. But K3s is natively available for Linux. How can we run it on Mac?

Entering Multipass. First, let's install the multipass with the brew.

brew search multipass
brew cask install multipass

Now create a VM with multipass, assuming 1GB memory and 5GB disk.

multipass launch --name k3s --mem 1G --disk 5G
Launched: k3s

Wait for the VM created, then open a shell to the VM,

multipass shell k3s

We have the shell for the VM then, run curl -sfL https://get.k3s.io | sh - to install K3s.

[INFO]  Finding latest release
[INFO] Using v0.2.0 as release
[INFO] Downloading hash https://github.com/rancher/k3s/releases/download/v0.2.0/sha256sum-amd64.txt
[INFO] Downloading binary https://github.com/rancher/k3s/releases/download/v0.2.0/k3s
[INFO] Verifying binary download
[INFO] Installing k3s to /usr/local/bin/k3s
[INFO] Creating /usr/local/bin/kubectl symlink to k3s
[INFO] Creating /usr/local/bin/crictl symlink to k3s
[INFO] Creating uninstall script /usr/local/bin/k3s-uninstall.sh
[INFO] systemd: Creating environment file /etc/systemd/system/k3s.service.env
[INFO] systemd: Creating service file /etc/systemd/system/k3s.service
[INFO] systemd: Enabling k3s unit
Created symlink…

--

--

Responses (4)