diff --git a/.github/actions/debug-output/action.yaml b/.github/actions/debug-output/action.yaml index 94f2713f9..e0fc26536 100644 --- a/.github/actions/debug-output/action.yaml +++ b/.github/actions/debug-output/action.yaml @@ -7,15 +7,18 @@ runs: - name: Print basic debug info for a k8s cluster run: | echo "::group::kubectl get all" - uds zarf tools kubectl get all -A + uds zarf tools kubectl get all -A | tee /tmp/debug-k-get-all.log echo "::endgroup::" echo "::group::kubectl get pv,pvc" - uds zarf tools kubectl get pv,pvc -A + uds zarf tools kubectl get pv,pvc -A | tee /tmp/debug-k-get-pv-pvc.log echo "::endgroup::" echo "::group::kubectl get package" - uds zarf tools kubectl get package -A + uds zarf tools kubectl get package -A | tee /tmp/debug-k-get-package.log echo "::endgroup::" echo "::group::kubectl get events" - uds zarf tools kubectl get events -A --sort-by='.lastTimestamp' + uds zarf tools kubectl get events -A --sort-by='.lastTimestamp' | tee /tmp/debug-k-get-events.log + echo "::endgroup::" + echo "::group::kubectl describe nodes" + uds zarf tools kubectl describe nodes k3d-uds-server-0 | tee /tmp/debug-k-describe-node.log echo "::endgroup::" shell: bash diff --git a/.github/actions/save-logs/action.yaml b/.github/actions/save-logs/action.yaml index 6465d4d3c..0b9079f65 100644 --- a/.github/actions/save-logs/action.yaml +++ b/.github/actions/save-logs/action.yaml @@ -40,5 +40,7 @@ runs: path: | /tmp/zarf-*.log /tmp/uds-*.log + /tmp/maru-*.log + /tmp/debug-*.log /tmp/uds-containerd-logs /tmp/k3d-uds-*.log