forked from kontena/kubelet-rubber-stamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
48 lines (43 loc) · 1.07 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
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
workspace:
base: /go
path: src/github.com/kontena/kubelet-rubber-stamp
steps:
- name: test
image: golang:1.11
commands:
- mkdir -p /go/bin
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure -v -vendor-only
- ./test.sh
- name: docker
image: plugins/docker
settings:
registry: quay.io
secrets: [ docker_username, docker_password ]
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
secrets: [ docker_username, docker_password ]
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