Reduce apiserver health timeout from 8s to 5s
parent
5e9bb011b7
commit
f82d5c6bb2
|
@ -205,7 +205,7 @@ func apiServerHealthz(hostname string, port int) (state.State, error) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
err = retry.Local(check, 8*time.Second)
|
err = retry.Local(check, 5*time.Second)
|
||||||
return st, err
|
return st, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue