7 lines
91 B
Plaintext
7 lines
91 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if ( which kubectl &> /dev/null )
|
||
|
then
|
||
|
source <(kubectl completion bash)
|
||
|
fi
|