2022-03-15 14:32:56 +01:00
|
|
|
---
|
|
|
|
kind: 'pipeline'
|
|
|
|
name: 'build'
|
2022-10-18 17:26:47 +02:00
|
|
|
type: 'kubernetes'
|
2022-03-15 14:32:56 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
|
2022-10-07 14:31:01 +02:00
|
|
|
# build and publish
|
2022-10-18 17:26:47 +02:00
|
|
|
- image: 'drone/drone-runner-docker'
|
2022-10-07 14:31:01 +02:00
|
|
|
name: 'publish'
|
|
|
|
pull: 'always'
|
|
|
|
settings:
|
2022-10-07 12:53:51 +02:00
|
|
|
|
2022-10-07 14:31:01 +02:00
|
|
|
# registery and repos
|
|
|
|
registry: 'docker.io'
|
|
|
|
cache_from: 'rakepanorama/ansible-deployment'
|
|
|
|
repo: 'rakepanorama/ansible-deployment'
|
2022-10-07 14:01:55 +02:00
|
|
|
|
2022-10-07 14:31:01 +02:00
|
|
|
# build stuff
|
|
|
|
dockerfile: 'Dockerfile.linux.amd64'
|
|
|
|
daemon_off: 'false'
|
2022-10-07 14:06:29 +02:00
|
|
|
|
2022-10-07 14:31:01 +02:00
|
|
|
# authentication
|
|
|
|
username:
|
|
|
|
from_secret: 'docker_username'
|
|
|
|
password:
|
|
|
|
from_secret: 'docker_password'
|
|
|
|
|
|
|
|
# tags
|
|
|
|
tags:
|
|
|
|
- 'v0.9'
|
|
|
|
- 'latest'
|