Skip to content

Commit

Permalink
update resources
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Aug 15, 2024
1 parent 2ba4261 commit 7d2016b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion integrationtests/k8s_using_module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestModuleK8s(t *testing.T) {
FarmIDs: []uint64{1},
}

nodes, err := deployer.FilterNodes(context.Background(), tfPlugin, f, []uint64{freeSRU}, []uint64{}, []uint64{})
nodes, err := deployer.FilterNodes(context.Background(), tfPlugin, f, []uint64{freeSRU}, []uint64{}, []uint64{uint64(1024)})
require.NoError(t, err)
if len(nodes) < 3 {
t.Skip("couldn't find enough nodes")
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/vm_mounts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ resource "grid_scheduler" "scheduler" {
requests {
name = "node"
cru = 1
sru = var.disk_size * 1024
sru = var.disk_size * 1024 + 1024
mru = 1024
}
}
Expand Down
4 changes: 2 additions & 2 deletions integrationtests/vm_multinode/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ resource "grid_scheduler" "scheduler" {
requests {
name = "node1"
cru = 2
sru = 512
sru = 1024
mru = 1024
}

requests {
name = "node2"
cru = 1
sru = 512
sru = 1024
mru = 1024
}
}
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/vm_public_ip/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "grid_scheduler" "scheduler" {
requests {
name = "node"
cru = 2
sru = 512
sru = 1024
mru = 1024
public_config = true
public_ips_count = 1
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/wireguard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "grid_scheduler" "scheduler" {
requests {
name = "node"
cru = 2
sru = 512
sru = 1024
mru = 1024
}
}
Expand Down

0 comments on commit 7d2016b

Please sign in to comment.