Skip to content

Commit 4cc44b5

Browse files
committed
Remove extra env var
1 parent a7f086d commit 4cc44b5

File tree

5 files changed

+1
-40
lines changed

5 files changed

+1
-40
lines changed

README.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -134,21 +134,6 @@ Choose the appropriate `local_ssd_count` to make sure your total disk space is a
134134

135135
The `materialize_instances` variable is a list of objects that define the configuration for each Materialize instance.
136136

137-
### `environmentd_extra_env`
138-
139-
Optional list of extra environment variables to pass to the `environmentd` container. This allows you to pass any additional configuration supported by Materialize.
140-
141-
Each entry should be an object with `name` and `value` fields:
142-
143-
```hcl
144-
environmentd_extra_env = [
145-
{
146-
name = "MZ_LOG_FILTER"
147-
value = "materialized::coord=debug"
148-
}
149-
]
150-
```
151-
152137
### `environmentd_extra_args`
153138

154139
Optional list of additional command-line arguments to pass to the `environmentd` container. This can be used to override default system parameters or enable specific features.
@@ -210,7 +195,7 @@ No resources.
210195
| <a name="input_install_materialize_operator"></a> [install\_materialize\_operator](#input\_install\_materialize\_operator) | Whether to install the Materialize operator | `bool` | `true` | no |
211196
| <a name="input_install_metrics_server"></a> [install\_metrics\_server](#input\_install\_metrics\_server) | Whether to install the metrics-server for the Materialize Console. Defaults to false since GKE installs one by default in the kube-system namespace. Only set to true if the GKE cluster was deployed with [monitoring explicitly turned off](https://cloud.google.com/kubernetes-engine/docs/how-to/configure-metrics#:~:text=To%20disable%20system%20metric%20collection,for%20the%20%2D%2Dmonitoring%20flag). Refer to the [GKE docs](https://cloud.google.com/kubernetes-engine/docs/how-to/configure-metrics#:~:text=To%20disable%20system%20metric%20collection,for%20the%20%2D%2Dmonitoring%20flag) for more information, including impact to GKE customer support efforts. | `bool` | `false` | no |
212197
| <a name="input_labels"></a> [labels](#input\_labels) | Labels to apply to all resources | `map(string)` | `{}` | no |
213-
| <a name="input_materialize_instances"></a> [materialize\_instances](#input\_materialize\_instances) | Configuration for Materialize instances | <pre>list(object({<br/> name = string<br/> namespace = optional(string)<br/> database_name = string<br/> create_database = optional(bool, true)<br/> create_load_balancer = optional(bool, true)<br/> internal_load_balancer = optional(bool, true)<br/> environmentd_version = optional(string)<br/> cpu_request = optional(string, "1")<br/> memory_request = optional(string, "1Gi")<br/> memory_limit = optional(string, "1Gi")<br/> in_place_rollout = optional(bool, false)<br/> request_rollout = optional(string)<br/> force_rollout = optional(string)<br/> balancer_memory_request = optional(string, "256Mi")<br/> balancer_memory_limit = optional(string, "256Mi")<br/> balancer_cpu_request = optional(string, "100m")<br/> license_key = optional(string)<br/> environmentd_extra_env = optional(list(object({<br/> name = string<br/> value = string<br/> })), [])<br/> environmentd_extra_args = optional(list(string), [])<br/> }))</pre> | `[]` | no |
198+
| <a name="input_materialize_instances"></a> [materialize\_instances](#input\_materialize\_instances) | Configuration for Materialize instances | <pre>list(object({<br/> name = string<br/> namespace = optional(string)<br/> database_name = string<br/> create_database = optional(bool, true)<br/> create_load_balancer = optional(bool, true)<br/> internal_load_balancer = optional(bool, true)<br/> environmentd_version = optional(string)<br/> cpu_request = optional(string, "1")<br/> memory_request = optional(string, "1Gi")<br/> memory_limit = optional(string, "1Gi")<br/> in_place_rollout = optional(bool, false)<br/> request_rollout = optional(string)<br/> force_rollout = optional(string)<br/> balancer_memory_request = optional(string, "256Mi")<br/> balancer_memory_limit = optional(string, "256Mi")<br/> balancer_cpu_request = optional(string, "100m")<br/> license_key = optional(string)<br/> environmentd_extra_args = optional(list(string), [])<br/> }))</pre> | `[]` | no |
214199
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Kubernetes namespace for Materialize | `string` | `"materialize"` | no |
215200
| <a name="input_network_config"></a> [network\_config](#input\_network\_config) | Network configuration for the GKE cluster | <pre>object({<br/> subnet_cidr = string<br/> pods_cidr = string<br/> services_cidr = string<br/> })</pre> | n/a | yes |
216201
| <a name="input_operator_namespace"></a> [operator\_namespace](#input\_operator\_namespace) | Namespace for the Materialize operator | `string` | `"materialize"` | no |

docs/header.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -138,21 +138,6 @@ Choose the appropriate `local_ssd_count` to make sure your total disk space is a
138138

139139
The `materialize_instances` variable is a list of objects that define the configuration for each Materialize instance.
140140

141-
### `environmentd_extra_env`
142-
143-
Optional list of extra environment variables to pass to the `environmentd` container. This allows you to pass any additional configuration supported by Materialize.
144-
145-
Each entry should be an object with `name` and `value` fields:
146-
147-
```hcl
148-
environmentd_extra_env = [
149-
{
150-
name = "MZ_LOG_FILTER"
151-
value = "materialized::coord=debug"
152-
}
153-
]
154-
```
155-
156141
### `environmentd_extra_args`
157142

158143
Optional list of additional command-line arguments to pass to the `environmentd` container. This can be used to override default system parameters or enable specific features.

examples/simple/main.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,6 @@ variable "materialize_instances" {
169169
balancer_memory_limit = optional(string, "256Mi")
170170
balancer_cpu_request = optional(string, "100m")
171171
license_key = optional(string)
172-
environmentd_extra_env = optional(list(object({
173-
name = string
174-
value = string
175-
})), [])
176172
environmentd_extra_args = optional(list(string), [])
177173
}))
178174
default = []

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ locals {
234234
internal_load_balancer = instance.internal_load_balancer
235235
environmentd_version = instance.environmentd_version
236236

237-
environmentd_extra_env = instance.environmentd_extra_env
238237
environmentd_extra_args = instance.environmentd_extra_args
239238

240239
metadata_backend_url = format(

variables.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,6 @@ variable "materialize_instances" {
121121
balancer_memory_limit = optional(string, "256Mi")
122122
balancer_cpu_request = optional(string, "100m")
123123
license_key = optional(string)
124-
environmentd_extra_env = optional(list(object({
125-
name = string
126-
value = string
127-
})), [])
128124
environmentd_extra_args = optional(list(string), [])
129125
}))
130126
default = []

0 commit comments

Comments
 (0)