jerome-aosis commented on issue #23895: URL: https://github.com/apache/airflow/issues/23895#issuecomment-1142337976
Thanks for your answer. I use the same dag tag for learning purpose and it's not for production environment. I agree with you, pullPolicy is not working like that in Kubernetes. But in that case, it seems it is a [documentation issue](https://airflow.apache.org/docs/helm-chart/stable/manage-dags-files.html). The documentation says ``` If you are deploying an image with a constant tag, you need to make sure that the image is pulled every time. ``` ```shell helm upgrade --install airflow apache-airflow/airflow \ --set images.airflow.repository=my-company/airflow \ --set images.airflow.tag=8a0da78 \ --set images.airflow.pullPolicy=Always ``` Documentation seems to say that by adding `--set images.airflow.pullPolicy=Always` the DAG with a constant tag will be refreshed. This is not the case :-) -- 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]
