Skip to content

Commit

Permalink
update dedicated cluster test (#103)
Browse files Browse the repository at this point in the history
Use a different machine type for dedicated
cluster acceptance test.
  • Loading branch information
jenngeorge authored Apr 12, 2023
1 parent 5d38789 commit 12a16f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions internal/provider/cluster_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ func TestIntegrationDedicatedClusterResource(t *testing.T) {
UpgradeStatus: client.CLUSTERUPGRADESTATUSTYPE_UPGRADE_AVAILABLE,
Config: client.ClusterConfig{
Dedicated: &client.DedicatedHardwareConfig{
MachineType: "n1-standard-2",
NumVirtualCpus: 2,
StorageGib: 15,
MemoryGib: 8,
MachineType: "n1-standard-4",
NumVirtualCpus: 4,
StorageGib: 35,
MemoryGib: 15,
},
},
Regions: []client.Region{
Expand Down Expand Up @@ -399,8 +399,8 @@ resource "cockroach_cluster" "dedicated" {
cloud_provider = "GCP"
cockroach_version = "%s"
dedicated = {
storage_gib = 15
machine_type = "n1-standard-2"
storage_gib = 35
machine_type = "n1-standard-4"
}
regions = [{
name: "us-central1"
Expand Down

0 comments on commit 12a16f9

Please sign in to comment.