docker-healthchecks/.drone.yml
Jeffrey C. Ollie 1784bc761f
All checks were successful
continuous-integration/drone/push Build is passing
update to 1.24.1
2021-11-10 12:09:15 -06:00

31 lines
564 B
YAML

---
kind: secret
name: local_username
get:
path: local
name: username
---
kind: secret
name: local_password
get:
path: local
name: password
---
kind: pipeline
type: kubernetes
name: build
steps:
- name: publish
image: plugins/kaniko
settings:
build_args:
- VERSION=1.24.1
repo: r.ocj.io/network/healthchecks
registry: r.ocj.io
username:
from_secret: local_username
password:
from_secret: local_password
tags:
- "latest"
- "${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"