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.
16 lines
251 B
Plaintext
16 lines
251 B
Plaintext
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
set +ex
|
||
|
|
||
|
CDIR=$(pwd -P)
|
||
|
|
||
|
echo "Setting 'kk' as a kubectl alias"
|
||
|
alias kk=kubectl
|
||
|
|
||
|
if [ -f kubeconfig.conf ]; then
|
||
|
export KUBECONFIG="${CDIR}/kubeconfig.conf"
|
||
|
else
|
||
|
echo "Fail whale. You have no kubeconfig.conf file"
|
||
|
exit 1
|
||
|
fi
|