Skip to content

Commit fa1f7ef

Browse files
committed
raise controller pod probes timeout to 1 minute
1 parent 20ee1c3 commit fa1f7ef

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

rust/operator-binary/src/resource/statefulset.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -693,17 +693,19 @@ pub fn build_controller_rolegroup_statefulset(
693693
port: IntOrString::Int(kafka_security.client_port().into()),
694694
..Default::default()
695695
}),
696-
timeout_seconds: Some(5),
697-
period_seconds: Some(5),
696+
timeout_seconds: Some(10),
697+
period_seconds: Some(10),
698+
failure_threshold: Some(6),
698699
..Probe::default()
699700
})
700701
.readiness_probe(Probe {
701702
tcp_socket: Some(TCPSocketAction {
702703
port: IntOrString::Int(kafka_security.client_port().into()),
703704
..Default::default()
704705
}),
705-
timeout_seconds: Some(5),
706-
period_seconds: Some(5),
706+
timeout_seconds: Some(10),
707+
period_seconds: Some(10),
708+
failure_threshold: Some(6),
707709
..Probe::default()
708710
});
709711

0 commit comments

Comments
 (0)