This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git


The following commit(s) were added to refs/heads/main by this push:
     new 961a4f4  CI: list cluster resources after deployment (#347)
961a4f4 is described below

commit 961a4f499ceb0f16d37a9a5d85dd3d20ccc5de40
Author: jekader <[email protected]>
AuthorDate: Thu Aug 14 11:31:32 2025 +0200

    CI: list cluster resources after deployment (#347)
---
 .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 b5b360c..fc2ea27 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

Reply via email to