18
18
#
19
19
# terraform apply --var-file projects/pangeo-hubs.tfvars
20
20
#
21
- # FIXME: core_node_machine_type should be set to n2-highmem-4 as its enough
22
21
prefix = " pangeo-hubs"
23
22
project_id = " pangeo-integration-te-3eea"
24
23
billing_project_id = " pangeo-integration-te-3eea"
25
24
zone = " us-central1-b"
26
25
region = " us-central1"
27
- core_node_machine_type = " n2-highmem-8"
28
26
enable_private_cluster = true
29
27
28
+ # FIXME: core_node_machine_type should be set to n2-highmem-4 as its enough
29
+ # FIXME: Remove temp_opt_out_node_purpose_label_core_nodes when a node upgrade can be
30
+ # done. See https://github.com/2i2c-org/infrastructure/issues/3405.
31
+ core_node_machine_type = " n2-highmem-8"
32
+ temp_opt_out_node_purpose_label_core_nodes = true
33
+
30
34
k8s_versions = {
31
35
min_master_version : " 1.26.5-gke.2100" ,
32
36
core_nodes_version : " 1.26.4-gke.1400" ,
@@ -58,40 +62,49 @@ user_buckets = {
58
62
59
63
# Setup notebook node pools
60
64
notebook_nodes = {
65
+ # FIXME: Remove temp_opt_out_node_purpose_label when a node upgrade can be
66
+ # done. See https://github.com/2i2c-org/infrastructure/issues/3405.
61
67
" n2-highmem-4" : {
62
68
min : 0 ,
63
69
max : 100 ,
64
70
machine_type : " n2-highmem-4" ,
71
+ temp_opt_out_node_purpose_label : true ,
65
72
},
66
73
" n2-highmem-16" : {
67
74
min : 0 ,
68
75
max : 100 ,
69
76
machine_type : " n2-highmem-16" ,
77
+ temp_opt_out_node_purpose_label : true ,
70
78
},
71
79
" n2-highmem-64" : {
72
80
min : 0 ,
73
81
max : 100 ,
74
82
machine_type : " n2-highmem-64" ,
83
+ temp_opt_out_node_purpose_label : true ,
75
84
},
76
85
" small" : {
77
86
min : 0 ,
78
87
max : 100 ,
79
88
machine_type : " n1-standard-2" ,
89
+ temp_opt_out_node_purpose_label : true ,
80
90
},
81
91
" medium" : {
82
92
min : 0 ,
83
93
max : 100 ,
84
94
machine_type : " n1-standard-4" ,
95
+ temp_opt_out_node_purpose_label : true ,
85
96
},
86
97
" large" : {
87
98
min : 0 ,
88
99
max : 100 ,
89
100
machine_type : " n1-standard-8" ,
101
+ temp_opt_out_node_purpose_label : true ,
90
102
},
91
103
" huge" : {
92
104
min : 0 ,
93
105
max : 100 ,
94
106
machine_type : " n1-standard-16" ,
107
+ temp_opt_out_node_purpose_label : true ,
95
108
},
96
109
}
97
110
@@ -102,10 +115,13 @@ notebook_nodes = {
102
115
#
103
116
dask_nodes = {
104
117
# FIXME: Rename this to "n2-highmem-16" when given the chance and no such nodes are running
118
+ # FIXME: Remove temp_opt_out_node_purpose_label when a node upgrade can be
119
+ # done. See https://github.com/2i2c-org/infrastructure/issues/3405.
105
120
" worker" : {
106
121
min : 0 ,
107
122
max : 100 ,
108
123
machine_type : " n2-highmem-16" ,
124
+ temp_opt_out_node_purpose_label : true ,
109
125
},
110
126
}
111
127
0 commit comments