helm repo add kaniko https://AjayKumar4.github.io/helm-charts
helm repo update
See helm repo for command documentation.
To install the chart with the release name my-release
:
helm install my-release kaniko/kaniko
To uninstall/delete the my-release deployment:
helm delete my-release
The command removes all the Kubernetes components associated with the chart and deletes the release.
Parameter | Description | Default |
---|---|---|
dockersecertname |
DockerHub Registry Secert Name | dockerhub-registry |
context |
Git Repo Url git://github.com//.git | `` |
dockerfile |
Path to Dockerfile in Git Repo | DockerFile |
destination |
Full Docker image Name | `` |
helm install kaniko kaniko/kaniko \
--set dockersecertname="docker secert" \
--set context=git://github.com/<github username>/<repo>.git \
--set dockerfile=Dockerfile \
--set destination=<dockerhub username>/<repo>:1.0.0