3 Commits
0.2.1 ... 0.4.1

Author SHA1 Message Date
b5f95d3fc9 rename quay image
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-02-03 12:47:47 +01:00
77d5158659 add helm
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-02-03 12:45:40 +01:00
c418a6ce4b add trivy and curl
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-02-03 12:34:32 +01:00
2 changed files with 4 additions and 5 deletions

View File

@ -22,7 +22,7 @@ steps:
build: build:
image: plugins/kaniko image: plugins/kaniko
settings: settings:
repo: quay.io/wollud1969/k8s-admin-helper repo: quay.io/wollud1969/woodpecker-helper
registry: quay.io registry: quay.io
tags: tags:
- latest - latest

View File

@ -2,7 +2,9 @@ FROM alpine:latest
ARG USER="user" ARG USER="user"
RUN apk add --no-cache kubectl gpg gpg-agent bash && \ RUN \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
apk add --no-cache kubectl gpg gpg-agent bash trivy@testing curl helm && \
addgroup $USER && \ addgroup $USER && \
adduser -G $USER -D $USER adduser -G $USER -D $USER
@ -11,6 +13,3 @@ COPY decrypt-secrets.sh /usr/local/bin/
USER $USER USER $USER
WORKDIR /home/$USER WORKDIR /home/$USER
RUN gpg -k