Skip to content

Commit

Permalink
gimme the logs part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Kruggel committed Jun 5, 2024
1 parent ce8acd7 commit 924af52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run-test:
name: ${{ matrix.type }} ${{ matrix.flavor }}
runs-on: ubuntu-latest
timeout-minutes: 25
timeout-minutes: 10
strategy:
matrix:
flavor: [registry1]
Expand Down Expand Up @@ -67,25 +67,25 @@ jobs:
suffix: ${{ matrix.type }}-${{ matrix.flavor }}-${{ github.run_id }}-${{ github.run_attempt }}

- name: Print cluster info
if: failure()
if: always()
shell: bash -e -o pipefail {0}
run: |
kubectl get nodes -o wide
- name: Print pod info
if: failure()
if: always()
shell: bash -e -o pipefail {0}
run: |
kubectl get pods -A -o wide
- name: Print service info
if: failure()
if: always()
shell: bash -e -o pipefail {0}
run: |
kubectl get svc -A -o wide
- name: Print events
if: failure()
if: always()
shell: bash -e -o pipefail {0}
run: |
kubectl get events -A -o wide

0 comments on commit 924af52

Please sign in to comment.