Skip to content
/ helm Public
forked from alpine-docker/helm

Auto-trigger docker build for kubernetes helm when new release is announced

License

Notifications You must be signed in to change notification settings

invia-de/helm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kubernetes helm

Auto-trigger docker build for kubernetes helm when new release is announced

Github Repo

https://github.com/alpine-docker/helm

Daily travis CI build logs

https://travis-ci.org/alpine-docker/helm

Docker iamge tags

https://hub.docker.com/r/alpine/helm/tags/

Usage

# must mount the local folder to /apps in container.
docker run -ti --rm -v $(pwd):/apps -v ~/.kube:/root/.kube alpine/helm

# Run helm with special version. The tag is helm's version
docker run -ti --rm -v $(pwd):/apps -v ~/.kube:/root/.kube alpine/helm:2.12.1

# run container as command
alias helm="docker run -ti --rm -v $(pwd):/apps -v ~/.kube:/root/.kube 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 -v ~/.kube:/root/.kube alpine/helm'

Why we need it

Mostly it is used during CI/CD (continuous integration and continuous delivery) or as part of an automated build/deployment

The Processes to build this image

  • Enable Travis CI cronjob on this repo to run build daily on master branch
  • Check if there are new tags/releases announced via Github REST API
  • Match the exist docker image tags via Hub.docker.io REST API
  • If not matched, build the image with latest version as tag and push to hub.docker.com

About

Auto-trigger docker build for kubernetes helm when new release is announced

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 50.9%
  • Shell 33.1%
  • Dockerfile 16.0%