You've already forked helm-docker
Compare commits
8 Commits
v3.16.3
...
37941cb503
Author | SHA1 | Date | |
---|---|---|---|
37941cb503
|
|||
a0fa81d54a
|
|||
27fa6d8321
|
|||
7e76594809
|
|||
22ba0676d8
|
|||
361bfe9314 | |||
26e5c3695f
|
|||
a81dbaba71
|
14
.drone.yml
14
.drone.yml
@ -13,7 +13,7 @@ steps:
|
|||||||
- name: markdown lint
|
- name: markdown lint
|
||||||
commands:
|
commands:
|
||||||
- markdownlint *.md
|
- markdownlint *.md
|
||||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.42.0
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 150
|
cpu: 150
|
||||||
@ -66,7 +66,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: false
|
auto_tag: false
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@ -132,7 +132,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: false
|
auto_tag: false
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@ -198,7 +198,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: false
|
auto_tag: false
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@ -262,7 +262,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: false
|
auto_tag: false
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@ -446,7 +446,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: amd64
|
auto_tag_suffix: amd64
|
||||||
@ -506,7 +506,7 @@ steps:
|
|||||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: docker.io/plugins/docker:20.18.5
|
image: docker.io/plugins/docker:20.18.6
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: arm64-v8
|
auto_tag_suffix: arm64-v8
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
FROM docker.io/library/alpine:3.20.3
|
FROM docker.io/library/alpine:3.21.1
|
||||||
|
|
||||||
ARG HELM_VERSION
|
ARG HELM_VERSION
|
||||||
|
|
||||||
RUN apk add bash curl git openssl && \
|
RUN apk add bash curl git openssl && \
|
||||||
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
|
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
|
||||||
|
|
||||||
RUN [[ ${HELM_VERSION} == "" ]]; bash /tmp/install.sh
|
RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
|
||||||
RUN [[ ${HELM_VERSION} != "" ]]; bash /tmp/install.sh --version ${HELM_VERSION}
|
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
|
||||||
|
|
||||||
RUN rm /tmp/install.sh
|
RUN rm /tmp/install.sh
|
||||||
|
|
||||||
# Install additionally helm plugins
|
# Install additionally helm plugins
|
||||||
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
|
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" ]
|
ENTRYPOINT [ "/usr/local/bin/helm" ]
|
||||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
|||||||
# HELM_VERSION
|
# HELM_VERSION
|
||||||
# Only required to install a specifiy 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
|
# CONTAINER_RUNTIME
|
||||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||||
|
Reference in New Issue
Block a user