You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,12 +74,14 @@ enable_disk_support = true
74
74
75
75
gke_config = {
76
76
node_count = 3
77
-
machine_type = "n2-highmem-16" # This machine has 128GB RAM
77
+
# This machine has 128GB RAM
78
+
machine_type = "n2-highmem-16"
78
79
disk_size_gb = 100
79
80
min_nodes = 3
80
81
max_nodes = 5
81
-
local_ssd_count = 1 # This provides 1 x 375GB = 375GB of local NVMe SSD storage
82
-
# Exceeding the 2:1 disk-to-RAM ratio (128GB RAM : 375GB disk)
82
+
# This provides 1 x 375GB = 375GB of local NVMe SSD storage
83
+
# Exceeding the 2:1 disk-to-RAM ratio (128GB RAM : 375GB disk)
84
+
local_ssd_count = 1
83
85
}
84
86
85
87
disk_support_config = {
@@ -149,7 +151,7 @@ No resources.
149
151
| <aname="input_cert_manager_install_timeout"></a> [cert\_manager\_install\_timeout](#input\_cert\_manager\_install\_timeout)| Timeout for installing the cert-manager helm chart, in seconds. |`number`|`300`| no |
150
152
| <aname="input_cert_manager_namespace"></a> [cert\_manager\_namespace](#input\_cert\_manager\_namespace)| The name of the namespace in which cert-manager is or will be installed. |`string`|`"cert-manager"`| no |
| <aname="input_enable_disk_support"></a> [enable\_disk\_support](#input\_enable\_disk\_support)| Enable disk support for Materialize using OpenEBS and local SSDs. When enabled, this configures OpenEBS, runs the disk setup script, and creates appropriate storage classes. |`bool`|`true`| no |
154
156
| <aname="input_gke_config"></a> [gke\_config](#input\_gke\_config)| GKE cluster configuration. Make sure to use large enough machine types for your Materialize instances. | <pre>object({<br/> node_count = number<br/> machine_type = string<br/> disk_size_gb = number<br/> min_nodes = number<br/> max_nodes = number<br/> })</pre> | <pre>{<br/> "disk_size_gb": 100,<br/> "machine_type": "n2-highmem-8",<br/> "max_nodes": 2,<br/> "min_nodes": 1,<br/> "node_count": 1<br/>}</pre> | no |
155
157
| <aname="input_helm_chart"></a> [helm\_chart](#input\_helm\_chart)| Chart name from repository or local path to chart. For local charts, set the path to the chart directory. |`string`|`"materialize-operator"`| no |
0 commit comments