Skip to content

Instantly share code, notes, and snippets.

@idvoretskyi
Created April 17, 2016 03:37
Show Gist options
  • Select an option

  • Save idvoretskyi/9daff76d4a98360154a86f115f747415 to your computer and use it in GitHub Desktop.

Select an option

Save idvoretskyi/9daff76d4a98360154a86f115f747415 to your computer and use it in GitHub Desktop.
#/bin/bash
# Environmental variables for installing the Docker-based multi-node environment
# Master node IP address; for the local environment put "127.0.0.1"
export MASTER_IP="127.0.0.1"
# Desired Kubernetes version
# to set a variable to the latest released version (inc. alpha & beta), uncomment the following line:
# export K8S_VERSION=$(curl -sS https://storage.googleapis.com/kubernetes-release/release/stable.txt)
# to set a variable to the latest stable version, uncomment the following line:
# export K8S_VERSION=$(curl -sS https://storage.googleapis.com/kubernetes-release/release/stable.txt)
export K8S_VERSION=v1.2.2
export ETCD_VERSION=v2.3.1
export FLANNEL_VERSION=0.5.5
export FLANNEL_IFACE=eth0
export FLANNEL_IPMASQ=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment