-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.gitlab-ci.yml
261 lines (225 loc) · 6.37 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
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
stages:
- docker
- prepare_stage
- dev
- stage
- prepare_release
- deploy_prod
###############################################################################
# ANCHORS
###############################################################################
.configure_gcloud_anchor: &configure_gcloud |
echo "$GITLAB_GCR_PUSH_SERVICE_ACCOUNT" > /root/gcp.json
gcloud auth activate-service-account --key-file /root/gcp.json
export GOOGLE_APPLICATION_CREDENTIALS=/root/gcp.json
gcloud auth configure-docker
.base_anchor: &base
variables:
CI_SERVER_URL: https://gitlab.com
TERM: xterm-color
REGISTRY_URL_CICD: eu.gcr.io/neptune-cicd/neptune
REGISTRY_URL_PROD: eu.gcr.io/neptune-poc/neptune
DOCKER_TLS_CERTDIR: ""
DOCKER_HOST: docker:2375
GIT_SUBMODULE_STRATEGY: recursive
image: eu.gcr.io/neptune-cicd/neptune/build-image-base:0.0.11
services:
- docker:18.09.7-dind
before_script:
- echo $HOSTNAME
- date
- *configure_gcloud
.base_anchor_stage: &base_stage
variables:
CI_SERVER_URL: https://gitlab.com
TERM: xterm-color
REGISTRY_URL_CICD: eu.gcr.io/neptune-cicd/neptune
REGISTRY_URL_PROD: eu.gcr.io/neptune-poc/neptune
GIT_SUBMODULE_STRATEGY: recursive
image: eu.gcr.io/neptune-cicd/neptune/build-image-base:0.0.11
before_script:
- echo $HOSTNAME
- date
- GITLAB_GCR_PUSH_SERVICE_ACCOUNT="${GITLAB_RUNNER_KUBERNETES_STAGE}"
- *configure_gcloud
.base_anchor_prod: &base_prod
variables:
CI_SERVER_URL: https://gitlab.com
TERM: xterm-color
REGISTRY_URL_CICD: eu.gcr.io/neptune-cicd/neptune
REGISTRY_URL_PROD: eu.gcr.io/neptune-poc/neptune
GIT_SUBMODULE_STRATEGY: recursive
image: eu.gcr.io/neptune-cicd/neptune/build-image-base:0.0.11
before_script:
- echo $HOSTNAME
- date
- GITLAB_GCR_PUSH_SERVICE_ACCOUNT="${GITLAB_RUNNER_KUBERNETES_PROD}"
- *configure_gcloud
.docker_build_job:
<<: *base
stage: docker
tags:
- build
only:
- branches
- tags
except:
- web
.release_chart_job:
<<: *base
stage: prepare_release
tags:
- deploy-prod
only:
- tags
except:
- branches
.deploy_prod_job:
<<: *base_prod
stage: deploy_prod
tags:
- deploy-prod
only:
- tags
except:
- branches
.deploy_stage_job:
<<: *base_stage
stage: stage
tags:
- deploy-stage-2
except:
- tags
- web
only:
- master
.deploy_refactor_job:
<<: *base_stage
stage: stage
tags:
- deploy-stage-2
except:
- tags
- web
only:
- refactor
.publish_component_anchor: &publish_component |
registry="$REGISTRY_URL_CICD"
if [ "$CI_COMMIT_TAG" == "" ]; then
version="${CI_COMMIT_SHA:0:8}"
./publish.sh $registry/docs:$version
else
version="${CI_COMMIT_TAG}"
./publish.sh $registry/docs:$version
echo ""
echo "Pushing docker to prod registry"
echo ""
docker tag "$registry/docs:$version" "$REGISTRY_URL_PROD/docs:$version"
GITLAB_GCR_PUSH_SERVICE_ACCOUNT="${GITLAB_GCR_PULL_CICD_PUSH_POC}"
echo "$GITLAB_GCR_PUSH_SERVICE_ACCOUNT" > /root/gcp.json
gcloud auth activate-service-account --key-file /root/gcp.json
export GOOGLE_APPLICATION_CREDENTIALS=/root/gcp.json
gcloud auth configure-docker
docker push "$REGISTRY_URL_PROD/docs:$version"
fi
.setup_helm: &setup |
helm repo remove stable || true
helm repo add neptune-charts "$CHART_REPO_URL" --username "$CHART_REPO_USER" --password "$CHART_REPO_PASS"
helm repo update
kubectl create namespace neptune || true
.release_chart: &release_chart |
version=$CI_COMMIT_TAG
registry="${REGISTRY_URL_PROD}"
mkdir -p cicd-release
helm package -u --app-version $version helm/charts/neptune-docs -d cicd-release/ --version $version
helm plugin install https://github.com/chartmuseum/helm-push
helm cm-push cicd-release/neptune-docs-$version.tgz neptune-charts
.release_prod: &release_prod |
version=$CI_COMMIT_TAG
registry="${REGISTRY_URL_PROD}"
mkdir -p cicd-release
./cicd/get_config.py "prod" "$registry" "$version" >deployment-values.yaml
cp deployment-values.yaml cicd-release/values.yaml
echo "Checking kubectl connection"
helm list
echo ""
echo "Values:"
echo ""
cat cicd-release/values.yaml
echo ""
helm upgrade -i \
neptune-docs \
neptune-charts/neptune-docs \
--timeout 600s \
--version $version \
--namespace neptune \
--values=cicd-release/values.yaml
.deploy_script: &deploy |
echo "Generating values file for stage deployment"
./cicd/get_config.py "$component" "${REGISTRY_URL_CICD}" "${CI_COMMIT_SHA:0:8}" >deployment-values.yaml
cat deployment-values.yaml
if helm status "$deployment" -n neptune &>/dev/null ; then
helm upgrade \
-n neptune \
--timeout 600s \
"$deployment" \
./helm/charts/neptune-docs \
--values=deployment-values.yaml
else
helm install \
--timeout 600s \
--namespace "neptune" \
"$deployment" \
./helm/charts/neptune-docs \
--values=deployment-values.yaml
fi
###############################################################################
# BUILDS
###############################################################################
###############################################################################
# docs
###############################################################################
build:
extends: .docker_build_job
script:
- *publish_component
###############################################################################
# STAGE DEPLOY
###############################################################################
deploy_stage:
extends: .deploy_stage_job
environment:
name: stage-docs
url: https://docs.stage.neptune.ai
script:
- *setup
- component="stage"
- deployment="neptune-docs"
- *deploy
deploy_refactor:
extends: .deploy_refactor_job
environment:
name: stage-docs
url: https://new-docs.stage.neptune.ai
script:
- *setup
- component="refactor"
- deployment="neptune-new-docs"
- *deploy
###############################################################################
# PROD DEPLOY
###############################################################################
deploy_chart:
extends: .release_chart_job
script:
- *setup
- *release_chart
deploy_prod:
extends: .deploy_prod_job
allow_failure: false
script:
- *setup
- *release_prod
artifacts:
paths:
- cicd-release