Skip to content

Commit 9f4aa39

Browse files
authored
Merge pull request #21 from comet-ml/druid-node-adjustment
Remove zookeeper and airflow MNGs
2 parents 16b9016 + 0d871fb commit 9f4aa39

File tree

4 files changed

+2
-94
lines changed

4 files changed

+2
-94
lines changed

main.tf

-4
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ module "comet_eks" {
8080

8181
eks_druid_instance_type = var.eks_druid_instance_type
8282
eks_druid_node_count = var.eks_druid_node_count
83-
eks_zookeeper_instance_type = var.eks_zookeeper_instance_type
84-
eks_zookeeper_node_count = var.eks_zookeeper_node_count
85-
eks_airflow_instance_type = var.eks_airflow_instance_type
86-
eks_airflow_node_count = var.eks_airflow_node_count
8783
}
8884

8985
module "comet_elasticache" {

modules/comet_eks/main.tf

-44
Original file line numberDiff line numberDiff line change
@@ -72,50 +72,6 @@ module "eks" {
7272
nodegroup_name = "druid"
7373
}
7474
iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
75-
},
76-
zookeeper = {
77-
name = "zookeeper"
78-
instance_types = [var.eks_zookeeper_instance_type]
79-
min_size = var.eks_zookeeper_node_count
80-
max_size = var.eks_zookeeper_node_count
81-
desired_size = var.eks_zookeeper_node_count
82-
block_device_mappings = {
83-
xvda = {
84-
device_name = "/dev/xvda"
85-
ebs = {
86-
volume_size = var.eks_mng_disk_size
87-
volume_type = local.volume_type
88-
encrypted = local.volume_encrypted
89-
delete_on_termination = local.volume_delete_on_termination
90-
}
91-
}
92-
}
93-
labels = {
94-
nodegroup_name = "zookeeper"
95-
}
96-
iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
97-
},
98-
airflow = {
99-
name = "airflow"
100-
instance_types = [var.eks_airflow_instance_type]
101-
min_size = var.eks_airflow_node_count
102-
max_size = var.eks_airflow_node_count
103-
desired_size = var.eks_airflow_node_count
104-
block_device_mappings = {
105-
xvda = {
106-
device_name = "/dev/xvda"
107-
ebs = {
108-
volume_size = var.eks_mng_disk_size
109-
volume_type = local.volume_type
110-
encrypted = local.volume_encrypted
111-
delete_on_termination = local.volume_delete_on_termination
112-
}
113-
}
114-
}
115-
labels = {
116-
nodegroup_name = "airflow"
117-
}
118-
iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
11975
}
12076
} : {}
12177
)

modules/comet_eks/variables.tf

-20
Original file line numberDiff line numberDiff line change
@@ -100,27 +100,7 @@ variable "eks_druid_instance_type" {
100100
type = string
101101
}
102102

103-
variable "eks_zookeeper_instance_type" {
104-
description = "Instance type for EKS Zookeeper nodes"
105-
type = string
106-
}
107-
108-
variable "eks_airflow_instance_type" {
109-
description = "Instance type for EKS Airflow nodes"
110-
type = string
111-
}
112-
113103
variable "eks_druid_node_count" {
114104
description = "Instance count for EKS Druid nodes"
115105
type = number
116-
}
117-
118-
variable "eks_zookeeper_node_count" {
119-
description = "Instance count for EKS Zookeeper nodes"
120-
type = number
121-
}
122-
123-
variable "eks_airflow_node_count" {
124-
description = "Instance count for EKS Airflow nodes"
125-
type = number
126106
}

variables.tf

+2-26
Original file line numberDiff line numberDiff line change
@@ -221,37 +221,13 @@ variable "eks_external_dns_r53_zones" {
221221
variable "eks_druid_instance_type" {
222222
description = "Instance type for EKS Druid nodes"
223223
type = string
224-
default = "m6i.4xlarge"
225-
}
226-
227-
variable "eks_zookeeper_instance_type" {
228-
description = "Instance type for EKS Zookeeper nodes"
229-
type = string
230-
default = "m6i.4xlarge"
231-
}
232-
233-
variable "eks_airflow_instance_type" {
234-
description = "Instance type for EKS Airflow nodes"
235-
type = string
236-
default = "m6i.4xlarge"
224+
default = "m7i.2xlarge"
237225
}
238226

239227
variable "eks_druid_node_count" {
240228
description = "Instance count for EKS Druid nodes"
241229
type = number
242-
default = 6
243-
}
244-
245-
variable "eks_zookeeper_node_count" {
246-
description = "Instance count for EKS Zookeeper nodes"
247-
type = number
248-
default = 3
249-
}
250-
251-
variable "eks_airflow_node_count" {
252-
description = "Instance count for EKS Airflow nodes"
253-
type = number
254-
default = 3
230+
default = 4
255231
}
256232

257233
#### comet_elasticache ####

0 commit comments

Comments
 (0)