Commit c9574560 authored by Mike Danese's avatar Mike Danese

make update period for Node not a multiple of 5

parent b9293a09
...@@ -37,7 +37,9 @@ import ( ...@@ -37,7 +37,9 @@ import (
) )
const ( const (
updateRetryPeriod = 5 * time.Second // this should not be a multiple of 5, because node status updates
// every 5 seconds. See https://github.com/kubernetes/kubernetes/pull/14915.
updateRetryPeriod = 2 * time.Second
updateRetryTimeout = 30 * time.Second updateRetryTimeout = 30 * time.Second
daemonsetLabelPrefix = "daemonset-" daemonsetLabelPrefix = "daemonset-"
daemonsetNameLabel = daemonsetLabelPrefix + "name" daemonsetNameLabel = daemonsetLabelPrefix + "name"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment