18278: Stop specifying a k8s version on GKE.
authorWard Vandewege <ward@curii.com>
Tue, 19 Oct 2021 15:23:31 +0000 (11:23 -0400)
committerWard Vandewege <ward@curii.com>
Tue, 19 Oct 2021 19:56:16 +0000 (15:56 -0400)
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward@curii.com>

tests/GKE.sh

index 07ee1170bd49381687e52403aa3970de53f1a18c..0d9adaa4e4530975ed9d51f7bb1894e59ed59f87 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/bash
 
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: Apache-2.0
+
 set -e
 
 DEBUG=$1
@@ -32,7 +36,7 @@ startK8s() {
   CLUSTER=`gcloud container clusters describe arvados --zone us-central1-a 2>/dev/null`
   set -e
   if [[ -z "$CLUSTER" ]]; then
-    gcloud container clusters create arvados --zone us-central1-a --machine-type n1-standard-2 --cluster-version 1.15
+    gcloud container clusters create arvados --zone us-central1-a --machine-type n1-standard-2
   fi
 
   set +e