Add support for helm completion

Signed-off-by: Brian Phillips <bpphillips@gmail.com>
pull/1349/head
Brian Phillips 2019-03-26 10:04:19 -05:00
parent 84d099bee4
commit 918ccd25d6
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# helm (Kubernetes Package Manager) completion
if command -v helm &>/dev/null
then
eval "$(helm completion bash)"
fi