1fanwang commented on issue #70953:
URL: https://github.com/apache/airflow/issues/70953#issuecomment-5186681689

   Verified [Build KubernetesInstallKueueOperator manifest URL after 
rendering](https://github.com/apache/airflow/pull/70335) on `cncf-kubernetes 
10.21.0rc1`. Works as intended.
   
   Airflow 3.3.0, two identical virtualenvs: one with the RC providers, one 
with the previous stable release. Same Dag, same command, run through the real 
task runner. Only the external transport is stubbed, and the stub asserts the 
value that actually reaches it.
   
   A `KubernetesInstallKueueOperator` with a templated version. The stubbed 
fetch prints the URL requested.
   
   ```bash
   # cncf-kubernetes 10.21.0rc1
   AIRFLOW_HOME=$PWD/airflow_home \
   AIRFLOW__CORE__DAGS_FOLDER=$PWD/dags_e2e/rc_70335_kueue_url \
     .venv/bin/airflow dags test rc_70335_kueue_url
   
   # cncf-kubernetes 10.20.0, identical Dag
   AIRFLOW_HOME=$PWD/airflow_home_prev \
   AIRFLOW__CORE__DAGS_FOLDER=$PWD/dags_e2e/rc_70335_kueue_url \
     .venv-prev/bin/airflow dags test rc_70335_kueue_url
   ```
   
   ```
   # cncf-kubernetes 10.21.0rc1
   
FETCHED_URL=https://github.com/kubernetes-sigs/kueue/releases/download/v0.9.1/manifests.yaml
   state=success
   
   # cncf-kubernetes 10.20.0
   FETCHED_URL=https://github.com/kubernetes-sigs/kueue/releases/download/{{ 
params.version }}/manifests.yaml
   state=failed
   ```


-- 
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]

Reply via email to