Skip to content

Commit 4c35062

Browse files
committed
More troubleshooting
1 parent 98109b0 commit 4c35062

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/TroubleShooting.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,15 @@ Delete all evicted pods (make sure to update BOTH namespaces):
66

77
```
88
kubectl get pod -n apps--testsmoke| grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n apps--testsmoke`
9+
```
10+
11+
Delete all Completed pods
12+
```
13+
kubectl delete pod -n apps--testsmoke $(kubectl get pods -n apps--testsmoke | grep Completed | awk '{print $1}')
14+
```
15+
16+
## List all resources setup for a namespace
17+
18+
```
19+
kubectl api-resources -n apps--testsmoke
920
```

0 commit comments

Comments
 (0)