mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
styleguide
This commit is contained in:
parent
8350fcbf92
commit
a4a69dbcd2
1 changed files with 11 additions and 1 deletions
|
@ -55,7 +55,17 @@ alias kgswide='kgs -o wide'
|
||||||
alias kes='kubectl edit svc'
|
alias kes='kubectl edit svc'
|
||||||
alias kds='kubectl describe svc'
|
alias kds='kubectl describe svc'
|
||||||
alias kdels='kubectl delete svc'
|
alias kdels='kubectl delete svc'
|
||||||
alias kdecs='_check_jq(){ if [ $(jq --version) != "jq-1.6" ]; then echo "kdecs requires jq-1.6 to use the base64d format"; fi; unset -f _check_jq}; _check_jq; _kdecs(){kubectl get secret "$@" -o json | jq ".data | map_values(. | @base64d )"; unset -f _kdecs}; _kdecs'
|
alias kdecs='
|
||||||
|
_kdecs() {
|
||||||
|
if [ $(jq --version) != "jq-1.6" ]; then
|
||||||
|
echo "kdecs requires jq-1.6 to use the base64d format";
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
kubectl get secret "$@" -o json | jq ".data | map_values(. | @base64d )";
|
||||||
|
unset -f _kdecs
|
||||||
|
return 0
|
||||||
|
};
|
||||||
|
_kdecs'
|
||||||
|
|
||||||
# Ingress management
|
# Ingress management
|
||||||
alias kgi='kubectl get ingress'
|
alias kgi='kubectl get ingress'
|
||||||
|
|
Loading…
Reference in a new issue