From 45cd64402c724a04d7ae4159e18cf37541b1a8b9 Mon Sep 17 00:00:00 2001 From: Jeka Der Date: Mon, 11 Aug 2025 17:26:32 +0200 Subject: [PATCH] CI: list cluster resources after deployment --- .github/workflows/deploy-test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index b5b360c9..fc2ea272 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -68,8 +68,6 @@ jobs: --set mysql.useExternal=true \ --set mysql.externalServer=mysql \ --set lake.encryptionSecret.secret=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | head -n 1) - kubectl get pods -o wide - kubectl get services -o wide - name: Helm install devlake if: matrix.database_type == 'mysql-builtin' @@ -82,8 +80,16 @@ jobs: --set service.uiPort=30000 \ --set mysql.image.tag=8-debian \ --set lake.encryptionSecret.secret=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | head -n 1) + + - name: List cluster resources + if: ${{ always() }} + run: | kubectl get pods -o wide kubectl get services -o wide + kubectl get deployments -o wide + kubectl get cm + kubectl get secrets + kubectl get pvc # TODO: using some e2e test code to replace it - name: Curl with endpoints