Skip to content

Instantly share code, notes, and snippets.

View rdodev's full-sized avatar

Ruben Orduz rdodev

  • Gainesville, FL
View GitHub Profile
@rdodev
rdodev / setup_k8s_build.sh
Last active April 19, 2017 17:39
Kubernetes Multi-platform Release Build (Ubuntu Xenial)
apt update && apt upgrade -y
apt install apt-transport-https ca-certificates curl software-properties-common build-essential -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
apt-key fingerprint 0EBFCD88
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt update
apt install docker-ce -y
ssh-keygen #unneeded if you have your ssh key already in github
git clone git@github.com:kubernetes/kubernetes.git
service docker start
@rdodev
rdodev / gist:6625195eec35898bd5fd
Created May 15, 2015 18:21
Sublime Text Better Selection
{
//other settings here
"word_separators": "./()\"'<>~!@#%^*|+=[]{}",
}