diff --git a/cluster/gce/config-default.sh b/cluster/gce/config-default.sh index 4abc7969e4a..d014395921b 100755 --- a/cluster/gce/config-default.sh +++ b/cluster/gce/config-default.sh @@ -311,7 +311,7 @@ fi # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node. # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a # new subnetwork will be created for the cluster. -ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-false} +ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true} NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator} if [ "${ENABLE_IP_ALIASES}" = true ]; then # Number of Pods that can run on this node. diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index a2d84415d56..8a862d22578 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -353,7 +353,7 @@ fi # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node. # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a # new subnetwork will be created for the cluster. -ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-false} +ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true} export NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator} if [ "${ENABLE_IP_ALIASES}" = true ]; then # Number of Pods that can run on this node.