Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
27fa6d8321 | |||
7e76594809 | |||
22ba0676d8 | |||
361bfe9314 | |||
26e5c3695f | |||
a81dbaba71 |
@ -13,7 +13,7 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.42.0
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
|
@ -1,17 +1,18 @@
|
||||
FROM docker.io/library/alpine:3.20.3
|
||||
FROM docker.io/library/alpine:3.21.0
|
||||
|
||||
ARG HELM_VERSION
|
||||
|
||||
RUN apk add bash curl git openssl && \
|
||||
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
|
||||
|
||||
RUN [[ ${HELM_VERSION} == "" ]]; bash /tmp/install.sh
|
||||
RUN [[ ${HELM_VERSION} != "" ]]; bash /tmp/install.sh --version ${HELM_VERSION}
|
||||
RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
|
||||
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
|
||||
|
||||
RUN rm /tmp/install.sh
|
||||
|
||||
# Install additionally helm plugins
|
||||
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
|
||||
helm plugin install https://github.com/helm-unittest/helm-unittest.git
|
||||
helm plugin install https://github.com/helm-unittest/helm-unittest.git && \
|
||||
helm plugin install https://github.com/losisin/helm-values-schema-json.git
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/helm" ]
|
||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
# HELM_VERSION
|
||||
# Only required to install a specifiy version
|
||||
HELM_VERSION?=v3.16.3 # renovate: datasource=github-releases depName=helm/helm
|
||||
HELM_VERSION?=v3.16.4 # renovate: datasource=github-releases depName=helm/helm
|
||||
|
||||
# CONTAINER_RUNTIME
|
||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||
|
Loading…
x
Reference in New Issue
Block a user