-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
226 lines (215 loc) · 5.9 KB
/
.gitlab-ci.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
stages:
- build
- image
- chart
# ------------------------ cast-be
build cast-be:
stage: build
image: daystram/go-builder:1.15
script:
- cd cast-be
- go mod tidy
- go build -a -o app .
artifacts:
paths:
- cast-be/app
image dev cast-be:
stage: image
image: docker:19.03.12
needs: ["build cast-be"]
environment:
name: development-be
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-be
- docker build --tag $CI_REGISTRY_IMAGE:be-dev .
- docker push $CI_REGISTRY_IMAGE:be-dev
when: manual
only:
- branches
except:
- master
image prod cast-be:
stage: image
image: docker:19.03.12
needs: ["build cast-be"]
environment:
name: production-be
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-be
- docker build -t $CI_REGISTRY_IMAGE:be -t $CI_REGISTRY_IMAGE:be-$CI_COMMIT_TAG .
- docker push $CI_REGISTRY_IMAGE:be
- docker push $CI_REGISTRY_IMAGE:be-$CI_COMMIT_TAG
when: on_success
only:
- tags
# ------------------------ cast-is
build cast-is:
stage: build
image: daystram/go-builder:1.15
script:
- cd cast-is
- go mod tidy
- go build -a -o app .
artifacts:
paths:
- cast-is/app
image dev cast-is:
stage: image
image: docker:19.03.12
needs: ["build cast-is"]
environment:
name: development-is
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-is
- docker build --tag $CI_REGISTRY_IMAGE:is-dev .
- docker push $CI_REGISTRY_IMAGE:is-dev
when: manual
only:
- branches
except:
- master
image prod cast-is:
stage: image
image: docker:19.03.12
needs: ["build cast-is"]
environment:
name: production-is
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-is
- docker build -t $CI_REGISTRY_IMAGE:is -t $CI_REGISTRY_IMAGE:is-$CI_COMMIT_TAG .
- docker push $CI_REGISTRY_IMAGE:is
- docker push $CI_REGISTRY_IMAGE:is-$CI_COMMIT_TAG
when: on_success
only:
- tags
# ------------------------ cast-fe
build cast-fe:
stage: build
image: node:lts-alpine
script:
- cd cast-fe
- yarn install
- yarn build
artifacts:
paths:
- cast-fe/dist/
image dev cast-fe:
stage: image
image: docker:19.03.12
needs: ["build cast-fe"]
environment:
name: development-fe
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-fe
- cp $FE_ENV_FILE ./.env.production
- docker build --tag $CI_REGISTRY_IMAGE:fe-dev .
- docker push $CI_REGISTRY_IMAGE:fe-dev
when: manual
only:
- branches
except:
- master
image prod cast-fe:
stage: image
image: docker:19.03.12
needs: ["build cast-fe"]
environment:
name: production-fe
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:19.03.12-dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
script:
- cd cast-fe
- cp $FE_ENV_FILE ./.env.production
- docker build -t $CI_REGISTRY_IMAGE:fe -t $CI_REGISTRY_IMAGE:fe-$CI_COMMIT_TAG .
- docker push $CI_REGISTRY_IMAGE:fe
- docker push $CI_REGISTRY_IMAGE:fe-$CI_COMMIT_TAG
when: on_success
only:
- tags
# ------------------------ chart
chart dev cast:
stage: chart
image: daystram/k8s-tools:latest
needs: ["image dev cast-be", "image dev cast-is", "image dev cast-fe"]
variables:
APPLICATION_NAME: "cast"
APPLICATION_VERSION: "v0.0.0-development"
before_script:
- git config --global user.name "$BOTDAYSTRAM_NAME"
- git config --global user.email "$BOTDAYSTRAM_EMAIL"
- mkdir -p ~/.ssh && eval `ssh-agent -s` && ssh-keyscan github.com >> ~/.ssh/known_hosts
- cat $BOTDAYSTRAM_KEY_FILE | ssh-add -
- cat $KUBECONFIG_FILE > $KUBECONFIG && chmod 700 $KUBECONFIG
script:
- git clone git@github.com:daystram/helm-charts.git
- cp -r .daystram helm-charts/docs/
- cd helm-charts/docs/
- curl -sfL https://charts.daystram.com/build.sh | sh -s - $APPLICATION_NAME $APPLICATION_VERSION
- rm -rf .daystram/
- git add .
- 'git commit -m "feat: added chart for ${APPLICATION_NAME}@${APPLICATION_VERSION}"'
- git push
when: on_success
only:
- branches
except:
- master
chart prod cast:
stage: chart
image: daystram/k8s-tools:latest
needs: ["image prod cast-be", "image prod cast-is", "image prod cast-fe"]
variables:
APPLICATION_NAME: "cast"
APPLICATION_VERSION: "$CI_COMMIT_TAG"
before_script:
- git config --global user.name "$BOTDAYSTRAM_NAME"
- git config --global user.email "$BOTDAYSTRAM_EMAIL"
- mkdir -p ~/.ssh && eval `ssh-agent -s` && ssh-keyscan github.com >> ~/.ssh/known_hosts
- cat $BOTDAYSTRAM_KEY_FILE | ssh-add -
- cat $KUBECONFIG_FILE > $KUBECONFIG && chmod 700 $KUBECONFIG
script:
- git clone git@github.com:daystram/helm-charts.git
- cp -r .daystram helm-charts/docs/
- cd helm-charts/docs/
- curl -sfL https://charts.daystram.com/build.sh | sh -s - $APPLICATION_NAME $APPLICATION_VERSION
- rm -rf .daystram/
- git add .
- 'git commit -m "feat: added chart for ${APPLICATION_NAME}@${APPLICATION_VERSION}"'
- git push
when: on_success
only:
- tags