Skip to content

Commit

Permalink
update initialClusterVersion to 1.7.11-gke.1 (#269)
Browse files Browse the repository at this point in the history
- set initialClusterVersion to 1.8.5-gke.0

- Fixes #268
  • Loading branch information
cwbeitel authored and jlewi committed Jan 8, 2018
1 parent 190394d commit 13db0a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion py/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setup(args):
],
},
# TODO(jlewi): Stop pinning GKE version once 1.8 becomes the default.
"initialClusterVersion": "1.8.1-gke.1",
"initialClusterVersion": "1.8.5-gke.0",
}
}

Expand All @@ -70,6 +70,10 @@ def setup(args):

util.setup_cluster(api_client)

# A None gcs_client should be passed to test_util.create_junit_xml_file
# unless chart.startswith("gs://"), e.g. https://storage.googleapis.com/...
gcs_client = None

if chart.startswith("gs://"):
remote = chart
chart = os.path.join(tempfile.gettempdir(), os.path.basename(chart))
Expand Down

0 comments on commit 13db0a5

Please sign in to comment.