Skip to content

Commit

Permalink
add debug messages to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrichwilken committed Feb 15, 2024
1 parent d996e68 commit 984ee7e
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/pull-e2e-upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ env:

on:
pull_request:
branches: [ "main" ]
branches: ["main"]
paths-ignore:
- 'docs/**'
- '**.md'
- 'sec-scanners-config.yaml'
- "docs/**"
- "**.md"
- "sec-scanners-config.yaml"

jobs:
e2e-upgrade: # This job tests the upgrade of NATS module from latest image of the main branch to the current commit.
Expand Down Expand Up @@ -74,6 +74,26 @@ jobs:
run: |
make e2e-nats-server
- name: Show all StatefulSets in Namespace kyma-system
if: ${{ always() }}
run: |
kubectl get sts -n kyma-system -o yaml
- name: Show all Deployments in Namespace kyma-system
if: ${{ always() }}
run: |
kubectl get deploy -n kyma-system -o yaml
- name: Show all Pods in Namespace kyma-system
if: ${{ always() }}
run: |
kubectl get po -n kyma-system -o yaml
- name: Show all ConfigMaps in Namespace kyma-system
if: ${{ always() }}
run: |
kubectl get cm -n kyma-system -o yaml
- name: Cleanup NATS CR
run: |
make e2e-cleanup

0 comments on commit 984ee7e

Please sign in to comment.