mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-05 14:23:56 +01:00
7 lines
198 B
Fish
7 lines
198 B
Fish
|
function kgetall
|
||
|
for i in (kubectl api-resources --verbs=list --namespaced -o name | grep -v "events.events.k8s.io" | grep -v "events" | sort | uniq)
|
||
|
echo -e "\nResource:" $i
|
||
|
kubectl get $i
|
||
|
end
|
||
|
end
|