9 Commits

Author SHA1 Message Date
b2dcc1989a fix(makefile): migrate to git.cryptic.systems
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-15 17:10:02 +02:00
869f6f01de 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-09 10:08:27 +02:00
80a9ba39c5 chore(deps): update dependency docker.io/plugins/docker to v20.14.4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-06-08 21:36:24 +02:00
3dcd57718a feat(ci): use git.cryptic.systems/volker.raschek/markdownlint v0.33.0
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-08 19:38:47 +02:00
a445b4b69e feat(ci): use docker.io/plugins/drone v20.10.9
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-08 19:25:13 +02:00
6e80bb96a1 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:53:43 +02:00
4b8ec2cc7c fix: replace curl with pre-installed curl-minimal, add bash-completion
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-05 10:20:33 +01:00
93077750ce chore(deps): update dependency docker.io/library/rockylinux to v9.1
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2023-01-07 19:59:10 +01:00
59a94c206f chore(deps): update dependency docker.io/volkerraschek/markdownlint to v0.33.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-01-07 19:43:19 +01:00
4 changed files with 228 additions and 39 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.32.2 image: git.cryptic.systems/volker.raschek/markdownlint:0.34.0
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -48,13 +54,19 @@ kind: pipeline
type: docker type: docker
name: dry-run-amd64 name: dry-run-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:
auto_tag: false auto_tag: false
dockerfile: Dockerfile dockerfile: Dockerfile
@ -62,12 +74,15 @@ steps:
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
tags: latest-amd64 tags: latest-amd64
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:
@ -105,13 +120,19 @@ kind: pipeline
type: docker type: docker
name: dry-run-arm64-v8 name: dry-run-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:
auto_tag: false auto_tag: false
dockerfile: Dockerfile dockerfile: Dockerfile
@ -119,12 +140,15 @@ steps:
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
tags: latest-arm64-v8 tags: latest-arm64-v8
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:
@ -162,25 +186,34 @@ kind: pipeline
type: docker type: docker
name: latest-amd64 name: latest-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:
auto_tag: false auto_tag: false
dockerfile: Dockerfile dockerfile: Dockerfile
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
tags: latest-amd64 tags: latest-amd64
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:
@ -217,25 +250,34 @@ kind: pipeline
type: docker type: docker
name: latest-arm64-v8 name: latest-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:
auto_tag: false auto_tag: false
dockerfile: Dockerfile dockerfile: Dockerfile
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
tags: latest-arm64-v8 tags: latest-arm64-v8
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:
@ -272,7 +314,13 @@ kind: pipeline
type: kubernetes type: kubernetes
name: latest-manifest name: latest-manifest
clone:
disable: true
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:latest
settings: settings:
@ -280,9 +328,9 @@ steps:
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:
@ -310,6 +358,66 @@ depends_on:
- latest-amd64 - latest-amd64
- latest-arm64-v8 - latest-arm64-v8
trigger:
branch:
- master
event:
- cron
- push
repo:
- volker.raschek/mkisofs-docker
---
kind: pipeline
type: kubernetes
name: latest-sync
clone:
disable: true
depends_on:
- latest-manifest
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/mkisofs 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.11.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: docker.io/volkerraschek/drone-email:0.1.1
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger: trigger:
branch: branch:
- master - master
@ -324,25 +432,34 @@ 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:
auto_tag_suffix: amd64
auto_tag: true auto_tag: true
auto_tag_suffix: arm-v7
dockerfile: Dockerfile dockerfile: Dockerfile
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
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:
- MKISOFS_VERSION=${DRONE_TAG} - MKISOFS_VERSION=${DRONE_TAG}
@ -375,25 +492,34 @@ 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:
auto_tag_suffix: arm64-v8
auto_tag: true auto_tag: true
auto_tag_suffix: arm64-v8
dockerfile: Dockerfile dockerfile: Dockerfile
force_tag: true force_tag: true
no_cache: true no_cache: true
purge: true purge: true
repo: volkerraschek/mkisofs mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/mkisofs
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:
- MKISOFS_VERSION=${DRONE_TAG} - MKISOFS_VERSION=${DRONE_TAG}
@ -426,7 +552,13 @@ kind: pipeline
type: kubernetes type: kubernetes
name: tagged-manifest name: tagged-manifest
clone:
disable: true
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:latest
settings: settings:
@ -434,9 +566,9 @@ steps:
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:
@ -469,3 +601,60 @@ trigger:
- tag - tag
repo: repo:
- volker.raschek/mkisofs-docker - volker.raschek/mkisofs-docker
---
kind: pipeline
type: kubernetes
name: tagged-sync
clone:
disable: true
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/mkisofs 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.11.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: docker.io/volkerraschek/drone-email:0.1.1
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
depends_on:
- tagged-manifest
trigger:
event:
- tag
repo:
- volker.raschek/mkisofs-docker

View File

@ -1,9 +1,9 @@
FROM docker.io/library/rockylinux:9.0 FROM docker.io/library/rockylinux:9.1
ARG MKISOFS_VERSION ARG MKISOFS_VERSION
RUN yum update --assumeyes && \ RUN yum update --assumeyes && \
yum install --assumeyes bash curl yum install --assumeyes bash bash-completion
RUN if [ -z ${MKISOFS_VERSION+x} ]; then \ RUN if [ -z ${MKISOFS_VERSION+x} ]; then \
yum install --assumeyes xorriso; \ yum install --assumeyes xorriso; \

View File

@ -9,8 +9,8 @@ CONTAINER_RUNTIME?=$(shell which podman)
# MKISOFS_IMAGE_REGISTRY_NAME # MKISOFS_IMAGE_REGISTRY_NAME
# Defines the name of the new container to be built using several variables. # Defines the name of the new container to be built using several variables.
MKISOFS_IMAGE_REGISTRY_NAME:=docker.io MKISOFS_IMAGE_REGISTRY_NAME:=git.cryptic.systems
MKISOFS_IMAGE_REGISTRY_USER:=volkerraschek MKISOFS_IMAGE_REGISTRY_USER:=volker.raschek
MKISOFS_IMAGE_NAMESPACE?=${MKISOFS_IMAGE_REGISTRY_USER} MKISOFS_IMAGE_NAMESPACE?=${MKISOFS_IMAGE_REGISTRY_USER}
MKISOFS_IMAGE_NAME:=mkisofs MKISOFS_IMAGE_NAME:=mkisofs

View File

@ -1,4 +1,4 @@
image: volkerraschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} image: git.cryptic.systems/volker.raschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
{{#if build.tags}} {{#if build.tags}}
tags: tags:
{{#each build.tags}} {{#each build.tags}}
@ -8,13 +8,13 @@ tags:
{{/if}} {{/if}}
manifests: manifests:
- -
image: volkerraschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64 image: git.cryptic.systems/volker.raschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
platform: platform:
architecture: amd64 architecture: amd64
os: linux os: linux
- -
image: volkerraschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8 image: git.cryptic.systems/volker.raschek/mkisofs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
platform: platform:
architecture: arm64 architecture: arm64
os: linux os: linux
variant: v8 variant: v8