We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f8354 commit ccb85e6Copy full SHA for ccb85e6
.github/workflows/testing-action.yml
@@ -0,0 +1,23 @@
1
+name: Debug Kubernetes Issues
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ namespace:
7
+ description: "Namespace to deploy to"
8
+ required: false
9
+ default: "troubleshooting"
10
11
+jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
18
+ - name: Run Kubernetes Troubleshooting Action
19
+ uses: becloudready/k8s-interview-action@v1
20
+ with:
21
+ kubeconfig: ${{ secrets.KUBECONFIG }}
22
+ namespace: "troubleshooting"
23
+ failure_mode: "oom"
0 commit comments