attempt to add airflow ini 3
This commit is contained in:
+32
-20
@@ -11,26 +11,26 @@ env:
|
||||
|
||||
# using external postgres and not the subchart
|
||||
postgresql:
|
||||
enabled: false;
|
||||
enabled: false
|
||||
|
||||
data:
|
||||
metadataConnection:
|
||||
user: postgres;
|
||||
pass: mypassword;
|
||||
protocol: postgresql;
|
||||
host: postgresql-primary.ai.svc.cluster.local;
|
||||
port: 5432;
|
||||
db: airflow; # better to keep airflow separate from other apps
|
||||
sslmode: disable;
|
||||
user: postgres
|
||||
pass: mypassword
|
||||
protocol: postgresql
|
||||
host: postgresql-primary.ai.svc.cluster.local
|
||||
port: 5432
|
||||
db: airflow # better to keep airflow separate from other apps
|
||||
sslmode: disable
|
||||
|
||||
# enable pgbouncer and sync with extraIni
|
||||
pgbouncer:
|
||||
enabled: true;
|
||||
enabled: true
|
||||
# official default is scram-sha-256, but bitnami uses md5 so...
|
||||
auth_type: md5;
|
||||
maxClientConn: 200;
|
||||
metadataPoolSize: 20; # server connections to metadata db
|
||||
resultBackendPoolSize: 5;
|
||||
auth_type: md5
|
||||
maxClientConn: 200
|
||||
metadataPoolSize: 20 # server connections to metadata db
|
||||
resultBackendPoolSize: 5
|
||||
# general pgbouncer section stuffs
|
||||
extraIni: |
|
||||
pool_mode = transaction
|
||||
@@ -39,7 +39,7 @@ pgbouncer:
|
||||
ignore_startup_parameters = extra_float_digits
|
||||
server_tls_sslmode = prefer
|
||||
metricsExporterSidecar:
|
||||
enabled: true;
|
||||
enabled: true
|
||||
|
||||
logs:
|
||||
persistence:
|
||||
@@ -50,8 +50,12 @@ allowPodLaunching: true
|
||||
|
||||
scheduler:
|
||||
resources:
|
||||
requests: { cpu: "200m", memory: "512Mi" }
|
||||
limits: { cpu: "1", memory: "1Gi" }
|
||||
requests:
|
||||
cpu: "200m"
|
||||
memory: "512Mi"
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: "1Gi"
|
||||
|
||||
webserver:
|
||||
webserverSecretKeySecretName: airflow-webserver-secret
|
||||
@@ -59,13 +63,21 @@ webserver:
|
||||
type: NodePort
|
||||
nodePort: 30082 # 30000–32767
|
||||
resources:
|
||||
requests: { cpu: "100m", memory: "256Mi" }
|
||||
limits: { cpu: "500m", memory: "512Mi" }
|
||||
requests:
|
||||
cpu: "100m"
|
||||
memory: "256Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "512Mi"
|
||||
|
||||
triggerer:
|
||||
resources:
|
||||
requests: { cpu: "50m", memory: "128Mi" }
|
||||
limits: { cpu: "200m", memory: "256Mi" }
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "128Mi"
|
||||
limits:
|
||||
cpu: "200m"
|
||||
memory: "256Mi"
|
||||
|
||||
# bc using nodeport
|
||||
ingress:
|
||||
|
||||
Reference in New Issue
Block a user