72 lines
2.3 KiB
YAML
72 lines
2.3 KiB
YAML
# $HOME/.k9s/plugin.yml
|
|
# move selected line to chosen resource in K9s, then:
|
|
# Shift-T (with confirmation) to toggle helm releases or kustomizations suspend and resume
|
|
# Shift-R (no confirmation) to reconcile a git source or a helm release or a kustomization
|
|
plugin:
|
|
toggle-helmrelease:
|
|
shortCut: Shift-T
|
|
confirm: true
|
|
scopes:
|
|
- helmreleases
|
|
description: Toggle to suspend or resume a HelmRelease
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT $([ $(kubectl --context $CONTEXT get helmreleases -n $NAMESPACE $NAME -o=custom-columns=TYPE:.spec.suspend | tail -1) = \"true\" ] && echo \"resume\" || echo \"suspend\") helmrelease -n $NAMESPACE $NAME | less"
|
|
toggle-kustomization:
|
|
shortCut: Shift-T
|
|
confirm: true
|
|
scopes:
|
|
- kustomizations
|
|
description: Toggle to suspend or resume a Kustomization
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT $([ $(kubectl --context $CONTEXT get kustomizations -n $NAMESPACE $NAME -o=custom-columns=TYPE:.spec.suspend | tail -1) = \"true\" ] && echo \"resume\" || echo \"suspend\") kustomization -n $NAMESPACE $NAME | less"
|
|
reconcile-git:
|
|
shortCut: Shift-R
|
|
confirm: false
|
|
description: Flux reconcile
|
|
scopes:
|
|
- gitrepositories
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT reconcile source git -n $NAMESPACE $NAME | less"
|
|
reconcile-hr:
|
|
shortCut: Shift-R
|
|
confirm: false
|
|
description: Flux reconcile
|
|
scopes:
|
|
- helmreleases
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT reconcile helmrelease -n $NAMESPACE $NAME | less"
|
|
reconcile-ks:
|
|
shortCut: Shift-R
|
|
confirm: false
|
|
description: Flux reconcile
|
|
scopes:
|
|
- kustomizations
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT reconcile kustomization -n $NAMESPACE $NAME | less"
|
|
trace:
|
|
shortCut: Shift-A
|
|
confirm: false
|
|
description: Flux trace
|
|
scopes:
|
|
- all
|
|
command: sh
|
|
background: false
|
|
args:
|
|
- -c
|
|
- "flux --context $CONTEXT trace $NAME --kind `echo $RESOURCE_NAME | sed -E 's/(s|es)$//g'` --api-version $RESOURCE_GROUP/$RESOURCE_VERSION --namespace $NAMESPACE $NAME | less"
|