diff --git a/plugins/helm_values.yml b/plugins/helm_values.yml new file mode 100644 index 00000000..36d8fdb2 --- /dev/null +++ b/plugins/helm_values.yml @@ -0,0 +1,14 @@ +# View user-supplied values when the helm chart was created + +plugin: + helm-values: + shortCut: v + confirm: false + description: Values + scopes: + - helm + command: sh + background: false + args: + - -c + - "helm get values $COL-NAME -n $NAMESPACE --kube-context $CONTEXT | less" diff --git a/plugins/watch_events.yml b/plugins/watch_events.yml new file mode 100644 index 00000000..ffd8b2fc --- /dev/null +++ b/plugins/watch_events.yml @@ -0,0 +1,16 @@ +# watch events on selected resources +# requires linux "watch" command +# change '-n' to adjust refresh time in seconds + +plugin: + watch-events: + shortCut: Shift-E + confirm: false + description: Get Events + scopes: + - all + command: sh + background: false + args: + - -c + - "watch -n 5 kubectl get events --context $CONTEXT --namespace $NAMESPACE --field-selector involvedObject.name=$NAME"