Auto-trigger docker build for kubernetes helm when new release is announced
50M+
If enjoy, please consider buying me a coffee.
Auto-trigger docker build for kubernetes helm when new release is announced
The latest docker tag is the latest release version (https://github.com/helm/helm/releases/latest)
Please avoid to use latest tag for any production deployment. Tag with right version is the proper way, such as alpine/helm:3.11.1
If you need run kubectl with helm together, please use another image alpine/k8s
On 14th Oct 2024, automation pipeline has been switched from Circle CI to Github Action
This feature was added on 23th May 2021.
--platform linux/amd64,linux/arm/v7,linux/arm64/v8,linux/arm/v6,linux/ppc64le,linux/s390x.docker pull and docker run commands with multi-arch docker images; you can run them as normal. For example, if you need to pull an image from arm64 (such as the new Mac M1 chip), you can run docker pull alpine/helm:3.5.4 to get the image directly. Remember to specify the desired version number.https://github.com/alpine-docker/helm
https://github.com/alpine-docker/helm/actions
https://hub.docker.com/r/alpine/helm/tags/
# mount local folders in container.
docker run -ti --rm -v $(pwd):/apps -w /apps \
-v ~/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config/helm:/root/.config/helm \
-v ~/.cache/helm:/root/.cache/helm \
alpine/helm
# Run helm with special version. The tag is helm's version
docker run -ti --rm -v $(pwd):/apps -w /apps \
-v ~/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config/helm:/root/.config/helm \
-v ~/.cache/helm:/root/.cache/helm \
alpine/helm:3.1.1
# run container as command
alias helm='docker run -ti --rm -v $(pwd):/apps -w /apps \
-v ~/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config/helm:/root/.config/helm \
-v ~/.cache/helm:/root/.cache/helm \
alpine/helm'
helm --help
# example in ~/.bash_profile
alias helm='docker run -e KUBECONFIG="/root/.kube/config:/root/.kube/some-other-context.yaml" -ti --rm -v $(pwd):/apps -w /apps \
-v ~/.kube:/root/.kube -v ~/.helm:/root/.helm -v ~/.config/helm:/root/.config/helm \
-v ~/.cache/helm:/root/.cache/helm \
alpine/helm'
Mostly it is used during CI/CD (continuous integration and continuous delivery) or as part of an automated build/deployment
Content type
Image
Digest
sha256:905a068da…
Size
35.1 MB
Last updated
3 days ago
Requires Docker Desktop 4.37.1 or later.
Pulls:
225,217
Last week