This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 67f0c5a1cdb Pin ubuntu image in K8s basic_pod.yaml to ubuntu:24.04
(#66527) (#66689)
67f0c5a1cdb is described below
commit 67f0c5a1cdbc4a564a7b1e2926f6a12a99fc73d7
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon May 11 06:17:27 2026 +0200
Pin ubuntu image in K8s basic_pod.yaml to ubuntu:24.04 (#66527) (#66689)
PR #66423 pinned bare ubuntu refs across the kubernetes-tests Python
sources to ubuntu:24.04 (which is in the pre-pulled image set the K8s
test infra now caches), but missed the basic_pod.yaml pod-template
file used by test_pod_template_file_system. The bare ubuntu image
still resolves to docker.io/library/ubuntu:latest at pod-pull time
and hits Docker Hub anonymous-rate-limit timeouts on scheduled
runs.
Pinning here matches the pattern from #66423 and lands the YAML in
the pre-pulled cache list.
Failure observed in
https://github.com/apache/airflow/actions/runs/25472151635/job/74749280411
(cherry picked from commit b75cdfe743dfccc4832e0204dbece59cbd44e75e)
---
kubernetes-tests/tests/kubernetes_tests/basic_pod.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kubernetes-tests/tests/kubernetes_tests/basic_pod.yaml
b/kubernetes-tests/tests/kubernetes_tests/basic_pod.yaml
index 5d79334179d..017ecfa82e0 100644
--- a/kubernetes-tests/tests/kubernetes_tests/basic_pod.yaml
+++ b/kubernetes-tests/tests/kubernetes_tests/basic_pod.yaml
@@ -23,7 +23,7 @@ metadata:
spec:
containers:
- name: base
- image: ubuntu
+ image: ubuntu:24.04
command: ["/bin/bash"]
args: ["-c", 'echo {\"hello\" : \"world\"} | cat >
/airflow/xcom/return.json']
restartPolicy: Never