Merge pull request #15936 from justinsb/aws_enable_deployments

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2015-10-24 11:43:05 -07:00
commit 3298eff212

View File

@ -452,6 +452,13 @@ function verify-prereqs {
fi
fi
fi
if [[ "${ENABLE_DEPLOYMENTS}" == "true" ]]; then
if [[ -z "${RUNTIME_CONFIG}" ]]; then
RUNTIME_CONFIG="extensions/v1beta1/deployments=true"
else
RUNTIME_CONFIG="${RUNTIME_CONFIG},extensions/v1beta1/deployments=true"
fi
fi
if [[ "$(which aws)" == "" ]]; then
echo "Can't find aws in PATH, please fix and retry."