Skip to content

Commit

Permalink
tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
garethahealy committed Dec 7, 2023
1 parent 4282435 commit e1d53cd
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/gatekeeper-k8s-integrationtests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,29 @@ jobs:
- name: Get pods and events if tests failed
if: ${{ failure() }}
run: |
echo ""
echo "nodes:"
echo "## nodes:"
kubectl get nodes
echo ""
echo "namespaces:"
echo "## namespaces:"
kubectl get namespaces
echo ""
echo "pods:"
echo "## pods:"
kubectl get pods --all-namespaces
echo ""
echo "events:"
echo "## events:"
kubectl get events --all-namespaces
echo ""
echo "api-versions:"
echo "## api-versions:"
kubectl api-versions
echo ""
echo "describe deployment/gatekeeper-audit:"
echo "## describe deployment/gatekeeper-audit:"
kubectl describe deployment/gatekeeper-audit -n gatekeeper-system
echo ""
echo "describe deployment/gatekeeper-controller-manager:"
kubectl describe deployment/gatekeeper-controller-manager -n gatekeeper-system
echo "## logs deployment/gatekeeper-audit:"
kubectl logs deployment/gatekeeper-audit -n gatekeeper-system
echo "## describe deployment/gatekeeper-controller-manager:"
kubectl describe deployment/gatekeeper-controller-manager -n gatekeeper-system
echo "## logs deployment/gatekeeper-controller-manager:"
kubectl logs deployment/gatekeeper-controller-manager -n gatekeeper-system

0 comments on commit e1d53cd

Please sign in to comment.