-
Notifications
You must be signed in to change notification settings - Fork 12
/
.drone.yml
167 lines (153 loc) · 4.89 KB
/
.drone.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
---
kind: pipeline
type: kubernetes
name: default
platform:
os: linux
arch: amd64
steps:
- name: test_api
pull: if-not-exists
image: docker/compose:alpine-1.25.5
environment:
DOCKER_HOST: tcp://127.0.0.1:2375
commands:
- n=0; while [ "$n" -lt 60 ] && [ ! "$(docker stats --no-stream)" ]; do n=$(( n + 1 )); sleep 1; done
- apk add bash curl
- ./bin/test.sh
when:
event:
- push
- name: build-clamav
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- cd clamav
- /usr/local/bin/wait
- docker build --no-cache -t clamav:$${DRONE_COMMIT_SHA} .
- name: build-clamav-http
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- cd clamav-http
- /usr/local/bin/wait
- docker build --no-cache -t clamav-http:$${DRONE_COMMIT_SHA} .
- name: build-clamav-mirror
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- cd clamav-mirror
- /usr/local/bin/wait
- docker build --no-cache -t clamav-mirror:$${DRONE_COMMIT_SHA} .
- name: scan-clamav-http
pull: Always
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/trivy/client:latest
resources:
limits:
cpu: 1000
memory: 1024Mi
environment:
IMAGE_NAME: clamav-http:${DRONE_COMMIT_SHA}
IGNORE_UNFIXED: "true"
when:
event:
- pull_request
- push
- name: scan-clamav
pull: Always
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/trivy/client:latest
resources:
limits:
cpu: 1000
memory: 1024Mi
environment:
IMAGE_NAME: clamav:${DRONE_COMMIT_SHA}
IGNORE_UNFIXED: "true"
when:
event:
- pull_request
- push
- name: scan-clamav-mirror
pull: Always
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/trivy/client:latest
resources:
limits:
cpu: 1000
memory: 1024Mi
environment:
IMAGE_NAME: clamav-mirror:${DRONE_COMMIT_SHA}
IGNORE_UNFIXED: "true"
when:
event:
- pull_request
- push
- name: tagged_clamav_to_quay
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker login -u=$${DOCKER_USERNAME} -p=$${DOCKER_PASSWORD} quay.io
- docker tag clamav:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav:$${DRONE_TAG}
- docker push quay.io/ukhomeofficedigital/acp-clamav:$${DRONE_TAG}
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME: ukhomeofficedigital+acp_clamav
when:
event:
- tag
- name: tagged_clamav_http_to_quay
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker login -u=$${DOCKER_USERNAME} -p=$${DOCKER_PASSWORD} quay.io
- docker tag clamav-http:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav-http:$${DRONE_TAG}
- docker push quay.io/ukhomeofficedigital/acp-clamav-http:$${DRONE_TAG}
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME: ukhomeofficedigital+acp_clamav
when:
event:
- tag
- name: tagged_clamav_mirror_to_quay
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker login -u=$${DOCKER_USERNAME} -p=$${DOCKER_PASSWORD} quay.io
- docker tag clamav-mirror:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav-mirror:$${DRONE_TAG}
- docker push quay.io/ukhomeofficedigital/acp-clamav-mirror:$${DRONE_TAG}
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME: ukhomeofficedigital+acp_clamav
when:
event:
- tag
# Explanation: new version must be explicitly tagged. Also, latest tag is removed.
# Several tenants are using latest tag, therefore it is removed to eliminate a risk of
# accidental pull of new image. To use a new version, select explicit version number in
# the Kubernetes manifest. Thank you.
- name: all_images_to_quay
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker login -u=$${DOCKER_USERNAME} -p=$${DOCKER_PASSWORD} quay.io
- docker tag clamav:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav:$${DRONE_COMMIT_SHA}
- docker tag clamav-http:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav-http:$${DRONE_COMMIT_SHA}
- docker tag clamav-mirror:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/acp-clamav-mirror:$${DRONE_COMMIT_SHA}
- docker push quay.io/ukhomeofficedigital/acp-clamav-http:$${DRONE_COMMIT_SHA}
- docker push quay.io/ukhomeofficedigital/acp-clamav:$${DRONE_COMMIT_SHA}
- docker push quay.io/ukhomeofficedigital/acp-clamav-mirror:$${DRONE_COMMIT_SHA}
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME: ukhomeofficedigital+acp_clamav
when:
branch:
- master
event:
- push
services:
- name: docker
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
...