-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
393 lines (377 loc) · 11.1 KB
/
config.yml
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
version: 2.1
orbs:
aws-cli: circleci/[email protected]
# terraform: circleci/[email protected]
commands:
install_awscli:
description: Install AWS CLI v2
steps:
- run:
name: Install AWS CLI v2
command: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip -u awscliv2.zip
sudo ./aws/install
install_terraform:
description: Install Terraform
steps:
- run:
name: Install Terraform
command: |
curl -LO "https://releases.hashicorp.com/terraform/1.0.0/terraform_1.0.0_linux_amd64.zip"
unzip terraform_1.0.0_linux_amd64.zip
sudo mv terraform /usr/local/bin/
terraform -v
install_kubectl:
description: Install kubectl
steps:
- run:
name: Install kubectl
command: |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
configure_kubectl:
description: Configure kubectl
steps:
- run:
name: Configure kubectl
command: |
aws eks --region $AWS_REGION update-kubeconfig --name $EKS_CLUSTER_NAME
jobs:
init:
working_directory: /tmp/project
docker:
- image: docker.mirror.hashicorp.services/hashicorp/terraform:light
steps:
- checkout
- run:
name: Terraform init
command: |
cd terraform-kubernetes/
terraform init -input=false
- persist_to_workspace:
root: .
paths:
- .
plan:
docker:
- image: docker.mirror.hashicorp.services/hashicorp/terraform:light
steps:
- attach_workspace:
at: .
- run:
name: Terraform plan
command: |
cd terraform-kubernetes/
terraform plan -out terraform-apply
- persist_to_workspace:
root: .
paths:
- .
apply:
docker:
- image: docker.mirror.hashicorp.services/hashicorp/terraform:light
steps:
- attach_workspace:
at: .
- run:
name: Terraform apply
command: |
cd terraform-kubernetes/
terraform apply -auto-approve terraform-apply
- persist_to_workspace:
root: .
paths:
- .
plan-destroy:
docker:
- image: docker.mirror.hashicorp.services/hashicorp/terraform:light
steps:
- attach_workspace:
at: .
- run:
name: terraform create destroy plan
command: |
cd terraform-kubernetes/
terraform plan -destroy -out terraform-destroy
- persist_to_workspace:
root: .
paths:
- .
destroy:
docker:
- image: docker.mirror.hashicorp.services/hashicorp/terraform:light
steps:
- attach_workspace:
at: .
- run:
name: terraform destroy
command: |
# kubectl delete --all pods -n sock-shop
# kubectl delete --all services -n sock-shop
# kubectl delete --all deployments -n sock-shop
# kubectl delete --all pods -n default
# kubectl delete --all services -n default
# kubectl delete --all deployments -n default
cd terraform-kubernetes/
terraform apply -auto-approve terraform-destroy
# stop:
# docker:
# - image: docker.mirror.hashicorp.services/hashicorp/terraform:light
# steps:
# - attach_workspace:
# at: .
# - run:
# name: terraform destroy
# command: |
# cd terraform-kubernetes/
# terraform apply -auto-approve terraform-destroy
build-my-app:
docker:
- image: cimg/python:3.10
steps:
- checkout
- run:
name: Install Docker client
command: |
set -x
VER="17.03.0-ce"
curl -L -o /tmp/docker-$VER.tgz https://get.docker.com/builds/Linux/x86_64/docker-$VER.tgz
tar -xz -C /tmp -f /tmp/docker-$VER.tgz
sudo mv /tmp/docker/* /usr/bin
- setup_remote_docker
- run:
name: Build Docker image
command: |
cd voting-app/vote
docker build -t $APP .
- run:
name: Push to Docker Hub
command: |
cd voting-app/vote
echo "$DOCKER_PASSWORD"
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
docker tag $APP:latest $DOCKER_USERNAME/$APP
docker push $DOCKER_USERNAME/$APP
deploy-my-app:
docker:
- image: cimg/python:3.10
steps:
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- run:
name: Configure kubectl
command: |
aws eks --region $AWS_REGION update-kubeconfig --name $EKS_CLUSTER_NAME
- run:
name: Deploy image to EKS cluster
command: |
kubectl apply -f votingapp-kubernetes/app-voting-kubernetes.yaml
sleep 300
kubectl get pods
kubectl describe pods
# kubectl get services
# kubectl get service voting-service -n voting-application
kubectl get service voting-service -n voting-application -o jsonpath='{.status.loadBalancer.ingress[0].hostname}'
configure-domain:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: .
- checkout
- install_awscli
- install_terraform
- install_kubectl
- configure_kubectl
- run:
name: Terraform init
command: |
cd terraform-domain/
terraform init -input=false
- persist_to_workspace:
root: .
paths:
- .
plan-domain:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: .
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- install_terraform
- run:
name: Terraform plan
command: |
cd terraform-domain/
terraform plan -out tf-apply
- persist_to_workspace:
root: .
paths:
- .
apply-domain:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: .
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- install_terraform
- run:
name: Terraform apply
command: |
cd terraform-domain/
terraform apply -auto-approve tf-apply
- persist_to_workspace:
root: .
paths:
- .
plan-destroy-domain:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: .
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- install_terraform
- run:
name: terraform create destroy plan
command: |
cd terraform-domain/
terraform plan -destroy -out tf-destroy
- persist_to_workspace:
root: .
paths:
- .
destroy-domain:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: .
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- install_terraform
- run:
name: terraform destroy
command: |
cd terraform-domain/
terraform apply -auto-approve tf-destroy
delete-all-pods:
docker:
- image: cimg/python:3.10
steps:
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- run:
name: Delete from EKS cluster
command: |
# kubectl apply -f kubernetes-sock-shop/manifests-monitoring/
# bash setup.sh
kubectl delete --all pods -n sock-shop
kubectl delete --all services -n sock-shop
kubectl delete --all deployments -n sock-shop
kubectl delete --all pods -n default
kubectl delete --all services -n default
kubectl delete --all deployments -n default
sock-shop:
docker:
- image: cimg/python:3.10
steps:
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- run:
name: Deploy sock-shop to EKS cluster
command: |
kubectl create namespace sock-shop
kubectl apply -f kubernetes-sock-shop
sleep 200
kubectl get services -n sock-shop
# kubectl get svc -n sock-shop -o jsonpath='{.items[?(@.spec.type=="LoadBalancer")].status.loadBalancer.ingress[0].ip}'
# kubectl get service -n sock-shop front-end -o jsonpath='{.status.loadBalancer.ingress[0].ip}'
kubectl get service front-end -n sock-shop -o jsonpath='{.status.loadBalancer.ingress[0].hostname}'
prometheus:
docker:
- image: cimg/python:3.10
steps:
- checkout
- install_awscli
- install_kubectl
- configure_kubectl
- run:
name: Deploy image to EKS cluster
command: |
kubectl apply -f kubernetes-sock-shop/manifests-monitoring/
bash setup.sh
# kubectl delete --all pods -n sock-shop
# kubectl delete --all services -n sock-shop
# kubectl delete --all deployments -n sock-shop
# kubectl delete --all pods -n default
# kubectl delete --all services -n default
# kubectl delete --all deployments -n default
# - delete-all-pods
workflows:
version: 2
deploy-apps:
jobs:
# - init
# - plan:
# requires: [init]
# - hold-apply:
# type: approval
# requires: [plan]
# - apply:
# requires: [hold-apply]
# - plan-destroy:
# requires: [apply, sock-shop, prometheus]
# - hold-destroy:
# type: approval
# requires: [plan-destroy]
# - destroy:
# requires: [hold-destroy]
# - delete-all-pods:
# requires: [hold-destroy]
# - build-my-app:
# requires: [apply]
# - deploy-my-app
# requires: [apply]
# requires: [build-my-app]
# - sock-shop:
# requires: [apply]
# - prometheus:
# requires: [apply]
- configure-domain
# # requires: [sock-shop, prometheus, deploy-my-app]
- plan-domain:
requires: [configure-domain]
- hold-apply-domain:
type: approval
requires: [plan-domain]
- apply-domain:
requires: [hold-apply-domain]
- plan-destroy-domain:
requires: [apply-domain]
- hold-destroy-domain:
type: approval
requires: [plan-destroy-domain]
- destroy-domain:
requires: [hold-destroy-domain]