Install kubeadm in macOS Install kubeadm in macOS kubernetes kubernetes

Install kubeadm in macOS


Not sure about MAC OS

The supported platforms on their list are:

Ubuntu 16.04+Debian 9CentOS 7RHEL 7Fedora 25/26 (best-effort)HypriotOS v1.0.1+Container Linux (tested with 1800.6.0)

https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/

KubeAdm is not for Desktop local environment.

You can install Docker For MAC that will install the minikube environment for you.


You are not able to directly install kubeadm and set up kubernetes cluster locally on MAC OS because of docker.Unfortunately for MAC we should have VirtualBox where Docker will run + boot2docker.

And the best option here(as @Ijaz Ahmad Khan mentioned) is to use Docker Desktop for Mac

You can use below guide to correctly configure your cluster: How to Install Kubernetes on Mac


At the moment kubernetes server components doesn't ship any Darwin OS(MAC OS) binaries so the control plane component can't directly run under MACOS. Although they ship kubectl for Darwin OS which can use any API Server to connect to and deploy the applications.

However I was able to run the Hyperkube Binary inside the container that can support the all control plane components but this would all be under docker container so that isn't essentially a Darwin OS supported Control Plane.

You can try this if you just want to use local installs: https://github.com/kubernetes/kubernetes/tree/master/cluster/images/hyperkube

also If you are really looking to do everything in MAC , then possibly Install Hyperkit driver and that will allow you do pretty much the same thing to pull up the control plane images and built it up.