Fix airflow
This commit is contained in:
parent
6a60635ccb
commit
f1f3bc7f17
@ -46,6 +46,7 @@ db:
|
|||||||
user: airflow
|
user: airflow
|
||||||
pass: airflow123
|
pass: airflow123
|
||||||
dbName: airflow
|
dbName: airflow
|
||||||
|
sslMode: disable
|
||||||
|
|
||||||
# Migration Job Configuration - allows migrations to complete
|
# Migration Job Configuration - allows migrations to complete
|
||||||
migrationJob:
|
migrationJob:
|
||||||
@ -54,6 +55,15 @@ migrationJob:
|
|||||||
jobAnnotations: {}
|
jobAnnotations: {}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
workload: general
|
workload: general
|
||||||
|
# Extended timeout for database migrations
|
||||||
|
backoffLimit: 5
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 1024Mi
|
||||||
|
|
||||||
# Redis not needed with KubernetesExecutor
|
# Redis not needed with KubernetesExecutor
|
||||||
redis:
|
redis:
|
||||||
@ -65,11 +75,59 @@ airflowHome: /opt/airflow
|
|||||||
# Default resources for Airflow pods
|
# Default resources for Airflow pods
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 100m
|
cpu: 250m
|
||||||
memory: 128Mi
|
memory: 256Mi
|
||||||
limits:
|
limits:
|
||||||
cpu: 500m
|
cpu: 1000m
|
||||||
memory: 512Mi
|
memory: 1024Mi
|
||||||
|
|
||||||
|
# DAG Processor Configuration
|
||||||
|
dagProcessor:
|
||||||
|
enabled: true
|
||||||
|
replicas: 1
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 1024Mi
|
||||||
|
nodeSelector:
|
||||||
|
workload: general
|
||||||
|
# Extended progress deadline for DAG processor initialization
|
||||||
|
strategy:
|
||||||
|
rollingUpdate:
|
||||||
|
maxSurge: 1
|
||||||
|
maxUnavailable: 0
|
||||||
|
|
||||||
|
# Deployment progress deadline - increased from default 10m to 30m
|
||||||
|
deploymentProgressDeadlineSeconds: 1800
|
||||||
|
|
||||||
|
# Scheduler Configuration
|
||||||
|
scheduler:
|
||||||
|
replicas: 1
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 1024Mi
|
||||||
|
nodeSelector:
|
||||||
|
workload: general
|
||||||
|
|
||||||
|
# WebServer Configuration
|
||||||
|
webserver:
|
||||||
|
replicas: 1
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 1024Mi
|
||||||
|
nodeSelector:
|
||||||
|
workload: general
|
||||||
|
|
||||||
# Statsd exporter for metrics
|
# Statsd exporter for metrics
|
||||||
statsd:
|
statsd:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user