25 lines
520 B
YAML
25 lines
520 B
YAML
plugin:
|
|
#get all resources in a namespace using the krew get-all plugin
|
|
get-all-namespace:
|
|
shortCut: g
|
|
confirm: false
|
|
description: get-all
|
|
scopes:
|
|
- namespaces
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "kubectl get-all --context $CONTEXT -n $NAME | less"
|
|
get-all-other:
|
|
shortCut: g
|
|
confirm: false
|
|
description: get-all
|
|
scopes:
|
|
- all
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "kubectl get-all --context $CONTEXT -n $NAMESPACE | less"
|