From b7a7c3ce542311f90121edcc5f7f977e0a8600f6 Mon Sep 17 00:00:00 2001 From: Dhakshan Date: Fri, 19 Jun 2026 13:41:40 +0000 Subject: [PATCH] Update bootstrap-platform/jenkins/values.yaml --- bootstrap-platform/jenkins/values.yaml | 34 ++++++++++++++++++++------ 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/bootstrap-platform/jenkins/values.yaml b/bootstrap-platform/jenkins/values.yaml index 4d600ef..9a678b9 100644 --- a/bootstrap-platform/jenkins/values.yaml +++ b/bootstrap-platform/jenkins/values.yaml @@ -17,19 +17,37 @@ controller: cpu: 1000m memory: 2Gi + # ✅ IMPORTANT: allow slow Jenkins startup safely + startupProbe: + httpGet: + path: /login + port: http + periodSeconds: 10 + failureThreshold: 120 + timeoutSeconds: 5 + + readinessProbe: + httpGet: + path: /login + port: http + periodSeconds: 10 + failureThreshold: 10 + timeoutSeconds: 5 + + livenessProbe: + httpGet: + path: /login + port: http + periodSeconds: 10 + failureThreshold: 5 + timeoutSeconds: 5 + + # ✅ IMPORTANT: stable plugin install (NO forced latest builds) installPlugins: - kubernetes - workflow-aggregator - git - configuration-as-code - startupProbe: - httpGet: - path: /login - port: http - periodSeconds: 10 - failureThreshold: 60 - timeoutSeconds: 5 - agent: enabled: true \ No newline at end of file