diff --git a/cluster/aws/config-default.sh b/cluster/aws/config-default.sh index d0c63ece3df..583057300e3 100644 --- a/cluster/aws/config-default.sh +++ b/cluster/aws/config-default.sh @@ -16,8 +16,8 @@ # TODO: the zone isn't quite piped into all the right places... ZONE=${KUBE_AWS_ZONE:-us-west-2} -MASTER_SIZE=t2.micro -MINION_SIZE=t2.micro +MASTER_SIZE=${MASTER_SIZE:-t2.micro} +MINION_SIZE=${MINION_SIZE:-t2.micro} NUM_MINIONS=${NUM_MINIONS:-4} # This is the ubuntu 14.04 image for us-west-2 + ebs diff --git a/cluster/aws/config-test.sh b/cluster/aws/config-test.sh index eb37d6b19d4..9166938d726 100755 --- a/cluster/aws/config-test.sh +++ b/cluster/aws/config-test.sh @@ -16,8 +16,8 @@ # TODO: this isn't quite piped into all the right places... ZONE=${KUBE_AWS_ZONE:-us-west-2} -MASTER_SIZE=t2.micro -MINION_SIZE=t2.micro +MASTER_SIZE=${MASTER_SIZE:-t2.micro} +MINION_SIZE=${MINION_SIZE:-t2.micro} NUM_MINIONS=${NUM_MINIONS:-2} # This is the ubuntu 14.04 image for us-west-2 + ebs