Skip to content

Commit 7d3973a

Browse files
Merge pull request #36 from MaterializeInc/default_to_not_overriding_orchestratord_version
Do not override orchestratord version by default.
2 parents 1e8653e + eae70fa commit 7d3973a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/aws/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ locals {
66
}
77
}
88
operator = {
9-
image = {
9+
image = var.orchestratord_version == null ? {} : {
1010
tag = var.orchestratord_version
11-
}
11+
},
1212
cloudProvider = {
1313
type = "aws"
1414
region = data.aws_region.current.name

examples/aws/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ variable "helm_values" {
4141
variable "orchestratord_version" {
4242
description = "Version of the Materialize orchestrator to install"
4343
type = string
44-
default = "v0.138.0"
44+
default = null
4545
}
4646

4747
variable "operator_namespace" {

examples/gcp/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ module "operator" {
5050
operator_namespace = var.operator_namespace
5151

5252
helm_values = {
53-
image = {
53+
image = var.orchestratord_version == null ? {} : {
5454
tag = var.orchestratord_version
55-
}
55+
},
5656
observability = {
5757
podMetrics = {
5858
enabled = true

examples/gcp/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "region" {
1919
variable "orchestratord_version" {
2020
description = "Version of the Materialize orchestrator to install"
2121
type = string
22-
default = "v0.138.0"
22+
default = null
2323
}
2424

2525
variable "instance_configs" {

0 commit comments

Comments
 (0)