From 64b54dda392291c738f9573e40b3211798a1238e Mon Sep 17 00:00:00 2001 From: Christopher Winslett Date: Wed, 18 Mar 2015 11:34:49 -0700 Subject: [PATCH] change to governor name --- README.md | 6 ++++-- run.py => governor.py | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename run.py => governor.py (100%) diff --git a/README.md b/README.md index 9f04cb5f..4a528b46 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,16 @@ To get started, do the following from different terminals: ``` > etcd --data-dir=data/etcd -> ./run.py postgres0.yml -> ./run.py postgres1.yml +> ./governor.py postgres0.yml +> ./governor.py postgres1.yml ``` From there, you will see a high-availability cluster start up. Test different settings in the YAML files to see how behavior changes. Kill some of the different components to see how the system behaves. +Add more `postgres*.yml` files to create an even larger cluster. + To get a haproxy load balancing between these two hosts, run: ``` diff --git a/run.py b/governor.py similarity index 100% rename from run.py rename to governor.py