This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name RVRB Relayout | |
| // @namespace https://app.rvrb.one/ | |
| // @version 0.2 | |
| // @description RVRB relayout | |
| // @author You | |
| // @match https://app.rvrb.one/* | |
| // @icon https://app.rvrb.one/favicon-32x32.png | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function kdesc () | |
| { | |
| local cmd_args="${@:1:$#-1}" | |
| local pod_prefix="${!#}" | |
| local item_name=$(kubectl get $cmd_args | grep -P "^$pod_prefix"| awk '{ print $1 }') | |
| kubectl describe $cmd_args $item_name | |
| } | |
| function klog () |
OlderNewer