From e9ff8e7f97d99e51f47eae7edfab365aa75c4258 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Tue, 20 Oct 2015 15:51:35 -0700 Subject: [PATCH] fix extensions enabling in aws kube-up --- cluster/aws/util.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 cluster/aws/util.sh diff --git a/cluster/aws/util.sh b/cluster/aws/util.sh old mode 100644 new mode 100755 index 08aa462cc0b..c82cc578ec3 --- a/cluster/aws/util.sh +++ b/cluster/aws/util.sh @@ -443,10 +443,10 @@ function create-dhcp-option-set () { function verify-prereqs { if [[ "${ENABLE_EXPERIMENTAL_API}" == "true" ]]; then if [[ -z "${RUNTIME_CONFIG}" ]]; then - RUNTIME_CONFIG="experimental/v1alpha1=true" + RUNTIME_CONFIG="extensions/v1beta1=true" else - # TODO: add checking if RUNTIME_CONFIG contains "experimental/v1alpha1=false" and appending "experimental/v1alpha1=true" if not. - if echo "${RUNTIME_CONFIG}" | grep -q -v "experimental/v1alpha1=true"; then + # TODO: add checking if RUNTIME_CONFIG contains "extensions/v1beta1=false" and appending "extensions/v1beta1=true" if not. + if echo "${RUNTIME_CONFIG}" | grep -q -v "extensions/v1beta1=true"; then echo "Experimental API should be turned on, but is not turned on in RUNTIME_CONFIG!" exit 1 fi