Skip to content

Commit

Permalink
Merge pull request kubernetes#24871 from andyzheng0831/automated-cher…
Browse files Browse the repository at this point in the history
…ry-pick-of-#24749-upstream-release-1.2

Automatic merge from submit-queue

Automated cherry pick of kubernetes#24749

Cherry pick of kubernetes#24749 on release-1.2.
  • Loading branch information
k8s-merge-robot committed Apr 27, 2016
2 parents 65e1d9b + 276b7c0 commit 0fe9a44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cluster/gce/trusty/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ download_kube_env() {
# Fetch kube-env from GCE metadata server.
readonly tmp_install_dir="/var/cache/kubernetes-install"
mkdir -p "${tmp_install_dir}"
curl --fail --silent --show-error \
curl --fail --retry 5 --retry-delay 3 --silent --show-error \
-H "X-Google-Metadata-Request: True" \
-o "${tmp_install_dir}/kube_env.yaml" \
http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env
Expand Down
2 changes: 1 addition & 1 deletion cluster/gce/trusty/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ script
set -o nounset

# Fetch the script for installing master binary and configuration files.
curl --fail --silent --show-error \
curl --fail --retry 5 --retry-delay 3 --silent --show-error \
-H "X-Google-Metadata-Request: True" \
-o /etc/kube-configure.sh \
http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh
Expand Down
2 changes: 1 addition & 1 deletion cluster/gce/trusty/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ script
set -o nounset

# Fetch the script for installing nodes binary and configuration files.
curl --fail --silent --show-error \
curl --fail --retry 5 --retry-delay 3 --silent --show-error \
-H "X-Google-Metadata-Request: True" \
-o /etc/kube-configure.sh \
http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh
Expand Down

0 comments on commit 0fe9a44

Please sign in to comment.