From 2f8ca26aaa892741f714b18f24d326eadab3582d Mon Sep 17 00:00:00 2001 From: Sunjay Bhatia Date: Fri, 19 Jan 2024 15:51:20 -0500 Subject: [PATCH] remove from provisioner generated deployment as well Signed-off-by: Sunjay Bhatia --- internal/provisioner/objects/deployment/deployment.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/internal/provisioner/objects/deployment/deployment.go b/internal/provisioner/objects/deployment/deployment.go index 8a14230aa04..81b5d2234cb 100644 --- a/internal/provisioner/objects/deployment/deployment.go +++ b/internal/provisioner/objects/deployment/deployment.go @@ -176,11 +176,10 @@ func DesiredDeployment(contour *model.Contour, image string) *appsv1.Deployment }, }, }, - TimeoutSeconds: int32(1), - InitialDelaySeconds: int32(15), - PeriodSeconds: int32(10), - SuccessThreshold: int32(1), - FailureThreshold: int32(3), + TimeoutSeconds: int32(1), + PeriodSeconds: int32(10), + SuccessThreshold: int32(1), + FailureThreshold: int32(3), }, TerminationMessagePath: "/dev/termination-log", TerminationMessagePolicy: corev1.TerminationMessageReadFile,