Merge pull request #84007 from wojtek-t/reduce_node_update_frequency

Reduce node update frequency
This commit is contained in:
Kubernetes Prow Robot
2019-11-04 15:28:43 -08:00
committed by GitHub
5 changed files with 10 additions and 10 deletions

View File

@@ -177,7 +177,7 @@ func GetHollowKubeletConfig(opt *HollowKubletOptions) (*options.KubeletFlags, *k
c.FileCheckFrequency.Duration = 20 * time.Second
c.HTTPCheckFrequency.Duration = 20 * time.Second
c.NodeStatusUpdateFrequency.Duration = 10 * time.Second
c.NodeStatusReportFrequency.Duration = time.Minute
c.NodeStatusReportFrequency.Duration = 5 * time.Minute
c.SyncFrequency.Duration = 10 * time.Second
c.EvictionPressureTransitionPeriod.Duration = 5 * time.Minute
c.MaxPods = int32(opt.MaxPods)