File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
rust/operator-binary/src/resource Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments