-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
191 lines (174 loc) · 5.18 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
default:
image:
name: "tokend/werf:0.0.9"
entrypoint: [""]
services:
- name: docker:20-dind
alias: docker
command: ["--tls=false"]
tags:
- "tokend"
variables:
DOCKER_DRIVER: overlay2
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
SERVICE: $CI_PROJECT_NAME
REGISTRY: registry.gitlab.com/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME
IMAGE_NAME: $REGISTRY:$CI_COMMIT_SHA
IMAGE_NAME_TAG: $REGISTRY:$CI_COMMIT_TAG
DH_IMAGE_NAME: $CI_PROJECT_ROOT_NAMESPACE/$CI_PROJECT_NAME
WERF_LOG_COLOR_MODE: "on"
WERF_IMAGES_REPO: $CI_REGISTRY_IMAGE
WERF_BUILDAH_MODE: auto
.before_script_template: &before_script_templ
before_script:
- werf version
- docker version
- echo $CI_REGISTRY
- echo $CI_REGISTRY_USER
- echo $CI_REGISTRY_PASSWORD
- echo $WERF_IMAGES_REPO
- echo $WERF_ADD_CUSTOM_TAG_1
stages:
- build-and-publish
# - code-review
- docs
#- deploy
#- update
- cleanup
Build and Publish:
stage: build-and-publish
<<: *before_script_templ
script:
- type werf && source $(werf ci-env gitlab --as-file)
- werf build --report-path=images-report.json
- docker pull $(cat images-report.json | jq -r .Images.service.DockerImageName)
- docker tag $(cat images-report.json | jq -r .Images.service.DockerImageName) $IMAGE_NAME
- docker push $IMAGE_NAME
except: [schedules]
interruptible: true
Build and Publish Tag:
stage: build-and-publish
only:
- tags
<<: *before_script_templ
script:
- type werf && source $(werf ci-env gitlab --as-file)
- werf build --report-path=images-report.json
- docker pull $(cat images-report.json | jq -r .Images.service.DockerImageName)
- docker tag $(cat images-report.json | jq -r .Images.service.DockerImageName) $IMAGE_NAME_TAG
- docker push $IMAGE_NAME_TAG
except: [schedules]
interruptible: true
# Code-Review:
# image: golang:1.16
# stage: code-review
# only:
# - merge_requests
# except: [schedules]
# interruptible: true
# variables:
# GIT_STRATEGY: clone
# GIT_CHECKOUT: "true"
# GIT_DEPTH: "0"
# before_script:
# - |
# raw='runner:
# \n\tgolangci-lint:
# \n\t\tcmd: golangci-lint run
# \n\t\terrorformat:
# \n\t\t\t- "%f:%l:%c: %m"'
# - echo -e $raw > reviewdog.yml
# - curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b ./bin
# - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.43.0
# script:
# - if [ -f reviewdog.yml ]; then ./bin/reviewdog -reporter=gitlab-mr-discussion -tee; fi
# needs: []
pages:
image: node:8
stage: docs
only:
- master
script:
- cd docs
- npm install
- mkdir -p ../public
- npm run release-build
artifacts:
paths:
- public
except: [schedules]
interruptible: true
##########################
# use for deployment via #
# helm chart must be in #
# the .helm directory #
##########################
# Deploy to Staging:
# services:
# - docker:18-dind
# image: dtzar/helm-kubectl:latest
# tags:
# - tokend-deploy
# stage: deploy
# script:
# - mkdir ~/.kube/
# - echo ${k8sconfig} | base64 -d > config
# - mv config ~/.kube/
# - helm upgrade -i "webclient" ".helm" --set global.IngressDomain=stage.${DOMAIN} --set "image.repository=${REGISTRY}" --set "image.tag=${CI_COMMIT_SHA}" --create-namespace --namespace $CI_PROJECT_NAME-stage
# interruptible: true
# Deploy to Production:
# services:
# - docker:18-dind
# image: dtzar/helm-kubectl:latest
# tags:
# - tokend-deploy
# stage: deploy
# script:
# - mkdir ~/.kube/
# - echo ${k8sconfig} | base64 -d > config
# - mv config ~/.kube/
# - helm upgrade -i "webclient" ".helm" --set global.IngressDomain=${DOMAIN} --set "image.repository=${REGISTRY}" --set "image.tag=${CI_COMMIT_TAG}" --create-namespace --namespace $CI_PROJECT_NAME-prod
# when: manual
# interruptible: true
##############################
# can be used if deployment #
# via helm was not initially #
# configured #
##############################
# Update to Staging:
# services:
# - docker:18-dind
# image: dtzar/helm-kubectl:latest
# tags:
# - tokend-deploy
# stage: update
# script:
# - mkdir ~/.kube/
# - echo ${k8sconfig} | base64 -d > config
# - mv config ~/.kube/
# - kubectl set image deployment/my-deployment mycontainer=myimage:1.9.1 -n mynamespace
# interruptible: true
# Update to Production:
# services:
# - docker:18-dind
# image: dtzar/helm-kubectl:latest
# tags:
# - tokend-deploy
# stage: update
# script:
# - mkdir ~/.kube/
# - echo ${k8sconfig} | base64 -d > config
# - mv config ~/.kube/
# - kubectl set image deployment/my-deployment mycontainer=myimage:1.9.1 -n mynamespace
# when: manual
# interruptible: true
Cleanup:
stage: cleanup
<<: *before_script_templ
script:
- type multiwerf && . $(multiwerf use 1.1 stable --as-file)
- type werf && source $(werf ci-env gitlab --as-file)
- docker login -u nobody -p ${WERF_IMAGES_CLEANUP_PASSWORD} ${WERF_IMAGES_REPO}
- werf cleanup --dev
only: [schedules]