-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitlab-ci-base-template.yml
279 lines (257 loc) · 5.58 KB
/
.gitlab-ci-base-template.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
image: docker.anders.fi/anders/ci-configuration:v3
stages:
- build
- test
- post-test
- review-service
- review
- staging
- production
- cleanup_review
variables:
# Default usernames and passwords for postgres setups
# Note: These are the credentials that will be used for testing
DATABASE_USER: user
DATABASE_PASSWORD: testing-password
# Which version of Postgres that will be installed for testing
# and for preview environments
POSTGRES_VERSION_TAG: "9.6"
# Which version of MySQL should be used if enabled
MYSQL_VERSION_TAG: "5.7"
# Default name for the database
DATABASE_DB: "$CI_ENVIRONMENT_SLUG"
# Default place to store service artifacts
SERVICE_ARTIFACT_FOLDER: "service_artifacts"
BUILD_ARTIFACT_FOLDER: "build_artifacts"
# Default PodSecurity label
K8S_POD_SECURITY: baseline
# Kolga branch used in the pipeline
KOLGA_BRANCH: "v3"
.build:
services:
- docker:24.0.5-dind
stage: build
script:
- devops create_images
only:
- merge_requests
- master
- main
- qa
- /^r-[\d]+$/
except:
variables:
- $BUILD_DISABLED
artifacts:
paths:
- $BUILD_ARTIFACT_FOLDER/
expire_in: 3 days
interruptible: true
retry:
max: 2
when:
- runner_system_failure
.docker-image-scan:
stage: test
image: aquasec/trivy
script:
- trivy image --clear-cache
- trivy image --no-progress --exit-code 1 --severity HIGH ${DEVELOPMENT_IMAGE}
variables:
TRIVY_USERNAME: ${CI_REGISTRY_USER}
TRIVY_PASSWORD: ${CI_REGISTRY_PASSWORD}
only:
- merge_requests
- master
- main
- qa
- /^r-[\d]+$/
.sonarqube:
stage: post-test
image: sonarsource/sonar-scanner-cli:latest
variables:
SONAR_PROJECT_BASE_DIR: $CI_PROJECT_DIR
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar"
GIT_DEPTH: 0
script:
- sonar-scanner
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
allow_failure: true
only:
- merge_requests
- master
- main
- /^r-[\d]+$/
- v3
except:
variables:
- $SONARQUBE_DISABLED
.test:
services:
- docker:24.0.5-dind
stage: test
script:
- set_env_from_devops docker_test_image BUILT_DOCKER_TEST_IMAGE
- devops test_setup
- make test
only:
- merge_requests
- master
- main
- qa
except:
variables:
- $TEST_DISABLED
interruptible: true
retry:
max: 2
when:
- runner_system_failure
.light-test:
stage: test
tags:
- light
only:
- merge_requests
- master
- main
- qa
except:
variables:
- $TEST_DISABLED
interruptible: true
retry:
max: 2
when:
- runner_system_failure
.review-service:
stage: review-service
variables:
DEFAULT_TRACK: review
TRACK: review
environment:
name: qa/r/${CI_COMMIT_REF_SLUG}
on_stop: stop_review
auto_stop_in: 2 weeks
artifacts:
paths:
- $SERVICE_ARTIFACT_FOLDER/
expire_in: 3 days
only:
refs:
- merge_requests
kubernetes: active
except:
variables:
- $REVIEW_DISABLED
interruptible: true
.review-no-env:
stage: review
script:
- devops deploy_application
variables:
K8S_INGRESS_PREVENT_ROBOTS: 1
TRACK: review
VAULT_PROJECT_SECRET_NAME: $CI_PROJECT_NAME/$TRACK
only:
refs:
- merge_requests
kubernetes: active
except:
refs:
- master
- main
variables:
- $REVIEW_DISABLED
interruptible: true
.review:
extends: .review-no-env
environment:
name: qa/r/${CI_COMMIT_REF_SLUG}
url: https://$CI_PROJECT_PATH_SLUG-$CI_ENVIRONMENT_SLUG.$KUBE_INGRESS_BASE_DOMAIN
on_stop: stop_review
auto_stop_in: 2 weeks
.review-cleanup:
variables:
GIT_STRATEGY: none
TRACK: review
environment:
name: qa/r/${CI_COMMIT_REF_SLUG}
action: stop
stage: cleanup_review
dependencies: []
script:
- devops review_cleanup
only:
refs:
- merge_requests
kubernetes: active
except:
refs:
- master
- main
variables:
- $REVIEW_DISABLED
interruptible: true
.cleanup_review:
extends: .review-cleanup
allow_failure: false
when: on_failure
.stop_review:
extends: .review-cleanup
allow_failure: true
when: manual
.staging:
stage: staging
script:
- devops deploy_application
environment:
name: qa/staging
url: https://$CI_PROJECT_PATH_SLUG-qa.$KUBE_INGRESS_BASE_DOMAIN
kubernetes:
namespace: $K8S_STAGING_NAMESPACE
variables:
K8S_INGRESS_PREVENT_ROBOTS: 1
TRACK: staging
VAULT_PROJECT_SECRET_NAME: $CI_PROJECT_NAME/$TRACK
only:
refs:
- master
- main
kubernetes: active
except:
variables:
- $STAGING_DISABLED
interruptible: false
.production:
stage: production
script:
- devops deploy_application
environment:
name: production
url: https://$CI_PROJECT_PATH_SLUG.$KUBE_INGRESS_BASE_DOMAIN
kubernetes:
namespace: $K8S_STABLE_NAMESPACE
variables:
TRACK: stable
VAULT_PROJECT_SECRET_NAME: $CI_PROJECT_NAME/$TRACK
only:
refs:
- /^r-[\d]+$/
kubernetes: active
except:
refs:
# This will prevent branches with name ^r-[\d]+
- branches
variables:
- $PRODUCTION_DISABLED
interruptible: false
before_script:
- git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@git.anders.fi/".insteadOf "[email protected]:"
- git clone --single-branch --branch ${KOLGA_BRANCH} [email protected]:anders/ci-configuration.git /tmp/devops/ci-configuration
- export PATH="$PATH:/tmp/devops/ci-configuration"
- source /tmp/devops/ci-configuration/utils/shell_utils.sh
- set_docker_host