Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Commit

Permalink
Merge pull request #234 from gouyang/add_proxy_for_make_ca
Browse files Browse the repository at this point in the history
fix the syntax error
  • Loading branch information
eparis committed Nov 13, 2015
2 parents 3afaddc + 24bad6a commit 7812b34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ansible/roles/kubernetes/files/make-ca-cert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ set -o nounset
set -o pipefail

# Export proxy to ensure commands like curl could work
export ${HTTP_PROXY} ${HTTPS_PROXY}
export HTTP_PROXY=${HTTP_PROXY}
export HTTPS_PROXY=${HTTPS_PROXY}

# Caller should set in the ev:
# MASTER_IP - this may be an ip or things like "_use_gce_external_ip_"
Expand Down

0 comments on commit 7812b34

Please sign in to comment.