From f3027649cc0ddc602ae288f4d37d88ceb9d64244 Mon Sep 17 00:00:00 2001 From: Robbie Zhang Date: Fri, 7 Jul 2017 14:23:32 -0700 Subject: [PATCH] Set the default CloudProvider backoff values --- pkg/acsengine/const.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkg/acsengine/const.go b/pkg/acsengine/const.go index 45140980c2..b8a6030b7f 100644 --- a/pkg/acsengine/const.go +++ b/pkg/acsengine/const.go @@ -63,18 +63,18 @@ var KubeImages = map[api.OrchestratorVersion]map[string]string{ "dnsmasq": "k8s-dns-dnsmasq-amd64:1.13.0", "pause": "pause-amd64:3.0", "windowszip": "v1.6.6intwinnat.zip", - "nodestatusfreq": "10s", - "nodegraceperiod": "40s", - "podeviction": "5m0s", - "routeperiod": "10s", - "backoff": "false", + "nodestatusfreq": "1m", + "nodegraceperiod": "5m", + "podeviction": "1m", + "routeperiod": "1m", + "backoff": "true", "backoffduration": "5", "backoffexponent": "1.5", "backoffretries": "6", "backoffjitter": "1", - "ratelimit": "false", - "ratelimitqps": "1", - "ratelimitbucket": "5", + "ratelimit": "true", + "ratelimitqps": "3", + "ratelimitbucket": "10", }, api.Kubernetes162: { "hyperkube": "hyperkube-amd64:v1.6.2",