File tree 1 file changed +21
-1
lines changed
docs/setup_installation/common
1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ resource "hopsworksai_cluster" "cluster" {
60
60
ssh_key = module.aws.ssh_key_pair_name
61
61
62
62
head {
63
+ instance_type = "m5.2xlarge"
63
64
}
64
65
65
66
aws_attributes {
@@ -71,7 +72,15 @@ resource "hopsworksai_cluster" "cluster" {
71
72
}
72
73
73
74
rondb {
74
-
75
+ management_nodes {
76
+ instance_type = "t3a.medium"
77
+ }
78
+ data_nodes {
79
+ instance_type = "r5.large"
80
+ }
81
+ mysql_nodes {
82
+ instance_type = "c5.large"
83
+ }
75
84
}
76
85
77
86
open_ports {
@@ -161,6 +170,7 @@ resource "hopsworksai_cluster" "cluster" {
161
170
ssh_key = module.azure.ssh_key_pair_name
162
171
163
172
head {
173
+ instance_type = "Standard_D8_v3"
164
174
}
165
175
166
176
azure_attributes {
@@ -173,7 +183,17 @@ resource "hopsworksai_cluster" "cluster" {
173
183
}
174
184
175
185
rondb {
186
+ management_nodes {
187
+ instance_type = "Standard_D2s_v4"
188
+ }
176
189
190
+ data_nodes {
191
+ instance_type = "Standard_D4s_v4"
192
+ }
193
+
194
+ mysql_nodes {
195
+ instance_type = "Standard_D2s_v4"
196
+ }
177
197
}
178
198
179
199
open_ports {
You can’t perform that action at this time.
0 commit comments