Skip to content

Commit

Permalink
Dataproc, container cluster, backend bucket test fixes (#4679) (#8896)
Browse files Browse the repository at this point in the history
* ANACONDA is removed now

* Remove telemetry pinned version, default cdn_cache fields in backen bucket

* Ordering

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Apr 13, 2021
1 parent 8a6ce53 commit e2e533f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/4679.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
4 changes: 2 additions & 2 deletions google/resource_dataproc_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ func TestAccDataprocCluster_withOptionalComponents(t *testing.T) {
Config: testAccDataprocCluster_withOptionalComponents(rnd),
Check: resource.ComposeTestCheckFunc(
testAccCheckDataprocClusterExists(t, "google_dataproc_cluster.with_opt_components", &cluster),
testAccCheckDataprocClusterHasOptionalComponents(&cluster, "ANACONDA", "ZOOKEEPER"),
testAccCheckDataprocClusterHasOptionalComponents(&cluster, "ZOOKEEPER", "DOCKER"),
),
},
},
Expand Down Expand Up @@ -1335,7 +1335,7 @@ resource "google_dataproc_cluster" "with_opt_components" {
cluster_config {
software_config {
optional_components = ["ANACONDA", "ZOOKEEPER"]
optional_components = ["DOCKER", "ZOOKEEPER"]
}
}
}
Expand Down

0 comments on commit e2e533f

Please sign in to comment.