mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-18 08:09:58 +00:00
Merge pull request #120819 from fusida/fix-master-e2e
e2e: set liveness probe timeout seconds for conformance test
This commit is contained in:
commit
4b2225701e
@ -857,6 +857,7 @@ var _ = SIGDescribe("[NodeAlphaFeature:SidecarContainers][Feature:SidecarContain
|
||||
livenessProbe := &v1.Probe{
|
||||
ProbeHandler: httpGetHandler("/healthz", 8080),
|
||||
InitialDelaySeconds: 15,
|
||||
TimeoutSeconds: 5,
|
||||
FailureThreshold: 1,
|
||||
}
|
||||
pod := livenessSidecarPodSpec(f.Namespace.Name, nil, livenessProbe)
|
||||
@ -875,6 +876,7 @@ var _ = SIGDescribe("[NodeAlphaFeature:SidecarContainers][Feature:SidecarContain
|
||||
livenessProbe := &v1.Probe{
|
||||
ProbeHandler: tcpSocketHandler(8080),
|
||||
InitialDelaySeconds: 15,
|
||||
TimeoutSeconds: 5,
|
||||
FailureThreshold: 1,
|
||||
}
|
||||
pod := livenessSidecarPodSpec(f.Namespace.Name, nil, livenessProbe)
|
||||
|
Loading…
Reference in New Issue
Block a user