-
Notifications
You must be signed in to change notification settings - Fork 0
146 lines (141 loc) · 4.76 KB
/
build-and-push.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
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
name: Build, Push, and Deploy
on:
push:
branches:
- 'develop'
- 'master'
tags:
- 'v.*'
pull_request:
types:
- 'opened'
- 'synchronize'
- 'reopened'
- 'closed'
branches:
- 'develop'
- 'master'
jobs:
docker:
name: Build Container Image
runs-on: ubuntu-latest
outputs:
deploy_tag: ${{ steps.deploy-tag.outputs.deploy_tag }}
image_name: ${{ steps.deploy-tag.outputs.image_name }}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
gcr.io/skyviewer/rubinobs-api,enable=${{ github.ref != 'master' && github.ref_type != 'tag' && github.base_ref == 'develop' }}
gcr.io/edc-int-6c5e/rubinobs-api,enable=${{ github.ref == 'master' || github.base_ref == 'master'}}
gcr.io/edc-prod-eef0/rubinobs-api,enable=${{ github.ref_type == 'tag'}}
flavor: |
latest=${{ github.event_name == 'push'}}
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
-
name: Parse deployment tag
id: deploy-tag
run: |
python -c 'import yaml;f=open("docker-compose.yml");y=yaml.safe_load(f)'
full_tag=$(echo "$DOCKER_METADATA_OUTPUT_JSON" | jq -r '.tags[] | select(. | test(":sha-|:v."))')
echo "$full_tag"
echo deploy_tag=$(echo "$full_tag" | cut -f2 -d:) >> "$GITHUB_OUTPUT"
echo image_name=$(echo "$full_tag" | cut -f1 -d:) >> "$GITHUB_OUTPUT"
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to GCP Dev
uses: 'google-github-actions/auth@v2'
if: ${{ github.ref != 'master' && github.ref_type != 'tag' && github.base_ref == 'develop' }}
with:
credentials_json: ${{ secrets.DEV_SA_KEY }}
-
name: Login to GCP Int
uses: 'google-github-actions/auth@v2'
if: ${{ github.ref == 'master' || github.base_ref == 'master'}}
with:
credentials_json: ${{ secrets.SKYVIEWER_INT_SERVICE_ACCOUNT }}
-
name: Login to GCP Prod
uses: 'google-github-actions/auth@v2'
if: ${{ github.ref_type == 'tag' }}
with:
credentials_json: ${{ secrets.PIPELINE_EPO_PROD_PROJECT }}
-
name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v2'
-
run: gcloud --quiet auth configure-docker
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: |
type=gha
cache-from: |
type=gha
build-args: |
BASE_TAG=k8s
deploy-prod:
name: Deploy Prod
needs: docker
uses: ./.github/workflows/deploy-gke.yaml
secrets: inherit
if: ${{ github.ref_type == 'tag' }}
with:
environment: prod
image_tag: ${{ needs.docker.outputs.deploy_tag }}
image_name: ${{ needs.docker.outputs.image_name }}
deploy-int:
name: Deploy Int
needs: docker
runs-on: ubuntu-latest
# uses: ./.github/workflows/deploy-gke.yaml
if: ${{ github.ref == 'master' || (github.base_ref == 'master') }}
steps:
- name: Generate Webhook Payload
id: payload
run: |-
export PARAMETERS="api.image.tag=${{ needs.docker.outputs.deploy_tag }}
api.image.repository=${{ needs.docker.outputs.image_name }}"
export DATA="{
\"event_type\": \"app_update_values\",
\"client_payload\": {
\"app_name\": \"rubinobs-site\",
\"environment_name\": \"int\",
\"parameters\": $(echo $PARAMETERS | jq -Rn '[inputs]')
}
}"
echo "data=$(echo $DATA | jq -rc '.')" >> "$GITHUB_OUTPUT"
- name: Call Deployment Webhook
env:
WEBHOOK_URL: https://api.github.com/repos/lsst-epo/edc-deploy/dispatches
DATA: ${{ steps.payload.outputs.data }}
run: |-
curl -X POST $WEBHOOK_URL \
-H 'Content-Type: application/json' \
-H 'Authorization: ${{ github.token }}'
-d "${{ fromJSON(steps.payload.outputs.data) }}"