-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.drone.yml
84 lines (76 loc) · 2.03 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
---
kind: pipeline
name: default
type: kubernetes
platform:
os: linux
arch: amd64
workspace:
path: /go/src/github.com/UKHomeOffice/policy-admission
steps:
- name: tests
image: golang:1.21
commands:
- make test
- make static
when:
event:
- push
- tag
- pull_request
- name: build-image
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
# wait for docker service to be up before running docker build
- n=0; while [ "$n" -lt 60 ] && [ ! "$(docker stats --no-stream)" ]; do n=$(( n + 1 )); sleep 1; done
- docker build -t policy-admission:$${DRONE_COMMIT_SHA} .
when:
event:
- push
- tag
- pull_request
- name: scan-image
pull: Always
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/trivy/client:latest
resources:
limits:
cpu: 1000
memory: 1024Mi
environment:
IMAGE_NAME: policy-admission:${DRONE_COMMIT_SHA}
IGNORE_UNFIXED: "true"
FAIL_ON_DETECTION: "false"
when:
event:
- pull_request
- push
- tag
- name: latest
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker tag policy-admission:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/policy-admission:latest
- docker login -u="ukhomeofficedigital+policy_admission" -p=$${DOCKER_PASSWORD} quay.io
- docker push quay.io/ukhomeofficedigital/policy-admission:latest
environment:
DOCKER_PASSWORD:
from_secret: docker_password
when:
branch:
- main
event:
- push
- name: tagged
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
- docker tag policy-admission:$${DRONE_COMMIT_SHA} quay.io/ukhomeofficedigital/policy-admission:$${DRONE_TAG}
- docker login -u="ukhomeofficedigital+policy_admission" -p=$${DOCKER_PASSWORD} quay.io
- docker push quay.io/ukhomeofficedigital/policy-admission:$${DRONE_TAG}
environment:
DOCKER_PASSWORD:
from_secret: docker_password
when:
event:
- tag
services:
- name: docker
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind