You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/03/24 11:16:27 UTC

[GitHub] [airflow] sushi30 edited a comment on issue #22485: KubernetesPodOperator matches the task pod and goes into deadlock

sushi30 edited a comment on issue #22485:
URL: https://github.com/apache/airflow/issues/22485#issuecomment-1077514558


   I am able to reproduce this with a minimal configuration helm chart on minikube. The latest apache/airflow image is using version 3.0.2 so you need to create a custom image with the new provider version. This DAG works fine with 3.0.2 and hangs in 3.1.1:
   
   ```python
   from datetime import datetime
   from airflow import DAG
   from airflow.providers.cncf.kubernetes.operators.kubernetes_pod import (
       KubernetesPodOperator,
   )
   
   with DAG(
       dag_id="example", start_date=datetime(2022, 1, 1), schedule_interval="@once"
   ) as dag:
       k = KubernetesPodOperator(
           namespace="airflow",
           name="hello",
           image="debian",
           cmds=["bash", "-cx"],
           arguments=["echo", "10"],
           labels={"foo": "bar"},
           task_id="dry_run_demo",
       )
   ```
   
   ```dockerfile
   # Dockerfile
   FROM apache/airflow
   RUN pip install apache-airflow-providers-cncf-kubernetes==3.1.1
   ```


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org