Merge pull request #787 from manojlds/patch-2

Add completion for kubectl
pull/793/head
Nils Winkler 2016-09-26 14:37:36 +08:00 committed by GitHub
commit 287ac89b85
1 changed files with 8 additions and 0 deletions

View File

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