Skip to content

Commit ccb85e6

Browse files
authored
Create testing-action.yml
1 parent e6f8354 commit ccb85e6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)