Skip to content

Instantly share code, notes, and snippets.

@akashgangil
Created December 17, 2015 23:10
Show Gist options
  • Save akashgangil/6735d5c4f2cf3e76f060 to your computer and use it in GitHub Desktop.
Save akashgangil/6735d5c4f2cf3e76f060 to your computer and use it in GitHub Desktop.
kube node prep
# Clone k8s
git clone https://github.com/kubernetes/kubernetes
# Setup etcd
curl -L https://github.com/coreos/etcd/releases/download/v2.2.2/etcd-v2.2.2-linux-amd64.tar.gz -o etcd-v2.2.2-linux-amd64.tar.gz
tar xzvf etcd-v2.2.2-linux-amd64.tar.gz
curl -sSL https://get.docker.com | sh
# Install go
sudo rm -rf /usr/local/go
wget https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.5.linux-amd64.tar.gz
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment