Skip to content

Commit

Permalink
Merge pull request kubernetes#2716 from zulily/fix-gce-provision-with…
Browse files Browse the repository at this point in the history
…-gcp-logging

Fix GCE scopes when using GCP Logging
  • Loading branch information
brendandburns committed Dec 2, 2014
2 parents b30633b + d229c5b commit 346dbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster/gce/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ function kube-up {
echo "+++ Logging using Fluentd to ${LOGGING_DESTINATION:-unknown}"
# For logging to GCP we need to enable some minion scopes.
if [[ "${LOGGING_DESTINATION-}" == "gcp" ]]; then
MINION_SCOPES="${MINION_SCOPES}, https://www.googleapis.com/auth/logging.write"
MINION_SCOPES=(${MINION_SCOPES[@]} "https://www.googleapis.com/auth/logging.write")
fi
fi

Expand Down

0 comments on commit 346dbc6

Please sign in to comment.