<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Noah Makau</title>
    <description>The latest articles on DEV Community by Noah Makau (@nkmakau).</description>
    <link>https://dev.to/nkmakau</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1916376%2F3d3874b2-ff16-4966-bcea-1cffb5a9b1aa.jpeg</url>
      <title>DEV Community: Noah Makau</title>
      <link>https://dev.to/nkmakau</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nkmakau"/>
    <language>en</language>
    <item>
      <title>Why I Replaced Multipass with OrbStack — And Built a Better Kubernetes Lab on My Mac</title>
      <dc:creator>Noah Makau</dc:creator>
      <pubDate>Fri, 15 May 2026 21:00:00 +0000</pubDate>
      <link>https://dev.to/nkmakau/why-i-replaced-multipass-with-orbstack-and-built-a-better-kubernetes-lab-on-my-mac-50p</link>
      <guid>https://dev.to/nkmakau/why-i-replaced-multipass-with-orbstack-and-built-a-better-kubernetes-lab-on-my-mac-50p</guid>
      <description>&lt;p&gt;&lt;em&gt;Part 1 of 7 — "The Mac Kubernetes Lab: A Production-Mirror Setup from Scratch"&lt;/em&gt;&lt;/p&gt;




&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Series overview:&lt;/strong&gt; This 7-part series walks through replacing Multipass with OrbStack on Apple Silicon and building a dual-cluster Kubernetes setup — a native daily driver cluster and a full VM-based EKS mirror with Vault PKI, Istio, and Crossplane.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  The Problem With My Old Setup
&lt;/h2&gt;

&lt;p&gt;My local Kubernetes setup was embarrassing. At Arkila Systems, I manage EKS clusters with Istio, HashiCorp Vault for secrets, and Crossplane for infrastructure provisioning. My laptop was supposed to reflect some version of that. Instead I had a pile of Multipass VMs that took a full minute to boot, Docker Desktop fighting for memory in the background, and a list of &lt;code&gt;kubectl port-forward&lt;/code&gt; commands I'd memorised because there was no other way to reach anything.&lt;/p&gt;

&lt;p&gt;The specific pain points:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multipass VMs boot in 30–60 seconds and pre-allocate memory whether you use it or not&lt;/li&gt;
&lt;li&gt;LoadBalancer services need MetalLB or &lt;code&gt;port-forward&lt;/code&gt; hacks just to be reachable&lt;/li&gt;
&lt;li&gt;Switching between a dev cluster and a production-mirror cluster meant juggling kubeconfigs and hoping nothing crashed overnight&lt;/li&gt;
&lt;li&gt;On Apple Silicon, half the tooling had ARM64 quirks that needed a separate debugging session before I could even start the actual work&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I spent a weekend trying OrbStack. I didn't go back.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Image: Multipass vs OrbStack — boot time and memory comparison&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What is OrbStack?
&lt;/h2&gt;

&lt;p&gt;OrbStack is a macOS-native tool that runs Linux virtual machines and Docker containers, built specifically for Apple Silicon. It uses Apple's Virtualization Framework and is written in Swift, Go, Rust, and C — not a port of something designed for x86.&lt;/p&gt;

&lt;p&gt;The numbers that made me switch:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Multipass&lt;/th&gt;
&lt;th&gt;OrbStack&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;VM boot time&lt;/td&gt;
&lt;td&gt;30–60 seconds&lt;/td&gt;
&lt;td&gt;Under 3 seconds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory allocation&lt;/td&gt;
&lt;td&gt;Pre-allocated at creation&lt;/td&gt;
&lt;td&gt;Shared — uses only what's needed&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Disk per VM&lt;/td&gt;
&lt;td&gt;Full image&lt;/td&gt;
&lt;td&gt;1.3–3 GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LoadBalancer services&lt;/td&gt;
&lt;td&gt;Needs MetalLB or port-forward&lt;/td&gt;
&lt;td&gt;Real IP, works immediately&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Wildcard DNS&lt;/td&gt;
&lt;td&gt;Manual /etc/hosts&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;*.k8s.orb.local&lt;/code&gt; auto-resolves from Mac&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Docker Desktop replacement&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;OrbStack also ships a &lt;strong&gt;built-in Kubernetes cluster&lt;/strong&gt; — one command and you have a working cluster with real LoadBalancer IPs and wildcard DNS. No configuration required.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;💡 Pricing note:&lt;/strong&gt; OrbStack is free for personal use — which covers everything in this series. If you're planning to roll it out across an engineering team or use it at work commercially, check &lt;a href="https://orbstack.dev/pricing" rel="noopener noreferrer"&gt;orbstack.dev/pricing&lt;/a&gt; for current plans. The grey area worth knowing: using it on your personal machine for home labs and side projects is free; using it on a work machine to do your day job is commercial use. For this series — personal lab on your own Mac — it costs you nothing.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  The Architecture: Two Clusters, One Tool
&lt;/h2&gt;

&lt;p&gt;After a few weeks with OrbStack, I settled on a dual-cluster setup. Two clusters, two purposes.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Image: Dual-cluster architecture — OrbStack native K8s (daily driver) + VM kubeadm cluster (EKS mirror)&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Cluster 1 — OrbStack Native K8s (Daily Driver)
&lt;/h3&gt;

&lt;p&gt;The built-in cluster handles fast iteration work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Crossplane compositions and provider development&lt;/li&gt;
&lt;li&gt;HashiCorp Vault AppRole workflows&lt;/li&gt;
&lt;li&gt;Helm chart testing&lt;/li&gt;
&lt;li&gt;Istio Gateway and VirtualService experimentation — though I break this constantly, which is fine&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Switch to it with &lt;code&gt;kubectx orbstack&lt;/code&gt;. Services are reachable at &lt;code&gt;*.k8s.orb.local&lt;/code&gt; from your browser immediately.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cluster 2 — VM kubeadm Cluster (EKS Mirror + CKS Lab)
&lt;/h3&gt;

&lt;p&gt;Four OrbStack Linux VMs running a real kubeadm-bootstrapped cluster:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;K8s 1.34 — matching our upcoming EKS upgrade target at Arkila Systems&lt;/li&gt;
&lt;li&gt;Vault PKI as the cluster Certificate Authority&lt;/li&gt;
&lt;li&gt;Istio with revision-based upgrades, identical to our EKS approach&lt;/li&gt;
&lt;li&gt;Crossplane with AWS provider&lt;/li&gt;
&lt;li&gt;Multi-node topology (control plane + 2 workers) mirroring production&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is also my CKS exam preparation environment — Pod Security Admission, audit policies, NetworkPolicy, short-lived admin certificates via Vault.&lt;/p&gt;




&lt;h2&gt;
  
  
  Apple Silicon Compatibility — M1 vs M4
&lt;/h2&gt;

&lt;p&gt;I originally built this on an M4 Mac. Everything worked. Then I tried replicating the setup on an M1 Pro. The cluster came up fine, but the CNI never did — and the root cause was not obvious.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;M4 Mac&lt;/th&gt;
&lt;th&gt;M1 / M2 / M3 Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;OrbStack VM type&lt;/td&gt;
&lt;td&gt;Unprivileged LXC&lt;/td&gt;
&lt;td&gt;Unprivileged LXC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;iptables NAT&lt;/td&gt;
&lt;td&gt;✅ Works&lt;/td&gt;
&lt;td&gt;❌ Restricted&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Recommended CNI&lt;/td&gt;
&lt;td&gt;Calico&lt;/td&gt;
&lt;td&gt;Cilium (eBPF)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;kube-proxy&lt;/td&gt;
&lt;td&gt;Standard&lt;/td&gt;
&lt;td&gt;Replaced by Cilium&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;OrbStack VMs run as unprivileged LXC containers. On M4, iptables NAT table manipulation works fine. On M1 it's restricted — kube-proxy can't write &lt;code&gt;KUBE-SERVICES&lt;/code&gt; chains, which means ClusterIP services are unreachable and any CNI plugin that tries to call the API server via ClusterIP fails silently. Calico starts, looks healthy, and then just... doesn't work. Took a while to connect the dots.&lt;/p&gt;

&lt;p&gt;The fix is Cilium, which uses eBPF-based service routing and completely replaces kube-proxy. We'll cover this properly in Part 4.&lt;/p&gt;




&lt;h2&gt;
  
  
  What You'll Need
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Apple Silicon Mac (M1, M2, M3, or M4)&lt;/li&gt;
&lt;li&gt;Homebrew installed&lt;/li&gt;
&lt;li&gt;At least 16 GB RAM — 8 GB will technically work but you'll feel it when all four VMs are running&lt;/li&gt;
&lt;li&gt;About 20 GB free disk space
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 💻 Mac — check your chip&lt;/span&gt;
system_profiler SPHardwareDataType | &lt;span class="nb"&gt;grep &lt;/span&gt;Chip

&lt;span class="c"&gt;# Check available disk&lt;/span&gt;
&lt;span class="nb"&gt;df&lt;/span&gt; &lt;span class="nt"&gt;-h&lt;/span&gt; ~
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  The Multipass → OrbStack Migration
&lt;/h2&gt;

&lt;p&gt;If you're coming from Multipass, the command mapping is straightforward:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Multipass&lt;/th&gt;
&lt;th&gt;OrbStack&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass launch ubuntu&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb create ubuntu&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass shell &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;ssh &amp;lt;name&amp;gt;@orb&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass exec &amp;lt;name&amp;gt; -- cmd&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb run -m &amp;lt;name&amp;gt; cmd&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass list&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb list&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass delete &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb delete &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass stop &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb stop &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;multipass stop --all&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;orb stop -a&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Install OrbStack and clean out Multipass:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 💻 Mac&lt;/span&gt;
brew &lt;span class="nb"&gt;install &lt;/span&gt;orbstack
open &lt;span class="nt"&gt;-a&lt;/span&gt; OrbStack   &lt;span class="c"&gt;# required once for first-time GUI setup&lt;/span&gt;

&lt;span class="c"&gt;# Remove Multipass&lt;/span&gt;
brew uninstall multipass
&lt;span class="nb"&gt;sudo rm&lt;/span&gt; &lt;span class="nt"&gt;-rf&lt;/span&gt; /var/root/Library/Application&lt;span class="se"&gt;\ &lt;/span&gt;Support/multipassd
&lt;span class="nb"&gt;sudo rm&lt;/span&gt; &lt;span class="nt"&gt;-rf&lt;/span&gt; ~/Library/Application&lt;span class="se"&gt;\ &lt;/span&gt;Support/multipass
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;OrbStack auto-installs &lt;code&gt;orb&lt;/code&gt;, &lt;code&gt;docker&lt;/code&gt;, and &lt;code&gt;kubectl&lt;/code&gt; on your PATH.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Coming in This Series
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Part 1 (this article):&lt;/strong&gt; Why OrbStack, architecture overview, M1 vs M4&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 2:&lt;/strong&gt; Cluster 1 — Native K8s daily driver with Istio, Vault, Crossplane&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 3:&lt;/strong&gt; Cluster 2 — VM creation, networking, and Vault PKI bootstrap&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 4:&lt;/strong&gt; kubeadm 1.34 — M1 vs M4 CNI deep dive (Calico vs Cilium)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 5:&lt;/strong&gt; Istio revision-based upgrades and MetalLB on the VM cluster&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 6:&lt;/strong&gt; Vault K8s auth and Crossplane — mirroring your EKS stack&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Part 7:&lt;/strong&gt; Day 2 operations, CKS lab scenarios, and making it all stick&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Part 2: &lt;a href="https://blog.arkilasystems.com/cluster-1-your-daily-kubernetes-driver-in-one-command" rel="noopener noreferrer"&gt;Cluster 1 — Your Daily K8s Driver in One Command&lt;/a&gt; →&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Noah Makau is a DevSecOps Engineer, Entrepreneur, and self-described Nerd. He holds CKA, CKAD, AWS Solutions Architect Professional, AWS Solutions Architect Associate, and AWS Cloud Practitioner certifications. He is the founder of Arkila Systems, a DevOps consultancy, where he designs and operates Kubernetes, HashiCorp Vault, Crossplane, and CI/CD pipelines at scale. He is currently preparing for CKS certification.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>devops</category>
      <category>tutorial</category>
      <category>platformengieering</category>
    </item>
  </channel>
</rss>
