File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -77,10 +77,10 @@ func (config HTTPProbeConfig) Create() *v1.Probe {
7777 HTTPHeaders : headers ,
7878 },
7979 },
80- InitialDelaySeconds : def (config .InitialDelaySeconds , 30 ), // Wait 30s before first probe
81- TimeoutSeconds : def (config .TimeoutSeconds , 2 ), // Timeout of each probe is 2s
82- PeriodSeconds : def (config .PeriodSeconds , 10 ), // Interval between probes is 10s
83- SuccessThreshold : def (config .SuccessThreshold , 1 ), // Single probe is enough to indicate success
84- FailureThreshold : def (config .FailureThreshold , 3 ), // Need 3 failed probes to consider a failed state
80+ InitialDelaySeconds : def (config .InitialDelaySeconds , 15 * 60 ), // Wait 15min before first probe
81+ TimeoutSeconds : def (config .TimeoutSeconds , 2 ), // Timeout of each probe is 2s
82+ PeriodSeconds : def (config .PeriodSeconds , 60 ), // Interval between probes is 10s
83+ SuccessThreshold : def (config .SuccessThreshold , 1 ), // Single probe is enough to indicate success
84+ FailureThreshold : def (config .FailureThreshold , 10 ), // Need 10 failed probes to consider a failed state
8585 }
8686}
You can’t perform that action at this time.
0 commit comments