Commit 7a077314 authored by Dawn Chen's avatar Dawn Chen

Merge pull request #1939 from satnam6502/salt

Second attempt at correctly inspecting FLUENTD_GCP
parents 2a30ce65 605314ff
...@@ -287,7 +287,7 @@ function kube-up { ...@@ -287,7 +287,7 @@ function kube-up {
) > "${KUBE_TEMP}/master-start.sh" ) > "${KUBE_TEMP}/master-start.sh"
# For logging to GCP we need to enable some minion scopes. # For logging to GCP we need to enable some minion scopes.
if [ -n "$FLUENTD_GCP" ] && [ "$FLUENTD_GCP" = "true" ]; then if [[ "${FLUENTD_GCP-}" == "true" ]]; 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment