diff --git a/cluster/aws/util.sh b/cluster/aws/util.sh index c82cc578ec3..16a1a5cd7d4 100755 --- a/cluster/aws/util.sh +++ b/cluster/aws/util.sh @@ -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."