53 lines
963 B
YAML
53 lines
963 B
YAML
controller:
|
|
admin:
|
|
username: admin
|
|
|
|
serviceType: ClusterIP
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: jenkins-auto-ebs
|
|
size: 20Gi
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 500m
|
|
memory: 1Gi
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 2Gi
|
|
|
|
# =========================
|
|
# FIX FOR 503 STARTUP ISSUE
|
|
# =========================
|
|
|
|
# Disable startupProbe (Jenkins returns 503 during boot)
|
|
startupProbe: null
|
|
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /login
|
|
port: http
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 10
|
|
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /login
|
|
port: http
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 5
|
|
|
|
# =========================
|
|
# STABLE PLUGIN SETUP
|
|
# =========================
|
|
installPlugins:
|
|
- kubernetes
|
|
- workflow-aggregator
|
|
- git
|
|
- configuration-as-code
|
|
|
|
agent:
|
|
enabled: true |