Skip to content

Commit

Permalink
drop extra middleware logs from k8s action (#1382)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul S. Schweigert <[email protected]>

These can be grabbed from the artifact generated by the kind-diag
action, so no need to duplicate them
  • Loading branch information
psschwei authored Jun 20, 2024
1 parent 59d959b commit e8f43f5
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/kubernetes-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,6 @@ jobs:
# experimental tests
cd /home/runner/work/qiskit-serverless/qiskit-serverless/tests/experimental
for f in *.py; do echo "TEST: $f" && python "$f"; done
- name: Echo gateway logs
if: ${{ failure() }}
run: |
GATEWAY=$(kubectl get pods --no-headers -o custom-columns=":metadata.name" | grep gateway)
kubectl logs $GATEWAY
- name: Echo kuberay logs
if: ${{ failure() }}
run: |
KUBERAY=$(kubectl get pods --no-headers -o custom-columns=":metadata.name" | grep kuberay)
kubectl logs $KUBERAY
- name: Echo scheduler logs
if: ${{ failure() }}
run: |
SCHEDULER=$(kubectl get pods --no-headers -o custom-columns=":metadata.name" | grep scheduler)
kubectl logs $SCHEDULER
- uses: chainguard-dev/actions/kind-diag@main
# Only upload logs on failure.
if: ${{ failure() }}
Expand Down

0 comments on commit e8f43f5

Please sign in to comment.