Merge pull request #3521 from katzj/gce-instances-monitoring-scope

Add the monitoring scope to the default scopes for GCE instances created by docker-machine
This commit is contained in:
Nathan LeClaire 2016-06-23 17:22:39 -07:00 committed by GitHub
commit 97c3f27434
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const (
defaultUser = "docker-user"
defaultMachineType = "n1-standard-1"
defaultImageName = "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20151114"
defaultScopes = "https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write"
defaultScopes = "https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write"
defaultDiskType = "pd-standard"
defaultDiskSize = 10
)