Commit f71e0eeb authored by Justin Santa Barbara's avatar Justin Santa Barbara

Allow the AWS instance type to be specified via MASTER_SIZE, MINION_SIZE

parent a3fd0a9f
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
# TODO: this isn't quite piped into all the right places... # TODO: this isn't quite piped into all the right places...
ZONE=${KUBE_AWS_ZONE:-us-west-2} ZONE=${KUBE_AWS_ZONE:-us-west-2}
MASTER_SIZE=t2.micro MASTER_SIZE=${MASTER_SIZE:-t2.micro}
MINION_SIZE=t2.micro MINION_SIZE=${MINION_SIZE:-t2.micro}
NUM_MINIONS=${NUM_MINIONS:-4} NUM_MINIONS=${NUM_MINIONS:-4}
# This is the ubuntu 14.04 image for us-west-2 + ebs # This is the ubuntu 14.04 image for us-west-2 + ebs
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
# TODO: this isn't quite piped into all the right places... # TODO: this isn't quite piped into all the right places...
ZONE=${KUBE_AWS_ZONE:-us-west-2} ZONE=${KUBE_AWS_ZONE:-us-west-2}
MASTER_SIZE=t2.micro MASTER_SIZE=${MASTER_SIZE:-t2.micro}
MINION_SIZE=t2.micro MINION_SIZE=${MINION_SIZE:-t2.micro}
NUM_MINIONS=${NUM_MINIONS:-2} NUM_MINIONS=${NUM_MINIONS:-2}
# This is the ubuntu 14.04 image for us-west-2 + ebs # This is the ubuntu 14.04 image for us-west-2 + ebs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment