Skip to content

Commit cb39c3d

Browse files
[Release] Add print statements to print all pods after patching (#368)
Quick improvement to help debug when patching.
1 parent 346a169 commit cb39c3d

File tree

1 file changed

+7
-0
lines changed
  • .github/workflows/actions/patch_image_and_check_diff

1 file changed

+7
-0
lines changed

.github/workflows/actions/patch_image_and_check_diff/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,3 +262,10 @@ runs:
262262
echo "Operator image did not change"
263263
exit 1
264264
fi
265+
266+
- name: List all pods once done
267+
if: always()
268+
shell: bash
269+
run: |
270+
echo "Running kubectl get pods -A"
271+
kubectl get pods -A

0 commit comments

Comments
 (0)