2 Commits
0.3.4 ... 0.4.1

Author SHA1 Message Date
306f6e12cd quay
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-11-21 19:28:15 +01:00
c7249ba743 add podman
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
2025-11-21 18:46:28 +01:00
2 changed files with 6 additions and 5 deletions

View File

@@ -17,14 +17,15 @@ steps:
image: plugins/kaniko
settings:
repo: quay.io/wollud1969/k8s-admin-helper
registry: quay.io
tags:
- latest
- ${CI_COMMIT_TAG}
registry:
from_secret: quay_registry
username:
from_secret: quay_username
password:
from_secret: quay_password
tags:
- latest
- ${CI_COMMIT_TAG}
dockerfile: Dockerfile
when:
- event: [tag]

View File

@@ -2,7 +2,7 @@ FROM alpine:3.22.2
ARG USER="user"
RUN apk add --no-cache kubectl gpg gpg-agent bash curl helm && \
RUN apk add --no-cache kubectl gpg gpg-agent bash curl helm podman && \
addgroup $USER && \
adduser -G $USER -D $USER