2021-09-15 16:15:43 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: linter
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
- name: markdown lint
|
|
|
|
commands:
|
|
|
|
- markdownlint *.md
|
2023-09-22 17:33:20 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.37.0
|
2021-09-15 16:15:43 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-06-03 20:56:20 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2021-09-15 16:15:43 +00:00
|
|
|
|
|
|
|
- name: email-notification
|
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-09-15 16:15:43 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-05-25 13:13:18 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2021-09-15 16:15:43 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
2021-10-24 10:39:00 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: dry-run-amd64
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-10-28 07:55:42 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
2021-10-28 07:55:42 +00:00
|
|
|
dry_run: true
|
2023-06-18 13:56:41 +00:00
|
|
|
force_tag: true
|
2021-10-28 07:55:42 +00:00
|
|
|
no_cache: true
|
2023-06-18 13:56:41 +00:00
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
|
|
|
tags: latest-amd64
|
|
|
|
username:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-10-28 07:55:42 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-28 07:55:42 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-28 07:55:42 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
2023-06-18 13:56:41 +00:00
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
2021-10-28 07:55:42 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: dry-run-arm64-v8
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-10-28 07:55:42 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
2021-10-28 07:55:42 +00:00
|
|
|
dry_run: true
|
2023-06-18 13:56:41 +00:00
|
|
|
force_tag: true
|
2021-10-28 07:55:42 +00:00
|
|
|
no_cache: true
|
2023-06-18 13:56:41 +00:00
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
|
|
|
tags: latest-arm64-v8
|
|
|
|
username:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-10-28 07:55:42 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-28 07:55:42 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-28 07:55:42 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
2023-06-18 13:56:41 +00:00
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
2021-10-28 07:55:42 +00:00
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: latest-amd64
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-09-15 16:15:43 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
force_tag: true
|
|
|
|
no_cache: true
|
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
2021-09-15 16:15:43 +00:00
|
|
|
tags: latest-amd64
|
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-09-15 16:15:43 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-09-15 16:15:43 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-09-15 16:15:43 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-09-15 16:15:43 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
2021-09-22 09:25:36 +00:00
|
|
|
branch:
|
|
|
|
- master
|
2021-09-15 16:15:43 +00:00
|
|
|
event:
|
2021-10-24 10:39:00 +00:00
|
|
|
- cron
|
|
|
|
- push
|
2021-09-22 09:25:36 +00:00
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
2021-09-15 16:15:43 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: latest-arm64-v8
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-10-28 07:55:42 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
force_tag: true
|
|
|
|
no_cache: true
|
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
2021-10-28 07:55:42 +00:00
|
|
|
tags: latest-arm64-v8
|
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-10-28 07:55:42 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-10-28 07:55:42 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-28 07:55:42 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-28 07:55:42 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
trigger:
|
2021-09-22 09:25:36 +00:00
|
|
|
branch:
|
|
|
|
- master
|
2021-09-15 16:15:43 +00:00
|
|
|
event:
|
2021-10-24 10:39:00 +00:00
|
|
|
- cron
|
|
|
|
- push
|
2021-09-22 09:25:36 +00:00
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
2021-09-15 16:15:43 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: latest-manifest
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- latest-amd64
|
|
|
|
- latest-arm64-v8
|
|
|
|
|
2023-06-18 13:56:41 +00:00
|
|
|
# docker.io/plugins/manifest only for amd64 architectures available
|
|
|
|
node_selector:
|
|
|
|
kubernetes.io/os: linux
|
|
|
|
kubernetes.io/arch: amd64
|
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-09-15 16:15:43 +00:00
|
|
|
- name: build-manifest
|
2023-06-18 13:56:41 +00:00
|
|
|
image: docker.io/plugins/manifest:1.4.0
|
2021-09-15 16:15:43 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
ignore_missing: true
|
|
|
|
spec: manifest.tmpl
|
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-09-15 16:15:43 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
|
|
|
|
|
|
|
- name: email-notification
|
|
|
|
environment:
|
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
|
|
|
from_secret: smtp_host
|
|
|
|
SMTP_USERNAME:
|
|
|
|
from_secret: smtp_username
|
|
|
|
SMTP_PASSWORD:
|
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2023-06-18 13:56:41 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: latest-sync
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- latest-manifest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-18 13:56:41 +00:00
|
|
|
|
|
|
|
- name: latest-sync
|
|
|
|
commands:
|
|
|
|
- skopeo sync --all --src=docker --src-creds=$SRC_CRED_USERNAME:$SRC_CRED_PASSWORD --dest=docker --dest-creds=$DEST_CRED_USERNAME:$DEST_CRED_PASSWORD git.cryptic.systems/volker.raschek/db-wait docker.io/volkerraschek
|
|
|
|
environment:
|
|
|
|
SRC_CRED_USERNAME:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
|
|
|
SRC_CRED_PASSWORD:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
|
|
|
DEST_CRED_USERNAME:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
DEST_CRED_PASSWORD:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: container_image_registry_password
|
2023-09-21 16:21:47 +00:00
|
|
|
image: quay.io/skopeo/stable:v1.13.3
|
2021-09-15 16:15:43 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-09-15 16:15:43 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-09-15 16:15:43 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2023-06-18 13:56:41 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2021-09-15 16:15:43 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
2021-09-22 09:25:36 +00:00
|
|
|
branch:
|
|
|
|
- master
|
2021-09-15 16:15:43 +00:00
|
|
|
event:
|
2021-10-24 10:39:00 +00:00
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tagged-amd64
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2021-10-24 10:39:00 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-24 10:39:00 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-10-24 10:39:00 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
force_tag: true
|
|
|
|
no_cache: true
|
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
2021-10-24 10:39:00 +00:00
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-10-24 10:39:00 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-10-24 10:39:00 +00:00
|
|
|
build_args:
|
|
|
|
- VERSION=${DRONE_TAG}
|
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-24 10:39:00 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-24 10:39:00 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
2021-09-22 09:25:36 +00:00
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
2021-10-24 10:39:00 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tagged-arm64-v8
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-28 07:55:42 +00:00
|
|
|
- name: build
|
2023-09-03 14:39:50 +00:00
|
|
|
image: docker.io/plugins/docker:20.10.9
|
2021-10-28 07:55:42 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64-v8
|
2023-06-18 13:56:41 +00:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
force_tag: true
|
|
|
|
no_cache: true
|
|
|
|
purge: true
|
|
|
|
mirror:
|
|
|
|
from_secret: docker_io_mirror
|
|
|
|
registry: git.cryptic.systems
|
|
|
|
repo: git.cryptic.systems/volker.raschek/db-wait
|
2021-10-28 07:55:42 +00:00
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-10-28 07:55:42 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
2021-10-28 07:55:42 +00:00
|
|
|
build_args:
|
2023-10-30 20:39:08 +00:00
|
|
|
- VERSION=${DRONE_TAG}
|
2021-10-28 07:55:42 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-28 07:55:42 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-28 07:55:42 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-28 07:55:42 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
|
|
|
|
2021-10-24 10:39:00 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: tagged-manifest
|
|
|
|
|
2023-06-17 14:22:05 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-09-13 15:39:15 +00:00
|
|
|
depends_on:
|
|
|
|
- tagged-amd64
|
|
|
|
- tagged-arm64-v8
|
|
|
|
|
2023-06-18 13:56:41 +00:00
|
|
|
# docker.io/plugins/manifest only for amd64 architectures available
|
|
|
|
node_selector:
|
|
|
|
kubernetes.io/os: linux
|
|
|
|
kubernetes.io/arch: amd64
|
|
|
|
|
2021-10-24 10:39:00 +00:00
|
|
|
steps:
|
2023-06-17 14:22:05 +00:00
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 14:22:05 +00:00
|
|
|
|
2021-10-24 10:39:00 +00:00
|
|
|
- name: build-manifest
|
2023-06-18 13:56:41 +00:00
|
|
|
image: docker.io/plugins/manifest:1.4.0
|
2021-10-24 10:39:00 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
|
|
|
spec: manifest.tmpl
|
|
|
|
username:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
2021-10-24 10:39:00 +00:00
|
|
|
password:
|
2023-06-18 13:56:41 +00:00
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
|
|
|
|
|
|
|
- name: email-notification
|
|
|
|
environment:
|
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
|
|
|
from_secret: smtp_host
|
|
|
|
SMTP_USERNAME:
|
|
|
|
from_secret: smtp_username
|
|
|
|
SMTP_PASSWORD:
|
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2023-06-18 13:56:41 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: tagged-sync
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- tagged-manifest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: clone
|
2023-10-03 08:26:51 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-18 13:56:41 +00:00
|
|
|
|
|
|
|
- name: tagged-sync
|
|
|
|
commands:
|
|
|
|
- skopeo sync --all --src=docker --src-creds=$SRC_CRED_USERNAME:$SRC_CRED_PASSWORD --dest=docker --dest-creds=$DEST_CRED_USERNAME:$DEST_CRED_PASSWORD git.cryptic.systems/volker.raschek/db-wait docker.io/volkerraschek
|
|
|
|
environment:
|
|
|
|
SRC_CRED_USERNAME:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_user
|
|
|
|
SRC_CRED_PASSWORD:
|
|
|
|
from_secret: git_cryptic_systems_container_registry_password
|
|
|
|
DEST_CRED_USERNAME:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
DEST_CRED_PASSWORD:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: container_image_registry_password
|
2023-09-21 16:21:47 +00:00
|
|
|
image: quay.io/skopeo/stable:v1.13.3
|
2021-10-24 10:39:00 +00:00
|
|
|
|
2022-09-13 15:34:32 +00:00
|
|
|
- name: email-notification
|
2021-10-24 10:39:00 +00:00
|
|
|
environment:
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_host
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_USERNAME:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_username
|
2022-09-13 15:34:32 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-10-24 10:39:00 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-03 17:17:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2021-10-24 10:39:00 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-09-13 15:34:32 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2021-10-24 10:39:00 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/db-wait
|