Skip to content

Commit 3c6b9be

Browse files
authored
Merge pull request #22 from comet-ml/airflow-mng
Add airflow mng
2 parents 9f4aa39 + cba922d commit 3c6b9be

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed

main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ 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_airflow_instance_type = var.eks_airflow_instance_type
84+
eks_airflow_node_count = var.eks_airflow_node_count
8385
}
8486

8587
module "comet_elasticache" {

modules/comet_eks/main.tf

+22
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,28 @@ 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+
airflow = {
77+
name = "airflow"
78+
instance_types = [var.eks_airflow_instance_type]
79+
min_size = var.eks_airflow_node_count
80+
max_size = var.eks_airflow_node_count
81+
desired_size = var.eks_airflow_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 = "airflow"
95+
}
96+
iam_role_additional_policies = var.s3_enabled ? { comet_s3_access = var.comet_ec2_s3_iam_policy } : {}
7597
}
7698
} : {}
7799
)

modules/comet_eks/variables.tf

+10
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,14 @@ variable "eks_druid_instance_type" {
103103
variable "eks_druid_node_count" {
104104
description = "Instance count for EKS Druid nodes"
105105
type = number
106+
}
107+
108+
variable "eks_airflow_instance_type" {
109+
description = "Instance type for EKS Airflow nodes"
110+
type = string
111+
}
112+
113+
variable "eks_airflow_node_count" {
114+
description = "Instance count for EKS Airflow nodes"
115+
type = number
106116
}

variables.tf

+12
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,18 @@ variable "eks_druid_node_count" {
230230
default = 4
231231
}
232232

233+
variable "eks_airflow_instance_type" {
234+
description = "Instance type for EKS Airflow nodes"
235+
type = string
236+
default = "t3.medium"
237+
}
238+
239+
variable "eks_airflow_node_count" {
240+
description = "Instance count for EKS Airflow nodes"
241+
type = number
242+
default = 2
243+
}
244+
233245
#### comet_elasticache ####
234246
variable "elasticache_allow_from_sg" {
235247
description = "Security group from which to allow connections to ElastiCache, to use when provisioning with existing compute"

0 commit comments

Comments
 (0)