mirror of https://github.com/kubernetes/kops.git
Adding check for aws cli in $PATH
This commit is contained in:
parent
227e0cfe19
commit
960cf39c46
|
@ -0,0 +1,6 @@
|
||||||
|
# Kops HTTP API Server
|
||||||
|
|
||||||
|
### Notes:
|
||||||
|
|
||||||
|
|
||||||
|
- https://github.com/kubernetes/kubernetes/pull/40803
|
|
@ -38,6 +38,8 @@ if [ -z "$2" ]; then
|
||||||
usage
|
usage
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
command -v aws >/dev/null 2>&1 || { echo >&2 "The aws cli is required to run this script."; exit 1; }
|
||||||
|
|
||||||
GROUP=$1
|
GROUP=$1
|
||||||
USER=$2
|
USER=$2
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue