From 7bb76b2a816e51de32ba21db2220b6f8f90c780c Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Thu, 7 May 2026 13:13:06 +0200 Subject: [PATCH] Pin ubuntu image in K8s basic_pod.yaml to ubuntu:24.04 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 --- 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 5d79334179d63..017ecfa82e05d 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