This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new a9a77c2cb3 Rename the "system" tests where we run Airflow in K8S
(#35238)
a9a77c2cb3 is described below
commit a9a77c2cb3f3411a20684ee059056414428a2af6
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Oct 28 20:12:59 2023 +0200
Rename the "system" tests where we run Airflow in K8S (#35238)
Not to confuse the tests with Helm tests (where we just process
Helm chart and verify if rendered templates look good) the
Kubernetes test suite actually create K8S clusters (with Kind),
build custom airflow Images and deploy them to those K8S cluster
(all using latest sources of airflow, images and charts) and run
several end-2-end tests + run Kubernetes Pod Operators with the
real K8S clusters.
Therefore "K8S System" name is a bit better than "Helm" and also
allows to distinguish them from "Helm Unit" tests.
---
.github/workflows/ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8f5b5a4e75..6ae52a778b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1639,7 +1639,7 @@ jobs:
tests-kubernetes:
timeout-minutes: 240
name: "\
- Helm: ${{matrix.executor}} - ${{matrix.use-standard-naming}} - \
+ K8S System:${{matrix.executor}} - ${{matrix.use-standard-naming}} - \
${{needs.build-info.outputs.kubernetes-versions-list-as-string}}"
runs-on: ${{fromJSON(needs.build-info.outputs.runs-on)}}
needs: [build-info, wait-for-prod-images]