Update bootstrap-platform/jenkins/values.yaml

This commit is contained in:
Dhakshan 2026-06-19 13:44:36 +00:00
parent b7a7c3ce54
commit 70fd734b67
1 changed files with 15 additions and 11 deletions

View File

@ -17,32 +17,36 @@ controller:
cpu: 1000m cpu: 1000m
memory: 2Gi memory: 2Gi
# ✅ IMPORTANT: allow slow Jenkins startup safely # =========================
startupProbe: # PROBES (FIX FOR YOUR ISSUE)
httpGet: # =========================
path: /login
port: http
periodSeconds: 10
failureThreshold: 120
timeoutSeconds: 5
# Disable startup probe (prevents false 503 failures during boot)
startupProbe: null
# Jenkins readiness check
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /login path: /login
port: http port: http
periodSeconds: 10 periodSeconds: 10
failureThreshold: 10
timeoutSeconds: 5 timeoutSeconds: 5
failureThreshold: 10
successThreshold: 1
# Jenkins liveness check
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /login path: /login
port: http port: http
periodSeconds: 10 periodSeconds: 10
failureThreshold: 5
timeoutSeconds: 5 timeoutSeconds: 5
failureThreshold: 5
successThreshold: 1
# ✅ IMPORTANT: stable plugin install (NO forced latest builds) # =========================
# PLUGINS (STABLE SETUP)
# =========================
installPlugins: installPlugins:
- kubernetes - kubernetes
- workflow-aggregator - workflow-aggregator