We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98109b0 commit 4c35062Copy full SHA for 4c35062
docs/TroubleShooting.md
@@ -6,4 +6,15 @@ Delete all evicted pods (make sure to update BOTH namespaces):
6
7
```
8
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
20
0 commit comments