-
Notifications
You must be signed in to change notification settings - Fork 1
/
deploy.yml
290 lines (267 loc) · 8.01 KB
/
deploy.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
280
281
282
283
284
285
286
287
288
289
290
.auto-deploy:
image: "registry.gitlab.com/gitlab-org/cluster-integration/auto-deploy-image:v0.10.0"
#variables:
#CI_DEBUG_TRACE: "true"
#review:
# extends: .auto-deploy
# stage: review
# script:
# - kubectl config set-cluster k8s --server="${SERVER}"
# - kubectl config set clusters.k8s.certificate-authority-data ${CERTIFICATE_AUTHORITY_DATA}
# - kubectl config set-credentials gitlab --token="${USER_TOKEN}"
# - kubectl config set-context default --cluster=k8s --user=gitlab
# - kubectl config use-context default
# - kubectl delete --all deployment --namespace ${KUBE_NAMESPACE}
# - kubectl delete --all service --namespace ${KUBE_NAMESPACE}
# - auto-deploy check_kube_domain
# - auto-deploy download_chart
# - auto-deploy ensure_namespace
## - auto-deploy initialize_tiller
# - tiller -alsologtostderr &
# - auto-deploy create_secret
# - auto-deploy deploy
# - auto-deploy persist_environment_url
# environment:
# name: review/$CI_COMMIT_REF_NAME
# url: http://$CI_PROJECT_ID-$CI_ENVIRONMENT_SLUG.$KUBE_INGRESS_BASE_DOMAIN
# on_stop: stop_review
# artifacts:
# paths: [environment_url.txt]
# only:
# refs:
# - branches
# - tags
# kubernetes: active
# except:
# refs:
# - master
# variables:
# - $REVIEW_DISABLED
#
#stop_review:
# extends: .auto-deploy
# stage: cleanup
# variables:
# GIT_STRATEGY: none
# script:
# - auto-deploy initialize_tiller
# - auto-deploy delete
# environment:
# name: review/$CI_COMMIT_REF_NAME
# action: stop
# when: manual
# allow_failure: true
# only:
# refs:
# - branches
# - tags
# kubernetes: active
# except:
# refs:
# - master
# variables:
# - $REVIEW_DISABLED
# Staging deploys are disabled by default since
# continuous deployment to production is enabled by default
# If you prefer to automatically deploy to staging and
# only manually promote to production, enable this job by setting
# STAGING_ENABLED.
staging:
extends: .auto-deploy
stage: staging
script:
- kubectl config set-cluster k8s --server="${SERVER}"
- kubectl config set clusters.k8s.certificate-authority-data ${CERTIFICATE_AUTHORITY_DATA}
- kubectl config set-credentials gitlab --token="${USER_TOKEN}"
- kubectl config set-context default --cluster=k8s --user=gitlab
- kubectl config use-context default
- echo "kubectl delete --all deployment --namespace ${KUBE_NAMESPACE}"
- kubectl delete --all deployment --namespace ${KUBE_NAMESPACE} || echo ""
- kubectl delete --all service --namespace ${KUBE_NAMESPACE} || echo ""
#- sed -i "s#helm upgrade --install#helm upgrade --install --force#g" /usr/local/bin/auto-deploy
#- cat /usr/local/bin/auto-deploy
- auto-deploy check_kube_domain
- auto-deploy download_chart
- auto-deploy ensure_namespace
#- auto-deploy initialize_tiller
- tiller -alsologtostderr &
- auto-deploy delete
- auto-deploy create_secret
- auto-deploy deploy
- echo $CI_ENVIRONMENT_URL
environment:
name: ${CI_PROJECT_NAME}-${CI_BUILD_STAGE}
url: http://${CI_PROJECT_NAME}-${CI_BUILD_STAGE}.$KUBE_INGRESS_BASE_DOMAIN
only:
# refs:
# - master
kubernetes: active
variables:
- $STAGING_ENABLED
# Canaries are disabled by default, but if you want them,
# and know what the downsides are, you can enable this by setting
# CANARY_ENABLED.
canary:
extends: .auto-deploy
stage: canary
script:
- auto-deploy check_kube_domain
- auto-deploy download_chart
- auto-deploy ensure_namespace
- auto-deploy initialize_tiller
- auto-deploy create_secret
- auto-deploy deploy canary
environment:
name: ${CI_PROJECT_NAME}-${CI_BUILD_STAGE}
url: http://$CI_PROJECT_PATH_SLUG.$KUBE_INGRESS_BASE_DOMAIN
when: manual
only:
# refs:
# - master
kubernetes: active
variables:
- $CANARY_ENABLED
.production: &production_template
extends: .auto-deploy
stage: production
script:
- kubectl config set-cluster k8s --server="${SERVER}"
- kubectl config set clusters.k8s.certificate-authority-data ${CERTIFICATE_AUTHORITY_DATA}
- kubectl config set-credentials gitlab --token="${USER_TOKEN}"
- kubectl config set-context default --cluster=k8s --user=gitlab
- kubectl config use-context default
# - kubectl delete --all deployment --namespace ${KUBE_NAMESPACE} || echo ""
# - kubectl delete --all service --namespace ${KUBE_NAMESPACE} || echo ""
#- kubectl delete ingress orchestartor-ingress --namespace ${KUBE_NAMESPACE} || echo ""
- sed -i "s#helm upgrade --install#helm upgrade --install --force#g" /usr/local/bin/auto-deploy
- export CI_ENVIRONMENT_SLUG="${CI_PROJECT_NAME}-${CI_BUILD_STAGE}"
- echo $CI_ENVIRONMENT_SLUG
- auto-deploy check_kube_domain
- auto-deploy download_chart
- auto-deploy ensure_namespace
#- auto-deploy initialize_tiller
- tiller -alsologtostderr &
- auto-deploy delete
- auto-deploy create_secret
- auto-deploy deploy
- auto-deploy delete canary
- auto-deploy delete rollout
- auto-deploy persist_environment_url
- echo $CI_ENVIRONMENT_URL
# variables:
# CI_DEBUG_TRACE: "true"
environment:
name: ${CI_PROJECT_NAME}-${CI_BUILD_STAGE}
url: http://${CI_PROJECT_NAME}-${CI_BUILD_STAGE}.$KUBE_INGRESS_BASE_DOMAIN
artifacts:
paths: [environment_url.txt]
production:
<<: *production_template
only:
# refs:
# - master
# - remote_deployment
kubernetes: active
except:
variables:
- $STAGING_ENABLED
- $CANARY_ENABLED
- $INCREMENTAL_ROLLOUT_ENABLED
- $INCREMENTAL_ROLLOUT_MODE
production_manual:
<<: *production_template
when: manual
allow_failure: false
only:
# refs:
# - master
kubernetes: active
variables:
- $STAGING_ENABLED
- $CANARY_ENABLED
except:
variables:
- $INCREMENTAL_ROLLOUT_ENABLED
- $INCREMENTAL_ROLLOUT_MODE
# This job implements incremental rollout on for every push to `master`.
.rollout: &rollout_template
extends: .auto-deploy
script:
- auto-deploy check_kube_domain
- auto-deploy download_chart
- auto-deploy ensure_namespace
- auto-deploy initialize_tiller
- auto-deploy create_secret
- auto-deploy deploy rollout $ROLLOUT_PERCENTAGE
- auto-deploy scale stable $((100-ROLLOUT_PERCENTAGE))
- auto-deploy delete canary
- auto-deploy persist_environment_url
environment:
name: production
url: http://$CI_PROJECT_PATH_SLUG.$KUBE_INGRESS_BASE_DOMAIN
artifacts:
paths: [environment_url.txt]
.manual_rollout_template: &manual_rollout_template
<<: *rollout_template
stage: production
when: manual
# This selectors are backward compatible mode with $INCREMENTAL_ROLLOUT_ENABLED (before 11.4)
only:
# refs:
# - master
kubernetes: active
variables:
- $INCREMENTAL_ROLLOUT_MODE == "manual"
- $INCREMENTAL_ROLLOUT_ENABLED
except:
variables:
- $INCREMENTAL_ROLLOUT_MODE == "timed"
.timed_rollout_template: &timed_rollout_template
<<: *rollout_template
when: delayed
start_in: 5 minutes
only:
# refs:
# - master
kubernetes: active
variables:
- $INCREMENTAL_ROLLOUT_MODE == "timed"
timed rollout 10%:
<<: *timed_rollout_template
stage: incremental rollout 10%
variables:
ROLLOUT_PERCENTAGE: 10
timed rollout 25%:
<<: *timed_rollout_template
stage: incremental rollout 25%
variables:
ROLLOUT_PERCENTAGE: 25
timed rollout 50%:
<<: *timed_rollout_template
stage: incremental rollout 50%
variables:
ROLLOUT_PERCENTAGE: 50
timed rollout 100%:
<<: *timed_rollout_template
<<: *production_template
stage: incremental rollout 100%
variables:
ROLLOUT_PERCENTAGE: 100
#rollout 10%:
# <<: *manual_rollout_template
# variables:
# ROLLOUT_PERCENTAGE: 10
#
#rollout 25%:
# <<: *manual_rollout_template
# variables:
# ROLLOUT_PERCENTAGE: 25
#
#rollout 50%:
# <<: *manual_rollout_template
# variables:
# ROLLOUT_PERCENTAGE: 50
rollout 100%:
<<: *manual_rollout_template
<<: *production_template
allow_failure: false