zambien commented on issue #16176: URL: https://github.com/apache/airflow/issues/16176#issuecomment-963084733
@kaxil @Dr-Denzy please re-open this issue as multiple people are reporting it. I am able to recreate it intermittently myself. You can follow the notes here: https://github.com/zambien/tf-eks-airflow/blob/tf_eks_extended/notes.md # deploy airflow on k8s using helm without packaged db To keep everything simple we use the default namespace Create the cluster and set it in kubectl ``` kind create cluster --name airflow --config terraform/kind/kind-config.yaml kubectl cluster-info --context kind-airflow ``` Get your charts ``` helm repo add apache-airflow https://airflow.apache.org helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update ``` Run postgres ```bash helm install db \ --set postgresqlPassword=secretpassword,postgresqlDatabase=airflow \ bitnami/postgresql ``` Run airflow without the included db: ```bash helm install airflow apache-airflow/airflow --debug \ -f terraform/kind/airflow-values.yaml \ --set 'env[0].name=AIRFLOW__CORE__LOAD_EXAMPLES,env[0].value=True' ``` Sometimes this works, other times it does not. It seems that the catalyst may be the separate database. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
