Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: add helm plugins #40

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion images/ci-helm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ LABEL org.opencontainers.image.source="https://github.com/hoverkraft-tech/docker

# we can probably ignore warning about versions of such packages
# hadolint ignore=DL3018
RUN apk add --no-cache jq yq curl openssl git
RUN --mount=type=cache,target=/var/cache/apt \
set -ex \
apk add jq yq curl openssl git

COPY scripts/ /usr/local/bin/

RUN \
set ex; \
addgroup -g 1000 helm && \
adduser -u 1000 -G helm -s /bin/ash -D helm

USER helm:helm
WORKDIR /home/helm

RUN --mount=type=cache,target=/home/.cache \
set -ex; \
helm plugin install https://github.com/jtyr/kubeconform-helm --version 0.1.17; \
helm plugin install https://github.com/losisin/helm-values-schema-json.git --version 1.6.4;
Loading