-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (107 loc) · 3.84 KB
/
sync-and-deploy.yaml
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
name: Deploy to EKS
on:
push:
branches:
- main
- dev
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
jobs:
terraform-apply:
name: Sync Terraform
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./terraform
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Determine Deployment Stage
id: determine_stage
run: |
if [[ "${{ github.ref_name }}" == "main" ]]; then
echo "stage=prod" >> $GITHUB_ENV
else
echo "stage=dev" >> $GITHUB_ENV
fi
- name: Terraform Apply
id: terraform-apply
uses: ./.github/actions/terraform-apply
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_BASE_REGION }}
tfstate-bucket: ${{ secrets.TFSTATE_BUCKET }}
tfstate-key: ${{ secrets.TFSTATE_KEY }}
stage: ${{ env.stage }}
deploy:
needs: terraform-apply
name: Deploy API
runs-on: ubuntu-latest
outputs:
message: ${{ steps.verify-deployment.outputs.status }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Determine Deployment Stage
id: determine_stage
run: |
if [[ "${{ github.ref_name }}" == "main" ]]; then
echo "stage=prod" >> $GITHUB_ENV
else
echo "stage=dev" >> $GITHUB_ENV
fi
- name: Download Terraform Outputs
uses: actions/download-artifact@v3
with:
name: terraform-outputs
- name: Set Environment Variables from Terraform Outputs
run: |
echo "AWS_REGION=$(jq -r .region.value tf_outputs.json)" >> $GITHUB_ENV
echo "EKS_CLUSTER_NAME=$(jq -r .cluster_name.value tf_outputs.json)" >> $GITHUB_ENV
echo "ECR_REPOSITORY=$(jq -r .repository_name.value tf_outputs.json)" >> $GITHUB_ENV
echo "CLUSTER_ENDPOINT=$(jq -r .cluster_ip.value tf_outputs.json)" >> $GITHUB_ENV
- name: Build, tag, and push image to Amazon ECR
id: build-push-image
uses: ./.github/actions/build-push-image
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION }}
ecr-repository: ${{ env.ECR_REPOSITORY }}
dockerfile: ./Dockerfile
stage: ${{ env.stage }}
- name: Update Kubeconfig
run: aws eks update-kubeconfig --name ${{ env.EKS_CLUSTER_NAME }} --region ${{ env.AWS_REGION }}
- name: Deploy to EKS
working-directory: ./k8s
env:
IMAGE: ${{ steps.build-push-image.outputs.image }}
STAGE: ${{ env.stage }}
run: |
sed -i "s|<IMAGE>|${IMAGE}|g" ${STAGE}/deployment.yaml
kubectl apply -f ${STAGE}
- name: Verify Deployment
id: verify-deployment
shell: bash
run: |
kubectl rollout status deployment/${STAGE} --timeout=5m
if [ $? -eq 0 ]; then
echo "status=Deployment successful on ${{ env.CLUSTER_ENDPOINT }}!" >> $GITHUB_OUTPUT
else
echo "status=Deployment failed!" >> $GITHUB_OUTPUT
exit 1
fi
notify-slack:
needs: deploy
runs-on: ubuntu-latest
steps:
- uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: "#deployments"
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_USERNAME: "Deployer on Cloudflare"
SLACK_MESSAGE: ${{ needs.deploy.outputs.message }}
SLACK_COLOR: ${{ job.status }}
SLACK_ICON: "https://avatars.githubusercontent.com/u/44036562?s=200&v=4"