forked from aws/amazon-ecs-ami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathal2022.pkr.hcl
163 lines (143 loc) · 4 KB
/
al2022.pkr.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
locals {
ami_name_al2022 = "${var.ami_name_prefix_al2022}-hvm-2022.0.${var.ami_version}${var.kernel_version_al2022}-x86_64"
}
source "amazon-ebs" "al2022" {
ami_name = "${local.ami_name_al2022}"
ami_description = "Amazon Linux AMI 2022.0.${var.ami_version} x86_64 ECS HVM EBS"
instance_type = "c5.large"
launch_block_device_mappings {
volume_size = var.block_device_size_gb
delete_on_termination = true
volume_type = "gp3"
device_name = "/dev/xvda"
}
region = var.region
source_ami_filter {
filters = {
name = "${var.source_ami_al2022}"
}
owners = ["amazon"]
most_recent = true
}
ssh_username = "ec2-user"
tags = {
os_version = "Amazon Linux 2022"
source_image_name = "{{ .SourceAMIName }}"
ecs_runtime_version = "Docker version ${var.docker_version_al2022}"
ecs_agent_version = "${var.ecs_agent_version}"
ami_type = "al2022"
ami_version = "2022.0.${var.ami_version}"
}
}
build {
sources = [
"source.amazon-ebs.al2022",
"source.amazon-ebs.al2022arm",
"source.amazon-ebs.al2022neu"
]
provisioner "file" {
source = "files/90_ecs.cfg.amzn2"
destination = "/tmp/90_ecs.cfg"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo mv /tmp/90_ecs.cfg /etc/cloud/cloud.cfg.d/90_ecs.cfg",
"sudo chown root:root /etc/cloud/cloud.cfg.d/90_ecs.cfg"
]
}
provisioner "shell" {
script = "scripts/al2022/setup-motd.sh"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"mkdir /tmp/additional-packages"
]
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo dnf update -y --releasever=${var.distribution_release_al2022}"
]
}
provisioner "file" {
source = "additional-packages/"
destination = "/tmp/additional-packages"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo dnf install -y ${local.packages_al2022}"
]
}
provisioner "shell" {
script = "scripts/install-docker.sh"
environment_vars = [
"DOCKER_VERSION=${var.docker_version_al2022}",
"CONTAINERD_VERSION=${var.containerd_version_al2022}",
"AIR_GAPPED=${var.air_gapped}"
]
}
provisioner "shell" {
script = "scripts/install-ecs-init.sh"
environment_vars = [
"REGION=${var.region}",
"AGENT_VERSION=${var.ecs_agent_version}",
"INIT_REV=${var.ecs_init_rev}",
"AL_NAME=amzn2022",
"ECS_INIT_URL=${var.ecs_init_url_al2022}",
"AIR_GAPPED=${var.air_gapped}",
"ECS_INIT_LOCAL_OVERRIDE=${var.ecs_init_local_override}"
]
}
provisioner "shell" {
script = "scripts/append-efs-client-info.sh"
}
provisioner "shell" {
script = "scripts/install-additional-packages.sh"
}
### exec
provisioner "shell" {
script = "scripts/install-exec-dependencies.sh"
environment_vars = [
"REGION=${var.region}",
"EXEC_SSM_VERSION=${var.exec_ssm_version}",
"AIR_GAPPED=${var.air_gapped}"
]
}
### reboot worker instance to install kernel update. enable-ecs-agent-inferentia-support needs
### new kernel (if there is) to be installed.
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
expect_disconnect = "true"
inline = [
"sudo reboot"
]
}
provisioner "shell" {
environment_vars = [
"AMI_TYPE=${source.name}"
]
pause_before = "10s" # pause for starting the reboot
start_retry_timeout = "40s" # wait before start retry
max_retries = 3
script = "scripts/enable-ecs-agent-inferentia-support.sh"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo usermod -a -G docker ec2-user"
]
}
provisioner "shell" {
script = "scripts/enable-services.sh"
}
provisioner "shell" {
script = "scripts/cleanup.sh"
}
post-processor "manifest" {
output = "manifest.json"
strip_path = true
}
}