Last active
May 8, 2018 23:13
-
-
Save ericstoekl/1d4372e9398d9cec7ec028629b2c36e2 to your computer and use it in GitHub Desktop.
K8s on AWS quickinstall script
This file contains 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
apt-get update | |
apt-get install -qy docker.io | |
apt-get update | |
apt-get install -y apt-transport-https | |
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - | |
echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" > /etc/apt/sources.list.d/kubernetes.list | |
apt-get update | |
apt-get install -y kubelet kubeadm kubernetes-cni |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment