4 Commits
0.2.1 ... 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
b26e8d212d fix ci
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-10-27 15:34:22 +01:00
6155787b59 fix Dockerfile
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2025-10-27 15:30:44 +01:00
2 changed files with 7 additions and 12 deletions

View File

@@ -13,24 +13,19 @@ steps:
dockerfile: Dockerfile
when:
- event: [push, tag]
scan_image:
image: aquasec/trivy
commands:
- trivy image $FORGE_NAME/$CI_REPO:$CI_COMMIT_SHA --quiet --exit-code 1
when:
- event: [push, tag]
build:
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

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