jq -j is not a valid option. I think the author meant jq -r

pull/60/head
GGC 2016-09-14 19:37:20 -07:00 committed by GitHub
parent 5d48fa8132
commit 8ec636271d
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ The following command will:
for host in ${KUBERNETES_HOSTS[*]}; do
PUBLIC_IP_ADDRESS=$(aws ec2 describe-instances \
--filters "Name=tag:Name,Values=${host}" | \
jq -j '.Reservations[].Instances[].PublicIpAddress')
jq -r '.Reservations[].Instances[].PublicIpAddress')
scp ca.pem kubernetes-key.pem kubernetes.pem \
ubuntu@${PUBLIC_IP_ADDRESS}:~/
done