From 277a038f1b3c8664d72f1e64bf1d3338046f837b Mon Sep 17 00:00:00 2001 From: Valeriy Svydenko Date: Tue, 21 Feb 2023 17:24:03 +0200 Subject: [PATCH] chore: increase the number of threshold for plugin reg to 90 (#1623) Signed-off-by: Valerii Svydenko --- pkg/deploy/pluginregistry/pluginregistry_deployment.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/deploy/pluginregistry/pluginregistry_deployment.go b/pkg/deploy/pluginregistry/pluginregistry_deployment.go index 9f3f0353d..d7aeaeb38 100644 --- a/pkg/deploy/pluginregistry/pluginregistry_deployment.go +++ b/pkg/deploy/pluginregistry/pluginregistry_deployment.go @@ -58,6 +58,7 @@ func (p *PluginRegistryReconciler) getPluginRegistryDeploymentSpec(ctx *chetypes if ctx.CheCluster.IsOpenVSXURLEmpty() { // Add time to start embedded VSX registry deployment.Spec.Template.Spec.Containers[0].LivenessProbe.InitialDelaySeconds = 300 + deployment.Spec.Template.Spec.Containers[0].ReadinessProbe.FailureThreshold = 90 } deploy.EnsurePodSecurityStandards(deployment, constants.DefaultSecurityContextRunAsUser, constants.DefaultSecurityContextFsGroup)