From f89dac2d433b65716463bffb3138dfa56da7c315 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 11 Sep 2025 13:45:19 -0600 Subject: [PATCH] Add node on kind binary in runner image --- .github/workflows/test-deploy-k8s.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-deploy-k8s.yml b/.github/workflows/test-deploy-k8s.yml index 0f8ea58..f1be939 100644 --- a/.github/workflows/test-deploy-k8s.yml +++ b/.github/workflows/test-deploy-k8s.yml @@ -8,6 +8,10 @@ on: branches: - '*' +# Note: this test depends on having kind installed in the runner environment. +# It turns out that kind is pre-installed in the ubuntu-latest. It may be worthwhile +# checking which version is installed in the event that unexplained test failures occur. + jobs: test: name: "Run k8s deploy test suite" @@ -21,6 +25,8 @@ jobs: python-version: '3.12' - name: "Print Python version" run: python3 --version + - name: "Print kind version" + run: kind version - name: "Install shiv" run: pip install shiv - name: "Generate build version file"