How do I set the default output of all helm to yaml instead of table?
yaml
table
I'm always fighting with the table format (see below).
I want this to be the default. It's much neater - but do I really have to type -o yaml every time?
-o yaml
You can create an alias for your shell, something like
alias hl='helm list -o yaml'
and add it to your ~/.basrc or ~/.zshrc or whichever shell rc file you are using.
After that invoking hl will give you desired result
hl
You can create an alias for your shell, something like
and add it to your ~/.basrc or ~/.zshrc or whichever shell rc file you are using.
After that invoking
hl
will give you desired result