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 920bab5 commit f6383dfCopy full SHA for f6383df
plugins/resource-recommendations.yaml
@@ -11,6 +11,7 @@ plugins:
11
- deployments
12
- daemonsets
13
- statefulsets
14
+ - cronjobs
15
command: bash
16
background: false
17
confirm: false
@@ -25,4 +26,23 @@ plugins:
25
26
if [[ $k = q ]] ; then
27
break
28
fi
29
+ done
30
+ krr-ns:
31
+ shortCut: Shift-K
32
+ description: Get krr
33
+ scopes:
34
+ - namespaces
35
+ command: bash
36
+ background: false
37
+ confirm: false
38
+ args:
39
+ - -c
40
+ - |
41
+ krr simple --cluster $CONTEXT -n $RESOURCE_NAME
42
+ echo "Press 'q' to exit"
43
+ while : ; do
44
+ read -n 1 k <&1
45
+ if [[ $k = q ]] ; then
46
+ break
47
+ fi
48
done
0 commit comments