forked from buildkite/elastic-ci-stack-for-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
250 lines (209 loc) · 8.03 KB
/
Makefile
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
.PHONY: all clean build packer upload
VERSION = $(shell git describe --tags --candidates=1)
SHELL = /bin/bash -o pipefail
PACKER_VERSION ?= 1.9.4
PACKER_LINUX_FILES = $(exec find packer/linux)
PACKER_WINDOWS_FILES = $(exec find packer/windows)
GO_VERSION ?= 1.21
FIXPERMS_FILES = go.mod go.sum $(exec find internal/fixperms)
AWS_REGION ?= us-east-1
ARM64_INSTANCE_TYPE ?= m7g.xlarge
AMD64_INSTANCE_TYPE ?= m7a.xlarge
WIN64_INSTANCE_TYPE ?= m7i.xlarge
BUILDKITE_BUILD_NUMBER ?= none
BUILDKITE_PIPELINE_DEFAULT_BRANCH ?= main
IS_RELEASED ?= false
ifeq ($(BUILDKITE_BRANCH),$(BUILDKITE_PIPELINE_DEFAULT_BRANCH))
IS_RELEASED = true
endif
ifeq ($(BUILDKITE_BRANCH),$(BUILDKITE_TAG))
IS_RELEASED = true
endif
all: packer build
# Remove any built cloudformation templates and packer output
clean:
-rm -rf build/*
-rm packer*.output
# Check for specific environment variables
env-%:
@ if [ "${${*}}" = "" ]; then \
echo "Environment variable $* not set"; \
exit 1; \
fi
# -----------------------------------------
build: packer build/mappings.yml build/aws-stack.yml
# Build a mapping file for a single region and image id pair
mappings-for-linux-amd64-image: env-AWS_REGION env-IMAGE_ID
mkdir -p build/
printf "Mappings:\n AWSRegion2AMI:\n %s: { linuxamd64: %s, linuxarm64: '', windows: '' }\n" \
"$(AWS_REGION)" $(IMAGE_ID) > build/mappings.yml
# Build a mapping file for a single region and image id pair
mappings-for-linux-arm64-image: env-AWS_REGION env-IMAGE_ID
mkdir -p build/
printf "Mappings:\n AWSRegion2AMI:\n %s: { linuxamd64: '', linuxarm64: %s, windows: '' }\n" \
"$(AWS_REGION)" $(IMAGE_ID) > build/mappings.yml
# Build a windows mapping file for a single region and image id pair
mappings-for-windows-amd64-image: env-AWS_REGION env-IMAGE_ID
mkdir -p build/
printf "Mappings:\n AWSRegion2AMI:\n %s: { linuxamd64: '', linuxarm64: '', windows: %s }\n" \
"$(AWS_REGION)" $(IMAGE_ID) > build/mappings.yml
# Takes the mappings files and copies them into a generated stack template
.PHONY: build/aws-stack.yml
build/aws-stack.yml:
test -f build/mappings.yml
awk '{ \
if ($$0 ~ /AWSRegion2AMI:/ && system("test -f build/mappings.yml") == 0) { \
system("grep -v Mappings: build/mappings.yml") \
} else { \
print \
}\
}' templates/aws-stack.yml | sed "s/%v/$(VERSION)/" > $@
# -----------------------------------------
# AMI creation with Packer
packer: packer-linux-amd64.output packer-linux-arm64.output packer-windows-amd64.output
build/mappings.yml: build/linux-amd64-ami.txt build/linux-arm64-ami.txt build/windows-amd64-ami.txt
mkdir -p build
printf "Mappings:\n AWSRegion2AMI:\n %q : { linuxamd64: %q, linuxarm64: %q, windows: %q }\n" \
"$(AWS_REGION)" $$(cat build/linux-amd64-ami.txt) $$(cat build/linux-arm64-ami.txt) $$(cat build/windows-amd64-ami.txt) > $@
build/linux-amd64-ami.txt: packer-linux-amd64.output env-AWS_REGION
mkdir -p build
grep -Eo "$(AWS_REGION): (ami-.+)" $< | cut -d' ' -f2 | xargs echo -n > $@
# Build linux packer image
packer-linux-amd64.output: $(PACKER_LINUX_FILES) build/fix-perms-linux-amd64
docker run \
-e AWS_DEFAULT_REGION \
-e AWS_PROFILE \
-e AWS_ACCESS_KEY_ID \
-e AWS_SECRET_ACCESS_KEY \
-e AWS_SESSION_TOKEN \
-e PACKER_LOG \
-v ${HOME}/.aws:/root/.aws \
-v "$(PWD):/src" \
--rm \
-w /src/packer/linux \
hashicorp/packer:full-$(PACKER_VERSION) build -timestamp-ui \
-var 'region=$(AWS_REGION)' \
-var 'arch=x86_64' \
-var 'instance_type=$(AMD64_INSTANCE_TYPE)' \
-var 'build_number=$(BUILDKITE_BUILD_NUMBER)' \
-var 'is_released=$(IS_RELEASED)' \
buildkite-ami.pkr.hcl | tee $@
build/linux-arm64-ami.txt: packer-linux-arm64.output env-AWS_REGION
mkdir -p build
grep -Eo "$(AWS_REGION): (ami-.+)" $< | cut -d' ' -f2 | xargs echo -n > $@
# NOTE: make removes the $ escapes, everything else is passed to the shell
CURRENT_AGENT_VERSION_LINUX ?= $(shell sed -En 's/^AGENT_VERSION="?(.+?)"?$$/\1/p' packer/linux/scripts/install-buildkite-agent.sh)
CURRENT_AGENT_VERSION_WINDOWS ?= $(shell sed -En 's/^\$$AGENT_VERSION = "(.+?)"$$/\1/p' packer/windows/scripts/install-buildkite-agent.ps1)
print-agent-versions:
@echo Linux: $(CURRENT_AGENT_VERSION_LINUX)
@echo Windows: $(CURRENT_AGENT_VERSION_WINDOWS)
# Build linuxarm64 packer image
packer-linux-arm64.output: $(PACKER_LINUX_FILES) build/fix-perms-linux-arm64
@echo Agent Version: $(CURRENT_AGENT_VERSION_LINUX)
docker run \
-e AWS_DEFAULT_REGION \
-e AWS_PROFILE \
-e AWS_ACCESS_KEY_ID \
-e AWS_SECRET_ACCESS_KEY \
-e AWS_SESSION_TOKEN \
-e PACKER_LOG \
-v ${HOME}/.aws:/root/.aws \
-v "$(PWD):/src" \
--rm \
-w /src/packer/linux \
hashicorp/packer:full-$(PACKER_VERSION) build -timestamp-ui \
-var 'region=$(AWS_REGION)' \
-var 'arch=arm64' \
-var 'instance_type=$(ARM64_INSTANCE_TYPE)' \
-var 'build_number=$(BUILDKITE_BUILD_NUMBER)' \
-var 'is_released=$(IS_RELEASED)' \
-var 'agent_version=$(CURRENT_AGENT_VERSION_LINUX)' \
buildkite-ami.pkr.hcl | tee $@
build/windows-amd64-ami.txt: packer-windows-amd64.output env-AWS_REGION
mkdir -p build
grep -Eo "$(AWS_REGION): (ami-.+)" $< | cut -d' ' -f2 | xargs echo -n > $@
# Build windows packer image
packer-windows-amd64.output: $(PACKER_WINDOWS_FILES)
@echo Agent Version: $(CURRENT_AGENT_VERSION_WINDOWS)
docker run \
-e AWS_DEFAULT_REGION \
-e AWS_PROFILE \
-e AWS_ACCESS_KEY_ID \
-e AWS_SECRET_ACCESS_KEY \
-e AWS_SESSION_TOKEN \
-e PACKER_LOG \
-v ${HOME}/.aws:/root/.aws \
-v "$(PWD):/src" \
--rm \
-w /src/packer/windows \
hashicorp/packer:full-$(PACKER_VERSION) build -timestamp-ui \
-var 'region=$(AWS_REGION)' \
-var 'arch=x86_64' \
-var 'instance_type=$(WIN64_INSTANCE_TYPE)' \
-var 'build_number=$(BUILDKITE_BUILD_NUMBER)' \
-var 'is_released=$(IS_RELEASED)' \
-var 'agent_version=$(CURRENT_AGENT_VERSION_WINDOWS)' \
buildkite-ami.pkr.hcl | tee $@
# -----------------------------------------
# fixperms
build/fix-perms-linux-amd64: $(FIXPERMS_FILES)
docker run \
-e CGO_ENABLED=0 \
-e GOOS=linux \
-e GOARCH=amd64 \
-v "$(PWD):/src" \
-w /src \
--rm \
golang:$(GO_VERSION) \
go build -v -buildvcs=false -o "build/fix-perms-linux-amd64" ./internal/fixperms
build/fix-perms-linux-arm64: $(FIXPERMS_FILES)
docker run \
-e CGO_ENABLED=0 \
-e GOOS=linux \
-e GOARCH=arm64 \
-v "$(PWD):/src" \
-w /src \
--rm \
golang:$(GO_VERSION) \
go build -v -buildvcs=false -o "build/fix-perms-linux-arm64" ./internal/fixperms
# -----------------------------------------
# Cloudformation helpers
config.json:
cp config.json.example config.json
SERVICE_ROLE=
ifdef SERVICE_ROLE
role_arn="--role-arn=$(SERVICE_ROLE)"
endif
create-stack: build/aws-stack.yml env-STACK_NAME
aws cloudformation create-stack \
--output text \
--stack-name $(STACK_NAME) \
--disable-rollback \
--template-body "file://$(PWD)/build/aws-stack.yml" \
--capabilities CAPABILITY_IAM CAPABILITY_NAMED_IAM CAPABILITY_AUTO_EXPAND \
--parameters "$$(cat config.json)" \
"$(role_arn)"
update-stack: build/aws-stack.yml env-STACK_NAME
aws cloudformation update-stack \
--output text \
--stack-name $(STACK_NAME) \
--template-body "file://$(PWD)/build/aws-stack.yml" \
--capabilities CAPABILITY_IAM CAPABILITY_NAMED_IAM CAPABILITY_AUTO_EXPAND \
--parameters "$$(cat config.json)" \
"$(role_arn)"
# -----------------------------------------
# Other
AGENT_VERSION ?= $(shell curl -Lfs "https://buildkite.com/agent/releases/latest?platform=linux&arch=amd64" | grep version | cut -d= -f2)
SED ?= sed
ifeq ($(shell uname), Darwin)
# Use GNU sed, not MacOS sed
# Install with: brew install gsed
SED = gsed
endif
bump-agent-version:
$(SED) -Ei "s/\[Buildkite Agent v.*\]/[Buildkite Agent v$(AGENT_VERSION)]/g" README.md
$(SED) -Ei "s/AGENT_VERSION=.+/AGENT_VERSION=$(AGENT_VERSION)/g" packer/linux/scripts/install-buildkite-agent.sh
$(SED) -Ei "s/\\\$$AGENT_VERSION = \".+\"/\$$AGENT_VERSION = \"$(AGENT_VERSION)\"/g" packer/windows/scripts/install-buildkite-agent.ps1
generate-toc:
docker run -it --rm -v "$(PWD):/app" node:slim bash \
-c "npm install -g markdown-toc && cd /app && markdown-toc -i README.md"