Last active
August 8, 2017 02:45
-
-
Save iameli/8efe902284db2bbf8d3d3327ed0a52cb to your computer and use it in GitHub Desktop.
Attempting to get kubeadm run on Docker for Mac
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
| apk add socat ethtool ebtables iproute2 libc6-compat | |
| ln -s /lib /lib64 | |
| curl -Lo /usr/bin/kubelet https://storage.googleapis.com/kubernetes-release/release/v1.7.3/bin/linux/amd64/kubelet | |
| curl -Lo /usr/bin/kubeadm https://storage.googleapis.com/kubernetes-release/release/v1.7.3/bin/linux/amd64/kubeadm | |
| curl -Lo /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.3/bin/linux/amd64/kubectl | |
| chmod 755 /usr/bin/kube* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment