15 Commits

Author SHA1 Message Date
e178930855 chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.36.0
Some checks reported errors
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build encountered an error
2023-09-03 14:00:52 +02:00
5ffaeaf154 chore(deps): update docker.io/plugins/docker docker tag to v20.14.4
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2023-08-29 22:07:14 +00:00
48e7462fca chore(deps): update quay.io/skopeo/stable docker tag to v1.13.2
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2023-08-30 00:06:05 +02:00
986b7cf384 chore(deps): update dependency quay.io/skopeo/stable to v1.13.1
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2023-08-01 02:46:45 +02:00
d7476f906e chore(deps): update dependency quay.io/skopeo/stable to v1.13.0
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2023-07-19 21:33:06 +02:00
bd04e5fda8 fix(renovate): automerge patch versions of used container images in docker files
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-18 21:49:59 +02:00
f7d5017a81 feat(ci): use docker.io/plugins/manifest v1.4.0
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-18 14:54:49 +02:00
da7534f2e1 chore(deps): update dependency git.cryptic.systems/volker.raschek/markdownlint to v0.35.0
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2023-06-18 01:24:36 +02:00
eff75dc62a fix: migrate to git.cryptic.systems
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-17 16:03:38 +02:00
e652984bda feat(ci): use git.cryptic.systems/volker.raschek/drone-email v0.1.2
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-17 15:55:19 +02:00
9dc56df49d chore(deps): update dependency git.cryptic.systems/volker.raschek/markdownlint to v0.34.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-06-10 16:23:07 +02:00
836fbcbce5 style(markdown): disable MD044
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-09 16:26:47 +02:00
1889fd0e92 feat(ci): use git.cryptic.systems/volker.raschek/markdownlint v0.33.0
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-08 19:38:53 +02:00
4bdc3f00a1 feat(ci): use docker.io/plugins/drone v20.10.9
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-08 19:25:25 +02:00
a8f431e1e2 feat(ci): migrate to volker.raschek/git v1.2.1
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-08 18:58:45 +02:00
3 changed files with 363 additions and 111 deletions

View File

@ -3,14 +3,20 @@ kind: pipeline
type: kubernetes type: kubernetes
name: linter name: linter
clone:
disable: true
platform: platform:
os: linux os: linux
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.33.0 image: git.cryptic.systems/volker.raschek/markdownlint:0.36.0
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -28,7 +34,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -48,24 +54,38 @@ kind: pipeline
type: docker type: docker
name: dry-run-amd64 name: dry-run-amd64
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
dockerfile: Dockerfile
dry_run: true dry_run: true
tags: latest-amd64 force_tag: true
repo: volkerraschek/markdownlint
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-amd64
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -79,15 +99,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
exclude: exclude:
@ -103,24 +120,38 @@ kind: pipeline
type: docker type: docker
name: dry-run-arm-v7 name: dry-run-arm-v7
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: arm arch: arm
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
dockerfile: Dockerfile
dry_run: true dry_run: true
tags: latest-arm-v7 force_tag: true
repo: volkerraschek/postfixadmin
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-arm-v7
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -134,15 +165,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
exclude: exclude:
@ -158,24 +186,38 @@ kind: pipeline
type: docker type: docker
name: dry-run-arm64-v8 name: dry-run-arm64-v8
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: arm64 arch: arm64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
dockerfile: Dockerfile
dry_run: true dry_run: true
tags: latest-arm64-v8 force_tag: true
repo: volkerraschek/postfixadmin
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-arm64-v8
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -189,15 +231,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
exclude: exclude:
@ -213,23 +252,37 @@ kind: pipeline
type: docker type: docker
name: latest-amd64 name: latest-amd64
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
tags: latest-amd64 dockerfile: Dockerfile
repo: volkerraschek/postfixadmin force_tag: true
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-amd64
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -243,15 +296,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
- master - master
@ -266,23 +316,37 @@ kind: pipeline
type: docker type: docker
name: latest-arm-v7 name: latest-arm-v7
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: arm arch: arm
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
tags: latest-arm-v7 dockerfile: Dockerfile
repo: volkerraschek/postfixadmin force_tag: true
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-arm-v7
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -296,15 +360,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
- master - master
@ -319,23 +380,37 @@ kind: pipeline
type: docker type: docker
name: latest-arm64-v8 name: latest-arm64-v8
clone:
disable: true
depends_on:
- linter
platform: platform:
os: linux os: linux
arch: arm64 arch: arm64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: false auto_tag: false
tags: latest-arm64-v8 dockerfile: Dockerfile
repo: volkerraschek/postfixadmin force_tag: true
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/postfixadmin
tags: latest-arm64-v8
username:
from_secret: git_cryptic_systems_container_registry_user
password:
from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -349,15 +424,12 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
- failure - failure
depends_on:
- linter
trigger: trigger:
branch: branch:
- master - master
@ -372,17 +444,33 @@ kind: pipeline
type: kubernetes type: kubernetes
name: latest-manifest name: latest-manifest
clone:
disable: true
depends_on:
- latest-amd64
- latest-arm-v7
- latest-arm64-v8
# docker.io/plugins/manifest only for amd64 architectures available
node_selector:
kubernetes.io/os: linux
kubernetes.io/arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build-manifest - name: build-manifest
image: docker.io/plugins/manifest:latest image: docker.io/plugins/manifest:1.4.0
settings: settings:
auto_tag: false auto_tag: false
ignore_missing: true ignore_missing: true
spec: manifest.tmpl spec: manifest.tmpl
username: username:
from_secret: container_image_registry_user from_secret: git_cryptic_systems_container_registry_user
password: password:
from_secret: container_image_registry_password from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -396,7 +484,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -406,10 +494,65 @@ steps:
- changed - changed
- failure - failure
trigger:
branch:
- master
event:
- cron
- push
repo:
- volker.raschek/postfixadmin-docker
---
kind: pipeline
type: kubernetes
name: latest-sync
clone:
disable: true
depends_on: depends_on:
- latest-amd64 - latest-manifest
- latest-arm-v7
- latest-arm64-v8 steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- 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/postfixadmin 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:
from_secret: container_image_registry_password
image: quay.io/skopeo/stable:v1.13.2
- 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
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger: trigger:
branch: branch:
@ -425,25 +568,36 @@ kind: pipeline
type: docker type: docker
name: tagged-amd64 name: tagged-amd64
clone:
disable: true
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: true auto_tag: true
auto_tag_suffix: amd64 auto_tag_suffix: amd64
repo: volkerraschek/postfixadmin 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/postfixadmin
username: username:
from_secret: container_image_registry_user from_secret: git_cryptic_systems_container_registry_user
password: password:
from_secret: container_image_registry_password from_secret: git_cryptic_systems_container_registry_password
build_args: build_args:
- POSTFIXADMIN_VERSION=${DRONE_TAG} - POSTFIXADMIN_VERSION=${DRONE_TAG}
no_cache: true
- name: email-notification - name: email-notification
environment: environment:
@ -457,7 +611,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
@ -474,25 +628,36 @@ kind: pipeline
type: docker type: docker
name: tagged-arm-v7 name: tagged-arm-v7
clone:
disable: true
platform: platform:
os: linux os: linux
arch: arm arch: arm
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: true auto_tag: true
auto_tag_suffix: arm-v7 auto_tag_suffix: arm-v7
repo: volkerraschek/postfixadmin 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/postfixadmin
username: username:
from_secret: container_image_registry_user from_secret: git_cryptic_systems_container_registry_user
password: password:
from_secret: container_image_registry_password from_secret: git_cryptic_systems_container_registry_password
build_args: build_args:
- POSTFIXADMIN_VERSION=${DRONE_TAG} - POSTFIXADMIN_VERSION=${DRONE_TAG}
no_cache: true
- name: email-notification - name: email-notification
environment: environment:
@ -506,7 +671,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
@ -523,25 +688,36 @@ kind: pipeline
type: docker type: docker
name: tagged-arm64-v8 name: tagged-arm64-v8
clone:
disable: true
platform: platform:
os: linux os: linux
arch: arm64 arch: arm64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build - name: build
image: docker.io/plugins/docker:latest image: docker.io/plugins/docker:20.14.4
settings: settings:
dockerfile: Dockerfile
auto_tag: true auto_tag: true
auto_tag_suffix: arm64-v8 auto_tag_suffix: arm64-v8
repo: volkerraschek/postfixadmin 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/postfixadmin
username: username:
from_secret: container_image_registry_user from_secret: git_cryptic_systems_container_registry_user
password: password:
from_secret: container_image_registry_password from_secret: git_cryptic_systems_container_registry_password
build_args: build_args:
- POSTFIXADMIN_VERSION=${DRONE_TAG} - POSTFIXADMIN_VERSION=${DRONE_TAG}
no_cache: true
- name: email-notification - name: email-notification
environment: environment:
@ -555,7 +731,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
when: when:
status: status:
- changed - changed
@ -572,17 +748,33 @@ kind: pipeline
type: kubernetes type: kubernetes
name: tagged-manifest name: tagged-manifest
clone:
disable: true
depends_on:
- tagged-amd64
- tagged-arm-v7
- tagged-arm64-v8
# docker.io/plugins/manifest only for amd64 architectures available
node_selector:
kubernetes.io/os: linux
kubernetes.io/arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: build-manifest - name: build-manifest
image: docker.io/plugins/manifest:latest image: docker.io/plugins/manifest:1.4.0
settings: settings:
auto_tag: true auto_tag: true
ignore_missing: true ignore_missing: true
spec: manifest.tmpl spec: manifest.tmpl
username: username:
from_secret: container_image_registry_user from_secret: git_cryptic_systems_container_registry_user
password: password:
from_secret: container_image_registry_password from_secret: git_cryptic_systems_container_registry_password
- name: email-notification - name: email-notification
environment: environment:
@ -596,7 +788,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1 image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -606,10 +798,62 @@ steps:
- changed - changed
- failure - failure
trigger:
event:
- tag
repo:
- volker.raschek/postfixadmin-docker
---
kind: pipeline
type: kubernetes
name: tagged-sync
clone:
disable: true
depends_on: depends_on:
- tagged-amd64 - tagged-manifest
- tagged-arm-v7
- tagged-arm64-v8 steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- 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/postfixadmin 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:
from_secret: container_image_registry_password
image: quay.io/skopeo/stable:v1.13.2
- 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
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger: trigger:
event: event:

View File

@ -128,8 +128,8 @@ MD041:
# MD044/proper-names - Proper names should have the correct capitalization # MD044/proper-names - Proper names should have the correct capitalization
MD044: MD044:
# List of proper names # List of proper names
names: names: []
- PostfixAdmin # - PostfixAdmin
# Include code blocks # Include code blocks
code_blocks: false code_blocks: false

View File

@ -11,6 +11,14 @@
"matchManagers": "droneci", "matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"] "matchUpdateTypes": [ "minor", "patch"]
}, },
{
"description": "Automatically update patch version of used container images in docker files",
"addLabels": [ "renovate/container-image", "renovate/automerge" ],
"automerge": true,
"matchBaseBranches": [ "master" ],
"matchManagers": [ "dockerfile" ],
"matchUpdateTypes": [ "patch" ]
},
{ {
"description": "Trim leading postfixadmin- from git tag", "description": "Trim leading postfixadmin- from git tag",
"addLabels": [ "renovate/postfixadmin" ], "addLabels": [ "renovate/postfixadmin" ],