Skip to content

Commit d38de8c

Browse files
committed
terraform tests: Set default replication factors
Follow-up to #31452 Seen failing in https://buildkite.com/materialize/nightly/builds/11143#019501e1-d68b-407e-8801-4a60b5a18f5d
1 parent d297450 commit d38de8c

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

test/terraform/aws-persistent/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ module "materialize_infrastructure" {
2424
environment = "dev"
2525
install_materialize_operator = true
2626

27+
helm_values = {
28+
defaultReplicationFactor = {
29+
system = 1
30+
probe = 1
31+
support = 1
32+
analytics = 1
33+
}
34+
}
35+
2736
# VPC Configuration
2837
vpc_cidr = "10.0.0.0/16"
2938
availability_zones = ["us-east-1a", "us-east-1b"]

test/terraform/aws-temporary/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ module "materialize_infrastructure" {
2626
environment = "dev"
2727
install_materialize_operator = true
2828

29+
helm_values = {
30+
defaultReplicationFactor = {
31+
system = 1
32+
probe = 1
33+
support = 1
34+
analytics = 1
35+
}
36+
}
37+
2938
# VPC Configuration
3039
vpc_cidr = "10.0.0.0/16"
3140
availability_zones = ["us-east-1a", "us-east-1b"]

test/terraform/gcp-temporary/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ module "materialize" {
4242
}
4343

4444
install_materialize_operator = true
45+
46+
helm_values = {
47+
defaultReplicationFactor = {
48+
system = 1
49+
probe = 1
50+
support = 1
51+
analytics = 1
52+
}
53+
}
4554
}
4655

4756
variable "project_id" {

0 commit comments

Comments
 (0)