summaryrefslogtreecommitdiffstats
path: root/cluster.sh
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2014-10-01 14:30:13 -0700
committerJhon Honce <jhonce@redhat.com>2014-10-02 15:36:01 -0700
commit346da608fbc71029ccac7ca559af38b0f218f3fe (patch)
tree1f95c805c91a78c0f2a5b07b69c1afce845918ec /cluster.sh
parent23b5138b592e3ebcc0a33ba578db21e20bb2bf58 (diff)
downloadopenshift-346da608fbc71029ccac7ca559af38b0f218f3fe.tar.gz
openshift-346da608fbc71029ccac7ca559af38b0f218f3fe.tar.bz2
openshift-346da608fbc71029ccac7ca559af38b0f218f3fe.tar.xz
openshift-346da608fbc71029ccac7ca559af38b0f218f3fe.zip
WIP Infra - Add playbooks for using openshift binary
* Fixed terminate so that it properly removes the attached OS disk.
Diffstat (limited to 'cluster.sh')
-rwxr-xr-xcluster.sh23
1 files changed, 15 insertions, 8 deletions
diff --git a/cluster.sh b/cluster.sh
index 50fbe66eb..3aaabd07d 100755
--- a/cluster.sh
+++ b/cluster.sh
@@ -1,9 +1,16 @@
#!/bin/bash -eu
-MINIONS=3
+MINIONS=1
MASTERS=1
PROVIDER=gce
+# FIXME: Add option
+#MASTER_PLAYBOOK=os3-master
+MASTER_PLAYBOOK=openshift-master
+#MINION_PLAYBOOK=os3-minion
+MINION_PLAYBOOK=openshift-minion
+
+
# @formatter:off
function usage {
cat 1>&2 <<-EOT
@@ -17,29 +24,29 @@ EOT
function create_cluser {
for (( i = 0; i < $MINIONS; i ++ )); do
- ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=os3-minion
+ ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MINION_PLAYBOOK
done
for (( i = 0; i < $MASTERS; i ++ )); do
- ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=os3-master
+ ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MASTER_PLAYBOOK
done
update_cluster
- echo -e "\nCreated ${MASTERS} masters and ${MINIONS} minions using ${PROVIDER} provider\n"
+ echo -e "\nCreated ${MASTERS} ${MASTER_PLAYBOOK} masters and ${MINIONS} ${MINION_PLAYBOOK} minions using ${PROVIDER} provider\n"
}
function update_cluster {
for (( i = 0; i < $MINIONS; i ++ )); do
- ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=os3-minion
+ ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MINION_PLAYBOOK
done
for (( i = 0; i < $MASTERS; i ++ )); do
- ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=os3-master
+ ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MASTER_PLAYBOOK
done
}
function terminate_cluster {
- #./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=os3-master
- ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=os3-minion
+ ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$MASTER_PLAYBOOK
+ ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$MINION_PLAYBOOK
}
[ -f ./cloud.rb ] || (echo 1>&2 'Cannot find ./cloud.rb' && exit 1)