2022-01-30 20:39:29 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: linter
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: markdown lint
|
|
|
|
commands:
|
|
|
|
- markdownlint *.md
|
2022-08-21 14:56:49 +00:00
|
|
|
image: docker.io/volkerraschek/markdownlint:0.32.2
|
2022-01-30 20:39:29 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-05-22 11:09:11 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2022-01-30 20:39:29 +00:00
|
|
|
|
|
|
|
- name: email-notification
|
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-05-22 11:09:11 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: dry-run-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
dry_run: true
|
|
|
|
tags: latest-amd64
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: dry-run-arm-v7
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
dry_run: true
|
|
|
|
tags: latest-arm-v7
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: dry-run-arm64-v8
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
dry_run: true
|
|
|
|
tags: latest-arm64-v8
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: latest-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
tags: latest-amd64
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: latest-arm-v7
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
tags: latest-arm-v7
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: latest-arm64-v8
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: false
|
|
|
|
tags: latest-arm64-v8
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linter
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: latest-manifest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build-manifest
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/manifest:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
ignore_missing: true
|
|
|
|
spec: manifest.tmpl
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-05-22 11:09:11 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- latest-amd64
|
|
|
|
- latest-arm-v7
|
|
|
|
- latest-arm64-v8
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
- push
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tagged-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
build_args:
|
2022-08-22 10:43:37 +00:00
|
|
|
- GOSEC_VERSION=${DRONE_TAG}
|
2022-01-30 20:39:29 +00:00
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tagged-arm-v7
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm-v7
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
build_args:
|
2022-08-22 10:43:37 +00:00
|
|
|
- GOSEC_VERSION=${DRONE_TAG}
|
2022-01-30 20:39:29 +00:00
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tagged-arm64-v8
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/docker:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64-v8
|
|
|
|
repo: volkerraschek/gosec
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
build_args:
|
2022-08-22 10:43:37 +00:00
|
|
|
- GOSEC_VERSION=${DRONE_TAG}
|
2022-01-30 20:39:29 +00:00
|
|
|
no_cache: true
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: tagged-manifest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build-manifest
|
2022-05-22 11:01:21 +00:00
|
|
|
image: docker.io/plugins/manifest:latest
|
2022-01-30 20:39:29 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
|
|
|
spec: manifest.tmpl
|
|
|
|
username:
|
|
|
|
from_secret: container_image_registry_user
|
|
|
|
password:
|
|
|
|
from_secret: container_image_registry_password
|
|
|
|
|
2022-07-26 14:52:22 +00:00
|
|
|
- name: email-notification
|
2022-01-30 20:39:29 +00:00
|
|
|
environment:
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_USERNAME:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 14:52:22 +00:00
|
|
|
SMTP_PASSWORD:
|
2022-01-30 20:39:29 +00:00
|
|
|
from_secret: smtp_password
|
2022-07-26 14:52:22 +00:00
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2022-01-30 20:39:29 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
2022-05-22 11:09:11 +00:00
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
2022-01-30 20:39:29 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- tagged-amd64
|
|
|
|
- tagged-arm-v7
|
|
|
|
- tagged-arm64-v8
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/gosec-docker
|