gen16k edited a comment on issue #15340: URL: https://github.com/apache/airflow/issues/15340#issuecomment-819236137
I faced this problem some days ago. However, I tried install airflow using scripts shown below today and it seems working . ```bash #!/bin/bash -x rm -rf airflow git clone https://github.com/apache/airflow.git cd airflow/chart helm dependency update helm install airflow . -n airflow ``` - results ``` $ kubectl get pod NAME READY STATUS RESTARTS AGE airflow-postgresql-0 1/1 Running 0 88s airflow-scheduler-db9d85f4d-5nx6j 2/2 Running 0 88s airflow-statsd-5556dc96bc-c24f5 1/1 Running 0 88s airflow-webserver-f4f4cb77f-xwgcn 1/1 Running 0 88s ``` - Logs of wait-for-airflow-maigrations container ``` (⎈ |fuji-k8s:airflow)❯ k logs -f airflow-scheduler-db9d85f4d-5nx6j wait-for-airflow-migrations DB_BACKEND=postgresql DB_HOST=airflow-postgresql.airflow.svc.cluster.local DB_PORT=5432 ........ [2021-04-14 05:16:38,136] {migration.py:155} INFO - Context impl PostgresqlImpl. [2021-04-14 05:16:38,137] {migration.py:162} INFO - Will assume transactional DDL. [2021-04-14 05:16:42,390] {opentelemetry_tracing.py:29} INFO - This service is instrumented using OpenTelemetry. OpenTelemetry could not be imported; please add opentelemetry-api and opentelemetry-instrumentation packages in order to get BigQuery Tracing data. [2021-04-14 05:16:44,341] {<string>:35} INFO - Waiting for migrations... 1 second(s) [2021-04-14 05:16:45,348] {<string>:35} INFO - Waiting for migrations... 2 second(s) [2021-04-14 05:16:46,351] {<string>:35} INFO - Waiting for migrations... 3 second(s) [2021-04-14 05:16:47,355] {<string>:35} INFO - Waiting for migrations... 4 second(s) [2021-04-14 05:16:48,367] {<string>:35} INFO - Waiting for migrations... 5 second(s) [2021-04-14 05:16:49,371] {<string>:35} INFO - Waiting for migrations... 6 second(s) [2021-04-14 05:16:50,375] {<string>:35} INFO - Waiting for migrations... 7 second(s) [2021-04-14 05:16:51,380] {<string>:35} INFO - Waiting for migrations... 8 second(s) ``` - My environemnt - OS: ubuntu 20.04 - Kuberentes: v1.20.2 - on-premise server - cpu: intel xeon - Apache Airflow version: master git - head commit id: https://github.com/apache/airflow/commit/70c74c1f6867a2f6cdd2f892a40f43aea858572b -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
