Skip to content

Commit

Permalink
spit cluster status after test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Aug 30, 2023
1 parent f509ee9 commit a7caf84
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/helm-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
--values helm/${{ matrix.name }}/${{ matrix.values }} \
--values test/enterprise-integration-test-values.yaml
- name: Spit cluster status
- name: Spit cluster status after install
if: always()
run: |
helm ls --all-namespaces
Expand All @@ -154,6 +154,7 @@ jobs:
- name: run Postman tests
uses: matt-ball/newman-action@v1.0.4
id: newman
with:
globalVar: >-
[
Expand All @@ -167,3 +168,10 @@ jobs:
}
]
collection: test/postman/helm/acs-test-helm-collection.json

- name: Spit cluster status after tests
if: steps.newman.outcome != 'skipped'
run: |
helm ls --all-namespaces
kubectl get all --all-namespaces
kubectl describe pod

0 comments on commit a7caf84

Please sign in to comment.