Added better kubectl and helm support for truenas

This commit is contained in:
Gal@Shefet 2022-08-23 11:30:42 -04:00
parent c9a80dc684
commit b31dec0570
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
if ( uname --kernel-release | grep -q truenas ); then
# Completion code is only avialable with `sudo`, the aliases below
# are desined for 'lazy-loading' the completion code, when it's time
# to enter the sudo password.
if [[ -n "$(which-command 'k3s')" ]]; then
alias kubectl=' \
### Lazy load `kubectl` bash-completion \
alias kubectl="sudo k3s kubectl "; \
source <( kubectl completion bash ); \
sudo k3s kubectl '
fi
if [[ -n "$(which-command 'helm')" ]]; then
alias helm=' \
### Lazy load `helm` bash-completion \
alias helm="sudo KUBECONFIG=/etc/rancher/k3s/k3s.yaml helm "; \
source <( helm completion bash ); \
sudo KUBECONFIG=/etc/rancher/k3s/k3s.yaml helm '
fi
fi