Skip to content

Commit

Permalink
fixup! k8s: allow to build containers with a default HTTP readiness p…
Browse files Browse the repository at this point in the history
…robe
  • Loading branch information
roobre committed Sep 14, 2023
1 parent 00e3577 commit a5a31ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/testutils/kubernetes/builders/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ func (b *containerBuilder) WithHTTPReadinessProbe() ContainerBuilder {
Port: intstr.FromString(b.ports[0].Name),
},
},
TimeoutSeconds: 3,
TimeoutSeconds: 1,
PeriodSeconds: 1,
SuccessThreshold: 1,
FailureThreshold: 30,
FailureThreshold: 1,
}

return b
Expand Down

0 comments on commit a5a31ae

Please sign in to comment.