Merge pull request #1939 from satnam6502/salt

Second attempt at correctly inspecting FLUENTD_GCP
This commit is contained in:
Dawn Chen 2014-10-21 15:34:02 -07:00
commit 7a077314a2

View File

@ -287,7 +287,7 @@ function kube-up {
) > "${KUBE_TEMP}/master-start.sh"
# 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"
fi