Skip to content

Commit

Permalink
chore: add debug output to release workflow (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-mccoy authored Mar 23, 2024
1 parent 510f536 commit 5f96865
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ jobs:
uds run -f tasks/deploy.yaml k3d-standard-bundle --no-progress
uds run -f tasks/test.yaml validate-packages --no-progress
- name: Debug Output
if: ${{ always() }}
run: uds run dump-cluster-info

- name: Publish Standard Package
run: uds run -f tasks/publish.yaml standard-package --set FLAVOR=${{ matrix.flavor }}

Expand Down
17 changes: 1 addition & 16 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,7 @@ jobs:

- name: Debug Output
if: ${{ always() }}
run: |
echo "::group::kubectl get all"
kubectl get all -A
echo "::endgroup::"
echo "::group::kubectl get pv,pvc"
kubectl get pv,pvc -A
echo "::endgroup::"
echo "::group::kubectl get package"
kubectl get package -A
echo "::endgroup::"
echo "::group::kubectl get events"
kubectl get events -A --sort-by='.lastTimestamp'
echo "::endgroup::"
run: uds run dump-cluster-info

- name: Save logs
if: always()
Expand Down
34 changes: 34 additions & 0 deletions tasks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,37 @@ tasks:
- name: lint-fix
actions:
- task: lint:fix

- name: dump-cluster-info
actions:
- description: dump cluster info
cmd: |
echo "\n\n"
echo "##################################################################################################"
echo "### kubectl get all ####"
echo "##################################################################################################\n"
kubectl get all -A
echo "\n\n"
echo "##################################################################################################"
echo "### kubectl get pv,pvc ####"
echo "##################################################################################################\n"
kubectl get pv,pvc -A
echo "\n\n"
echo "##################################################################################################"
echo "### kubectl get package ####"
echo "##################################################################################################\n"
kubectl get package -A
echo "\n\n"
echo "##################################################################################################"
echo "### kubectl get events ####"
echo "##################################################################################################\n"
kubectl get events -A --sort-by='.lastTimestamp'
echo "\n\n"
echo "##################################################################################################"
echo "### kubectl descibe node ####"
echo "##################################################################################################\n"
kubectl describe nodes

0 comments on commit 5f96865

Please sign in to comment.