Skip to content

Commit

Permalink
Fix node pool tests. (#3475)
Browse files Browse the repository at this point in the history
  • Loading branch information
nat-henderson authored May 14, 2020
1 parent 453c9a9 commit 9adf7b8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,14 @@ func TestAccContainerNodePool_resize(t *testing.T) {
})
}


func TestAccContainerNodePool_version(t *testing.T) {
t.Parallel()

// Re-enable this test when there is more than one acceptable node pool version
// for the current master version
t.Skip()

cluster := fmt.Sprintf("tf-test-cluster-%s", randString(t, 10))
np := fmt.Sprintf("tf-test-nodepool-%s", randString(t, 10))

Expand Down Expand Up @@ -1367,7 +1372,6 @@ resource "google_container_cluster" "cluster" {
name = "%s"
location = "us-central1-c"
initial_node_count = 1
node_version = data.google_container_engine_versions.central1c.latest_node_version
min_master_version = data.google_container_engine_versions.central1c.latest_master_version
}

Expand Down

0 comments on commit 9adf7b8

Please sign in to comment.