Created
November 27, 2014 02:28
-
-
Save mindscratch/6d4f65da0dde780b4556 to your computer and use it in GitHub Desktop.
Kubernetes on CentOS 6
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
docker run --rm -it centos:centos6 /bin/bash | |
yum install -y wget tar | |
wget https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v0.5.4/kubernetes.tar.gz | |
wget https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-linux-amd64.tar.gz | |
# untar kubernetes and add binaries to path | |
tar -xf kubernetes.tar.gz | |
cd kubernetes/server | |
tar -xf kubernetes-server-linux-amd64.tar.gz | |
cd kubernetes/server/bin | |
export PATH=$PATH:$(pwd) | |
cd / | |
tar -xf etcd-v0.4.6-linux-amd64.tar.gz | |
export PATH=$PATH:/etcd-v0.4.6-linux-amd64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment