Auto-generated Docker image for helm/helm with curl
5.6K
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 renaultdigital/helm:3.1.1
Same image as alpine-docker with curl (for push).
https://github.com/renault-digital/helm
https://travis-ci.org/renault-digital/helm
https://hub.docker.com/r/renaultdigital/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 \
renaultdigital/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 \
renaultdigital/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 \
renaultdigital/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 \
renaultdigital/helm'
Mostly it is used during CI/CD (continuous integration and continuous delivery) or as part of an automated build/deployment
renaultdigital/helm:latest and push to hub.docker.comOriginal works from https://github.com/alpine-docker/helm.
Content type
Image
Digest
Size
48.1 MB
Last updated
over 4 years ago
docker pull renaultdigital/helm