GitHub user aongxsss added a comment to the discussion: Airflow 3.0.6 Kubernetes Executor Fails on First "ErrImagePull"
Try checking `airflow-config -> pod_template_file.yaml.` If `imagePullPolicy` is set to `Always` it means every time Airflow spawns a pod, it will always pull the image. This isn’t necessary, and if you’re using GitLab, it might reject the image pull and cause an `ErrImagePull`. Try changing it to `imagePullPolicy: IfNotPresent` Normally, we only set it to `Always` when the code is updated and we need the pod to use the new image version. I’m not sure if it will help, but hopefully it’s useful. GitHub link: https://github.com/apache/airflow/discussions/56049#discussioncomment-14548143 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
