-
Notifications
You must be signed in to change notification settings - Fork 0
171 lines (153 loc) · 5.74 KB
/
cicd v2.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
name: CI / CD v2
on:
workflow_dispatch:
push:
branches:
- chore/infrastructure-migration
paths:
- "api/**"
- ".github/workflows/*"
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and run tests
run: docker compose up --build --exit-code-from test test
- name: Clean up
run: docker compose down
# BUILD AND DEPLOY
set_environment:
runs-on: ubuntu-latest
name: Set Deployment Environment
if: ${{ github.event_name == 'workflow_dispatch' || github.ref_name == 'develop' || github.ref_name == 'main' }}
outputs:
env_name: ${{ steps.set_env.outputs.env_name }}
steps:
- id: set_env
run: echo "env_name=develop" >> $GITHUB_ENV
# run: echo "env_name=${{ github.ref_name }}" >> $GITHUB_OUTPUT
build_api:
name: build-api
needs: [ set_environment ]
environment:
name: ${{ needs.set_environment.outputs.env_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
aws-region: ${{ vars.TF_AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build, tag, and push Client image to Amazon ECR
uses: docker/build-push-action@v5
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
file: ./api/Dockerfile
push: true
tags: |
${{ steps.login-ecr.outputs.registry }}/${{ secrets.TF_API_REPOSITORY_NAME }}:${{ github.sha }}
${{ steps.login-ecr.outputs.registry }}/${{ secrets.TF_API_REPOSITORY_NAME }}:${{ needs.set_environment.outputs.env_name }}
deploy:
name: deploy
needs: [ build_api ]
runs-on: ubuntu-latest
environment:
name: ${{ needs.set_environment.outputs.env_name }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
aws-region: ${{ vars.TF_AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Generate docker compose file
working-directory: infrastructure/source_bundle
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY_API: ${{ secrets.TF_API_REPOSITORY_NAME }}
IMAGE_TAG: ${{ needs.set_environment.outputs.env_name }}
AUTH_TOKEN: ${{ secrets.TF_AUTH_TOKEN }}
TIFF_PATH: ${{ vars.TF_TIFF_PATH }}
run: |
cat <<EOF >> docker-compose.yml
version: '3.9'
services:
api:
image: $ECR_REGISTRY/$ECR_REPOSITORY_API:$IMAGE_TAG
ports:
- "8000:8000"
environment:
- AUTH_TOKEN=${AUTH_TOKEN}
- TIFF_PATH=${TIFF_PATH}
- GRID_TILES_PATH=${GRID_TILES_PATH}
volumes:
- ./data:/opt/api/data
networks:
- amazonia360-network
restart: always
networks:
amazonia360-network:
driver: bridge
EOF
- name: Generate .ebextensions/20_sync_data.config
working-directory: infrastructure/source_bundle
env:
PROJECT_NAME: ${{ vars.TF_PROJECT_NAME }}
ENV_NAME: ${{ needs.set_environment.outputs.env_name }}
AWS_REGION: ${{ vars.TF_AWS_REGION }}
run: |
mkdir -p .ebextensions
cat <<EOF > .ebextensions/20_sync_data.config
commands:
20_install_awscli:
command: |
sudo apt-get update -y
sudo apt-get install -y awscli
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
21_create_data_folder:
command: mkdir -p /var/app/current/api/data
cwd: /home/ec2-user
22_sync_s3_bucket:
command: aws s3 sync s3://${PROJECT_NAME}-${ENV_NAME}-bucket /var/app/current/api/data
cwd: /home/ec2-user
env:
AWS_DEFAULT_REGION: ${AWS_REGION}
EOF
- name: Generate zip file
working-directory: infrastructure/source_bundle
run: |
zip -r deploy.zip * .[^.]*
- name: Deploy to Amazon EB
uses: einaregilsson/beanstalk-deploy@v21
with:
aws_access_key: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
application_name: ${{ vars.TF_PROJECT_NAME }}-${{ needs.set_environment.outputs.env_name }}
environment_name: ${{ vars.TF_PROJECT_NAME }}-${{ needs.set_environment.outputs.env_name }}-environment
region: ${{ vars.TF_AWS_REGION }}
version_label: ${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
deployment_package: infrastructure/source_bundle/deploy.zip
wait_for_deployment: true