-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
65 lines (60 loc) · 1.24 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
variables:
WERF_VERSION: 1.2 stable
stages:
- deploy
# Base deployment
.deploy:
stage: deploy
script:
- source ~/.bashrc
- echo $PATH
- type multiwerf && source $(multiwerf use ${WERF_VERSION} --as-file)
- type werf && source $(werf ci-env gitlab --as-file)
- werf converge
--namespace ${CI_NAMESPACE}
--set "global.ci_url=$(cut -d / -f 3 <<< $CI_ENVIRONMENT_URL)"
tags:
- werf
# Dev deployment
Deploy to Dev:
extends: .deploy
environment:
name: dev
url: https://dev.x9nka7bv7a.example.com
variables:
CI_NAMESPACE: veverse-ps-dev
ENVIRONMENT: dev
LOG_LEVEL: debug
only:
- branches
tags:
- aws
# Production deployment, deploy only release tags
Deploy to Test:
extends: .deploy
environment:
name: test
url: https://test.x9nka7bv7a.example.com
variables:
CI_NAMESPACE: veverse-ps-test
ENVIRONMENT: test
LOG_LEVEL: info
only:
- branches
when: manual
tags:
- aws
# Production deployment, deploy only release tags
Deploy to Production:
extends: .deploy
environment:
name: prod
url: https://x9nka7bv7a.example.com
variables:
CI_NAMESPACE: veverse-ps-prod
ENVIRONMENT: prod
only:
- tags
when: manual
tags:
- aws