AWS: Add jessie support to cluster script

This commit is contained in:
Justin Santa Barbara
2015-06-06 13:19:37 -04:00
parent c7701205bd
commit 8e69495f7f
2 changed files with 85 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ ASG_NAME="${NODE_INSTANCE_PREFIX}-group"
MASTER_DISK_ID=
case "${KUBE_OS_DISTRIBUTION}" in
ubuntu|wheezy|coreos)
ubuntu|wheezy|jessie|coreos)
source "${KUBE_ROOT}/cluster/aws/${KUBE_OS_DISTRIBUTION}/util.sh"
;;
*)
@@ -227,6 +227,9 @@ case "${KUBE_OS_DISTRIBUTION}" in
wheezy)
detect-wheezy-image
;;
jessie)
detect-jessie-image
;;
*)
echo "Please specify AWS_IMAGE directly (distro not recognized)"
exit 2