Update dependencies (#8455)

* Update more dependencies

* Fix e2e test for new ProbeHandler
This commit is contained in:
Ricardo Katz 2022-04-10 12:58:05 -03:00 committed by GitHub
parent d46da48005
commit 5737f16663
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 118 additions and 236 deletions

View file

@ -227,7 +227,7 @@ func (f *Framework) NewGRPCBinDeployment() {
PeriodSeconds: 1,
SuccessThreshold: 1,
TimeoutSeconds: 1,
Handler: corev1.Handler{
ProbeHandler: corev1.ProbeHandler{
TCPSocket: &corev1.TCPSocketAction{
Port: intstr.FromInt(9000),
},
@ -318,7 +318,7 @@ func newDeployment(name, namespace, image string, port int32, replicas int32, co
SuccessThreshold: 1,
TimeoutSeconds: 2,
FailureThreshold: 6,
Handler: corev1.Handler{
ProbeHandler: corev1.ProbeHandler{
HTTPGet: &corev1.HTTPGetAction{
Port: intstr.FromString("http"),
Path: "/",