Skip to content

Instantly share code, notes, and snippets.

@moondev
Last active January 19, 2017 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moondev/58beb2485dba2767a2ef795c45d2f77a to your computer and use it in GitHub Desktop.
Save moondev/58beb2485dba2767a2ef795c45d2f77a to your computer and use it in GitHub Desktop.
apt-get update
apt-get install -y curl
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
cat <<EOF > /etc/apt/sources.list.d/kubernetes.list
deb http://apt.kubernetes.io/ kubernetes-xenial main
EOF
apt-get update
curl -sSL https://get.docker.com/ | sh
apt-get install -y kubelet kubeadm kubectl kubernetes-cni
# kubeadm init
# kubectl taint nodes --all dedicated-
# kubectl apply -f https://git.io/weave-kube
# git clone https://github.com/kubernetes/heapster.git; cd heapster; kubectl create -f deploy/kube-config/influxdb/
# kubectl create -f https://rawgit.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment