nginx/.drone.yml
Lennard Brinkhaus 5035048b8d
All checks were successful
continuous-integration/drone/push Build is passing
Change context
2022-01-10 15:25:06 +01:00

55 lines
947 B
YAML

kind: pipeline
name: build
type: kubernetes
steps:
- name: docker_nginx_1.21
image: plugins/docker
settings:
context: 1.21/
dockerfile: 1.21/Dockerfile
registry: harbor.dragse.it
repo: harbor.dragse.it/base/nginx
tags:
- "1.21"
- "1.21.5"
- "mainline"
- "latest"
username:
from_secret: repo_username
password:
from_secret: repo_password
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: tele_token
to:
from_secret: tele_user
---
kind: secret
name: repo_username
get:
path: repo-credentials
name: username
---
kind: secret
name: repo_password
get:
path: repo-credentials
name: password
---
kind: secret
name: tele_user
get:
path: telegram-notification
name: user_id
---
kind: secret
name: tele_token
get:
path: telegram-notification
name: token