-
Notifications
You must be signed in to change notification settings - Fork 34
/
.drone.yml
79 lines (71 loc) · 1.66 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
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
workspace:
base: /src
path: kubelet-rubber-stamp
steps:
- name: test
image: golang:1.11
commands:
- mkdir -p /go/bin
- go mod download
- ./test.sh
- name: docker
image: plugins/docker
settings:
registry: quay.io
repo: quay.io/kontena/kubelet-rubber-stamp-amd64
dockerfile: Dockerfile
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: docker-arm
image: plugins/docker
settings:
registry: quay.io
repo: quay.io/kontena/kubelet-rubber-stamp-arm64
dockerfile: Dockerfile
build_args:
- ARCH=arm64
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: docker-hub
image: plugins/docker
settings:
repo: kontenapharos/kubelet-rubber-stamp-amd64
dockerfile: Dockerfile
auto_tag: true
username:
from_secret: docker_hub_username
password:
from_secret: docker_hub_password
- name: docker-hub-arm
image: plugins/docker
settings:
repo: kontenapharos/kubelet-rubber-stamp-arm64
dockerfile: Dockerfile
build_args:
- ARCH=arm64
auto_tag: true
username:
from_secret: docker_hub_username
password:
from_secret: docker_hub_password
- name: manifest
image: plugins/manifest
settings:
username:
from_secret: docker_hub_username
password:
from_secret: docker_hub_password
spec: .manifest.tpl
auto_tag: true