🌱 increase the default work eviction grace period to 60 minutes (#203)

Signed-off-by: Yang Le <yangle@redhat.com>
This commit is contained in:
Yang Le
2023-07-03 11:03:24 +08:00
committed by GitHub
parent de2b7d35be
commit 1a526be0cc

View File

@@ -53,7 +53,7 @@ func NewWorkloadAgentOptions() *WorkloadAgentOptions {
return &WorkloadAgentOptions{
AgentOptions: commonoptions.NewAgentOptions(),
StatusSyncInterval: 10 * time.Second,
AppliedManifestWorkEvictionGracePeriod: 10 * time.Minute,
AppliedManifestWorkEvictionGracePeriod: 60 * time.Minute,
}
}