From 9ce2ad3f4c29cfccffef4df32368f6803b057baa Mon Sep 17 00:00:00 2001 From: Piotr Szczesniak Date: Fri, 2 Sep 2016 15:53:57 +0200 Subject: [PATCH] Enable Rescheduler by default --- cluster/gce/config-default.sh | 2 +- cluster/gce/config-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/config-default.sh b/cluster/gce/config-default.sh index 4ec0c0178fe..d30f4fc1c76 100755 --- a/cluster/gce/config-default.sh +++ b/cluster/gce/config-default.sh @@ -133,7 +133,7 @@ if [[ "${ENABLE_CLUSTER_AUTOSCALER}" == "true" ]]; then fi # Optional: Enable Rescheduler -ENABLE_RESCHEDULER="${KUBE_ENABLE_RESCHEDULER:-false}" +ENABLE_RESCHEDULER="${KUBE_ENABLE_RESCHEDULER:-true}" # Admission Controllers to invoke prior to persisting objects in cluster # If we included ResourceQuota, we should keep it at the end of the list to prevent incremeting quota usage prematurely. diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index aa9d1c23659..bcea5e0e726 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -158,7 +158,7 @@ if [[ "${ENABLE_CLUSTER_AUTOSCALER}" == "true" ]]; then fi # Optional: Enable Rescheduler -ENABLE_RESCHEDULER="${KUBE_ENABLE_RESCHEDULER:-false}" +ENABLE_RESCHEDULER="${KUBE_ENABLE_RESCHEDULER:-true}" # If we included ResourceQuota, we should keep it at the end of the list to prevent incremeting quota usage prematurely. ADMISSION_CONTROL="${KUBE_ADMISSION_CONTROL:-NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,ResourceQuota}"