From 1f4d4f50f8d7e9facd1bd7a4c587c79a76b8e704 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 10 Jan 2024 11:47:19 +0100 Subject: [PATCH] ci: remove unnecessary steps unlabeling nodes in kind workflow The nodes are no longer labeled in the kind workflow since commit e1b543279e1c ("kind: Configure external targets inside the cluster") so they also don't need to be unlabeled on cleanup. Signed-off-by: Tobias Klauser --- .github/workflows/kind.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index 77d3217190..f44a76b6cb 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -184,13 +184,6 @@ jobs: cilium sysdump --output-filename cilium-sysdump-out --hubble-flows-count 10000 shell: bash {0} # Disable default fail-fast behaviour so that all commands run independently - - name: Unlabel nodes - run: | - IFS=',' read -ra nodes <<< "$NODES_WITHOUT_CILIUM" - for node in "${nodes[@]}"; do - kubectl label nodes "${node}" cilium.io/no-schedule- - done - - name: Upload sysdump if: ${{ !success() }} uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0