Update bootstrap-platform/jenkins/values.yaml
This commit is contained in:
parent
72752ccd73
commit
b7a7c3ce54
|
|
@ -17,19 +17,37 @@ controller:
|
||||||
cpu: 1000m
|
cpu: 1000m
|
||||||
memory: 2Gi
|
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:
|
installPlugins:
|
||||||
- kubernetes
|
- kubernetes
|
||||||
- workflow-aggregator
|
- workflow-aggregator
|
||||||
- git
|
- git
|
||||||
- configuration-as-code
|
- configuration-as-code
|
||||||
|
|
||||||
startupProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /login
|
|
||||||
port: http
|
|
||||||
periodSeconds: 10
|
|
||||||
failureThreshold: 60
|
|
||||||
timeoutSeconds: 5
|
|
||||||
|
|
||||||
agent:
|
agent:
|
||||||
enabled: true
|
enabled: true
|
||||||
Loading…
Reference in New Issue