A declarative framework for resilient Kubernetes deployment.
Go to file
Aric Renzo ad06197b55 Refactoring for using Docker behind a proxy 2017-06-19 10:59:11 -04:00
example Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
promenade Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
.dockerignore Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
.gitignore Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
Dockerfile Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
LICENSE Initial commit 2017-02-14 11:13:39 -08:00
README.md Refactoring for using Docker behind a proxy 2017-06-19 10:59:11 -04:00
Vagrantfile Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
genesis.sh Refactoring for using Docker behind a proxy 2017-06-19 10:59:11 -04:00
join.sh Refactoring for using Docker behind a proxy 2017-06-19 10:59:11 -04:00
requirements-frozen.txt Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
requirements.txt Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
setup.cfg Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
setup.py Basic HA kubernetes deployment (#7) 2017-06-15 20:57:22 -07:00
variables.sh Adding support for using Docker behind a proxy 2017-06-16 15:06:33 -04:00

README.md

Overview

Promenade is tool for deploying self-hosted, highly resilient Kubernetes clusters.

Quickstart using Vagrant

Make sure you have Vagrant and VirtualBox installed.

Start the VMs:

vagrant up

Start the genesis node:

vagrant ssh n0 -c 'sudo /vagrant/genesis.sh /vagrant/example/vagrant-config.yaml'

Join the master nodes:

vagrant ssh n1 -c 'sudo /vagrant/join.sh /vagrant/example/vagrant-config.yaml'
vagrant ssh n2 -c 'sudo /vagrant/join.sh /vagrant/example/vagrant-config.yaml'

Join the worker node:

vagrant ssh n3 -c 'sudo /vagrant/join.sh /vagrant/example/vagrant-config.yaml'

Building the image

docker build -t quay.io/attcomdev/promenade:experimental .

Using Promenade Behind a Proxy

Modify the genesis.sh and proxy.sh scripts, passing in the URL and ports of the proxy server relative to the cluster hosts:

DOCKER_HTTP_PROXY="http://proxy.server.com:8080"
DOCKER_HTTPS_PROXY="https://proxy.server.com:8080"
DOCKER_NO_PROXY="localhost,127.0.0.1"