Skip to content

Commit

Permalink
Add ability to set master/minion size for GCE using envvar.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrzadkowski committed Apr 3, 2015
1 parent e912d52 commit 0ffabfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cluster/gce/config-default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# gcloud multiplexing for shared GCE/GKE tests.
GCLOUD=gcloud
ZONE=${KUBE_GCE_ZONE:-us-central1-b}
MASTER_SIZE=n1-standard-1
MINION_SIZE=n1-standard-1
MASTER_SIZE=${MASTER_SIZE:-n1-standard-1}
MINION_SIZE=${MINION_SIZE:-n1-standard-1}
NUM_MINIONS=${NUM_MINIONS:-4}
MINION_DISK_TYPE=pd-standard
MINION_DISK_SIZE=100GB
Expand Down
4 changes: 2 additions & 2 deletions cluster/gce/config-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# gcloud multiplexing for shared GCE/GKE tests.
GCLOUD=gcloud
ZONE=${KUBE_GCE_ZONE:-us-central1-b}
MASTER_SIZE=g1-small
MINION_SIZE=g1-small
MASTER_SIZE=${MASTER_SIZE:-g1-small}
MINION_SIZE=${MINION_SIZE:-g1-small}
NUM_MINIONS=${NUM_MINIONS:-2}
MINION_DISK_TYPE=pd-standard
MINION_DISK_SIZE=100GB
Expand Down

0 comments on commit 0ffabfa

Please sign in to comment.