You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i was trying to deploy airflow using helm, with an already existing postgresql db
Relevant Logs
the migration job shows no logs !
Custom Helm Values
# Default airflow repository -- overridden by all the specific images belowdefaultAirflowRepository: apache/airflow# Default airflow tag to deploydefaultAirflowTag: "2.7.1"# Default airflow digest. If specified, it takes precedence over tagdefaultAirflowDigest: ~# Airflow version (Used to make some decisions based on Airflow Version being deployed)airflowVersion: "2.7.1"# Imagesimages:
airflow:
repository: ~tag: ~# Specifying digest takes precedence over tag.digest: ~pullPolicy: IfNotPresent# To avoid images with user code, you can turn this to 'true' and# all the 'run-airflow-migrations' and 'wait-for-airflow-migrations' containers/jobs# will use the images from 'defaultAirflowRepository:defaultAirflowTag' values# to run and wait for DB migrations .useDefaultImageForMigration: false# timeout (in seconds) for airflow-migrations to completemigrationsWaitTimeout: 300pod_template:
# Note that `images.pod_template.repository` and `images.pod_template.tag` parameters# can be overridden in `config.kubernetes` section. So for these parameters to have effect# `config.kubernetes.worker_container_repository` and `config.kubernetes.worker_container_tag`# must be not set .repository: ~tag: ~pullPolicy: IfNotPresentflower:
repository: ~tag: ~pullPolicy: IfNotPresentstatsd:
repository: quay.io/prometheus/statsd-exportertag: v0.26.1pullPolicy: IfNotPresentredis:
repository: redis# Redis is limited to 7.2-bookworm due to licencing change# https://redis.io/blog/redis-adopts-dual-source-available-licensing/tag: 7.2-bookwormpullPolicy: IfNotPresentpgbouncer:
repository: apache/airflowtag: airflow-pgbouncer-2024.01.19-1.21.0pullPolicy: IfNotPresentpgbouncerExporter:
repository: apache/airflowtag: airflow-pgbouncer-exporter-2024.01.19-0.16.0pullPolicy: IfNotPresentgitSync:
repository: registry.k8s.io/git-sync/git-synctag: v4.1.0pullPolicy: IfNotPresent# Select certain nodes for airflow pods.nodeSelector: {}affinity: {}tolerations: []topologySpreadConstraints: []schedulerName: ~data:
# If secret names are provided, use those secrets# These secrets must be created manually, eg:## kind: Secret# apiVersion: v1# metadata:# name: custom-airflow-metadata-secret# type: Opaque# data:# connection: base64_encoded_connection_stringmetadataSecretName: ~# When providing secret names and using the same database for metadata and# result backend, for Airflow < 2.4.0 it is necessary to create a separate# secret for result backend but with a db+ scheme prefix.# For Airflow >= 2.4.0 it is possible to not specify the secret again,# as Airflow will use sql_alchemy_conn with a db+ scheme prefix by default.resultBackendSecretName: ~brokerUrlSecretName: ~# Otherwise pass connection values inmetadataConnection:
user: adeizcspass: 5a53a8b761f0d9ca73c9cac3dad3dc279a3a09a5bff49a3200ee9a9ff2c3protocol: postgresqlhost: adeiz-postgresql.svc.cluster.localport: 5432db: airflowsslmode: disable# resultBackendConnection defaults to the same database as metadataConnectionresultBackendConnection: ~# or, you can use a different database# resultBackendConnection:# user: postgres# pass: postgres# protocol: postgresql# host: ~# port: 5432# db: postgres# sslmode: disable# Note: brokerUrl can only be set during install, not upgradebrokerUrl: ~
The text was updated successfully, but these errors were encountered:
Checks
User-Community Airflow Helm Chart
.Chart Version
1.14.0
Kubernetes Version
Helm Version
Description
i was trying to deploy airflow using helm, with an already existing postgresql db
Relevant Logs
the migration job shows no logs !
Custom Helm Values
The text was updated successfully, but these errors were encountered: