From df2944438d32d02a25480f4102ed76f2c7ce1fde Mon Sep 17 00:00:00 2001 From: kay-kim Date: Wed, 2 Apr 2025 11:54:11 -0400 Subject: [PATCH] Update default helm chart v25.1.6 and environmentd 0.130.8 --- README.md | 4 ++-- variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7199d97..423ebac 100644 --- a/README.md +++ b/README.md @@ -77,12 +77,12 @@ No modules. | [helm\_repository](#input\_helm\_repository) | Repository URL for the Materialize operator Helm chart. Leave empty if using local chart. | `string` | `"https://materializeinc.github.io/materialize/"` | no | | [helm\_values](#input\_helm\_values) | Values to pass to the Helm chart | `any` | n/a | yes | | [install\_metrics\_server](#input\_install\_metrics\_server) | Whether to install the metrics-server | `bool` | `true` | no | -| [instances](#input\_instances) | Configuration for Materialize instances |
list(object({
name = string
namespace = optional(string)
create_database = optional(bool, true)
database_name = string
metadata_backend_url = string
persist_backend_url = string
environmentd_version = optional(string, "v0.130.7")
cpu_request = optional(string, "1")
memory_request = optional(string, "1Gi")
memory_limit = optional(string, "1Gi")
in_place_rollout = optional(bool, true)
request_rollout = optional(string, "00000000-0000-0000-0000-000000000001")
force_rollout = optional(string, "00000000-0000-0000-0000-000000000001")
balancer_memory_request = optional(string, "256Mi")
balancer_memory_limit = optional(string, "256Mi")
balancer_cpu_request = optional(string, "100m")
}))
| `[]` | no | +| [instances](#input\_instances) | Configuration for Materialize instances |
list(object({
name = string
namespace = optional(string)
create_database = optional(bool, true)
database_name = string
metadata_backend_url = string
persist_backend_url = string
environmentd_version = optional(string, "v0.130.8")
cpu_request = optional(string, "1")
memory_request = optional(string, "1Gi")
memory_limit = optional(string, "1Gi")
in_place_rollout = optional(bool, true)
request_rollout = optional(string, "00000000-0000-0000-0000-000000000001")
force_rollout = optional(string, "00000000-0000-0000-0000-000000000001")
balancer_memory_request = optional(string, "256Mi")
balancer_memory_limit = optional(string, "256Mi")
balancer_cpu_request = optional(string, "100m")
}))
| `[]` | no | | [metrics\_server\_version](#input\_metrics\_server\_version) | Version of metrics-server to install | `string` | `"3.12.2"` | no | | [monitoring\_namespace](#input\_monitoring\_namespace) | Namespace for monitoring resources | `string` | `"monitoring"` | no | | [namespace](#input\_namespace) | Namespace prefix for all resources | `string` | n/a | yes | | [operator\_namespace](#input\_operator\_namespace) | Namespace for the Materialize operator | `string` | `"materialize"` | no | -| [operator\_version](#input\_operator\_version) | Version of the Materialize operator to install | `string` | `"v25.1.4"` | no | +| [operator\_version](#input\_operator\_version) | Version of the Materialize operator to install | `string` | `"v25.1.6"` | no | | [postgres\_version](#input\_postgres\_version) | Postgres version to use for the metadata backend | `string` | `"15"` | no | | [use\_local\_chart](#input\_use\_local\_chart) | Whether to use a local chart instead of one from a repository | `bool` | `false` | no | diff --git a/variables.tf b/variables.tf index 69b13f2..b672ad7 100644 --- a/variables.tf +++ b/variables.tf @@ -11,7 +11,7 @@ variable "environment" { variable "operator_version" { description = "Version of the Materialize operator to install" type = string - default = "v25.1.4" + default = "v25.1.6" nullable = false } @@ -71,7 +71,7 @@ variable "instances" { database_name = string metadata_backend_url = string persist_backend_url = string - environmentd_version = optional(string, "v0.130.7") + environmentd_version = optional(string, "v0.130.8") cpu_request = optional(string, "1") memory_request = optional(string, "1Gi") memory_limit = optional(string, "1Gi")