You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
215 B
Cheetah
12 lines
215 B
Cheetah
2 years ago
|
{{ if lookPath "kubectl" -}}
|
||
4 years ago
|
# shellcheck disable=SC2148,SC1090
|
||
4 years ago
|
|
||
|
autoload -U +X compinit && compinit
|
||
4 years ago
|
|
||
|
if command -v kubectl > /dev/null 2>&1; then
|
||
|
source <(kubectl completion zsh)
|
||
|
fi
|
||
|
|
||
|
# vim: ft=bash
|
||
2 years ago
|
{{- end }}
|