Skip to content

Commit bcf3b24

Browse files
committed
reformatting
1 parent ca83ecf commit bcf3b24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/posts/kind-macos.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ author: "Kapil Agrawal"
66
comments: false
77
---
88

9-
If you use MacOS as your daily driver and need a functional IPv6 enabled Kubernetes cluster for local development/testing this article is meant for you! I have been using [orbstack](https://orbstack.dev) for a few years now as a drop in replacement for Docker desktop and I have to say it's beyond impressive in terms of performance and features. My main motivation to move away from Docker desktop was the lack of support IPv6 on a MacOS and the horrendous performance. The next thing I tried was Colima which is quite flexible but still [lacks IPv6 support on MacOS](https://news.ycombinator.com/item?id=41422931).
9+
If you use MacOS as your daily driver and need an IPv6 capable Kubernetes cluster for local development/testing, this article is meant for you! I have been using [orbstack](https://orbstack.dev) for a few years now as a drop in replacement for Docker desktop and I have to say it's beyond impressive in terms of performance and features. My main motivation to move away from Docker desktop was the lack of support IPv6 on a MacOS and the horrendous performance. The next thing I tried was Colima which is quite flexible but still [lacks IPv6 support on MacOS](https://news.ycombinator.com/item?id=41422931).
1010

1111
While there are multiple kubernetes distributions such as [minikube](https://github.com/kubernetes/minikube/issues/8535), [k3d](https://github.com/k3d-io/k3d/issues/833) which work quite well on a MacOS, neither of those support IPv6 😭 Eventually I ended up trying [KIND](https://kind.sigs.k8s.io) and turns out, it works perfectly fine with IPv6 and is fully customizable 🎉
1212

1313
If you look under the hood, Kubernetes is an API server which relies on composable set of components to build a distributed system. Kubernetes by itself does not handle networking just as it does not handle managing container lifecycle, it relies on a container runtime such as containerd. Similarly, k8s relies on a container network interface [CNI](https://cni.dev) which is the component that manages cluster networking and routing network traffic in and out of the cluster. But to make a Kubernetes cluster IPv6 capable, we need to install a CNI which supports IPv6. Cilium is my CNI of choice as it support IPv6, has a large community around it and is a CNCF graduate project which speaks for it's maturity. I will write more about Cilium and other CNI's in a separate blog post ;)
1414

15-
#### Needed for running K8s with IPv6 on MacOS
15+
To run an IPv6 capable Kubernetes cluster on MacOS we need:
1616

1717
- [Orbstack](https://orbstack.dev)
1818
- `brew install kind`
File renamed without changes.

0 commit comments

Comments
 (0)