-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.drone.star
234 lines (213 loc) · 6.49 KB
/
.drone.star
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
config = {
"branches": [
"main",
],
}
def main(ctx):
pipeline_linting = linting(ctx)
pipeline_checkstarlark = checkStarlark()
pipeline_docs = documentation(ctx)
pipeline_docs[0]["depends_on"].append(pipeline_checkstarlark[0]["name"])
pipeline_deployments = deployments(ctx)
for pipeline in pipeline_deployments:
pipeline["depends_on"].append(pipeline_linting[0]["name"])
return pipeline_checkstarlark + pipeline_linting + pipeline_deployments + pipeline_docs
def linting(ctx):
pipelines = []
result = {
"kind": "pipeline",
"type": "docker",
"name": "lint charts/ocis",
"steps": [
{
"name": "lint",
"image": "owncloudci/golang:latest",
"commands": [
"make lint",
],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
},
{
"name": "api",
"image": "owncloudci/golang:latest",
"commands": [
"make api",
],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
},
],
"depends_on": [],
"trigger": {
"ref": [
"refs/pull/**",
],
},
"volumes": [
{
"name": "gopath",
"temp": {},
},
],
}
for branch in config["branches"]:
result["trigger"]["ref"].append("refs/heads/%s" % branch)
pipelines.append(result)
return pipelines
def documentation(ctx):
result = {
"kind": "pipeline",
"type": "docker",
"name": "documentation",
"steps": [
{
"name": "generate docs",
"image": "owncloudci/golang:latest",
"commands": [
"make docs",
],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
},
{
"name": "check-unchanged",
"image": "owncloudci/alpine",
"commands": [
"git diff --exit-code",
],
},
],
"depends_on": [],
"volumes": [
{
"name": "gopath",
"temp": {},
},
],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}
for branch in config["branches"]:
result["trigger"]["ref"].append("refs/heads/%s" % branch)
return [result]
def checkStarlark():
result = {
"kind": "pipeline",
"type": "docker",
"name": "check-starlark",
"steps": [
{
"name": "format-check-starlark",
"image": "owncloudci/bazel-buildifier:latest",
"commands": [
"buildifier --mode=check .drone.star",
"buildifier -d -diff_command='diff -u' .drone.star",
],
},
],
"depends_on": [],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}
for branch in config["branches"]:
result["trigger"]["ref"].append("refs/heads/%s" % branch)
return [result]
def deployments(ctx):
result = {
"kind": "pipeline",
"type": "docker",
"name": "k3d",
"steps": wait(ctx) + install(ctx) + showPodsAfterInstall(ctx),
"services": [
{
"name": "k3d",
"image": "ghcr.io/k3d-io/k3d:5-dind",
"privileged": True,
"commands": [
"nohup dockerd-entrypoint.sh &",
"until docker ps 2>&1 > /dev/null; do sleep 1s; done",
"k3d cluster create --config ci/k3d-drone.yaml --api-port k3d:6445",
"until kubectl get deployment coredns -n kube-system -o go-template='{{.status.availableReplicas}}' | grep -v -e '<no value>'; do sleep 1s; done",
"k3d kubeconfig get drone > kubeconfig-$${DRONE_BUILD_NUMBER}.yaml",
"chmod 0600 kubeconfig-$${DRONE_BUILD_NUMBER}.yaml",
"printf '@@@@@@@@@@@@@@@@@@@@@@@\n@@@@ k3d is ready @@@@\n@@@@@@@@@@@@@@@@@@@@@@@\n'",
"kubectl get events -Aw",
],
},
],
"depends_on": [],
"volumes": [
{
"name": "gopath",
"temp": {},
},
],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}
for branch in config["branches"]:
result["trigger"]["ref"].append("refs/heads/%s" % branch)
return [result]
def install(ctx):
return [{
"name": "helm-install",
"image": "owncloudci/golang:latest",
"commands": [
"export KUBECONFIG=kubeconfig-$${DRONE_BUILD_NUMBER}.yaml",
"make helm-install-atomic",
],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
}]
def wait(config):
return [{
"name": "wait",
"image": "docker.io/bitnami/kubectl:1.31",
"user": "root",
"commands": [
"export KUBECONFIG=kubeconfig-$${DRONE_BUILD_NUMBER}.yaml",
"until test -f $${KUBECONFIG}; do sleep 1s; done",
"kubectl config view",
"kubectl get pods -A",
],
}]
def showPodsAfterInstall(config):
return [{
"name": "testPodsAfterInstall",
"image": "docker.io/bitnami/kubectl:1.31",
"user": "root",
"commands": [
"export KUBECONFIG=kubeconfig-$${DRONE_BUILD_NUMBER}.yaml",
"until test -f $${KUBECONFIG}; do sleep 1s; done",
"kubectl get pods -n ocis",
"if [ \"$(kubectl get pods -n ocis --field-selector status.phase=Running | wc -l)\" -le \"32\" ]; then exit 1; fi", # there are 32 pods + 1 header line
"kubectl get ingress -n ocis",
"if [ \"$(kubectl get ingress -n ocis | wc -l)\" -le \"1\" ]; then exit 1; fi",
],
}]