Image providing kubernetes tools kubectl and helm.
latestDockerfile3.1,3.1.23.1.2/Dockerfile3.0,3.0.13.0.1/Dockerfile2.14,2.14.32.14.3/Dockerfile2.12,2.12.22.12.2/Dockerfile2.10,2.10.02.10.0/Dockerfile2.9,2.9.12.9.1/Dockerfile2.8,2.8.22.8.2/Dockerfile2.7,2.7.22.7.2/Dockerfile2.6,2.6.12.6.1/Dockerfile2.5,2.5.12.5.1/Dockerfile
The main purpose of this image is to use it in CI pipelines, e.g. to deploy an
application using helm.
For example, for Gitlab CI:
...
deploy-staging:
image: hypnoglow/kubernetes-helm
stage: deploy
before_script:
- kubectl config set-cluster ${KUBE_NAME} ...
- kubectl config set-credentials ${KUBE_USER} ...
- kubectl config set-context ${KUBE_NAME}
--cluster="${KUBE_NAME}"
--user="${KUBE_USER}"
--namespace="${KUBE_NAMESPACE}"
- kubectl config use-context ${KUBE_NAME}
script:
- helm init --client-only
- helm install release-name chart/name --namespace ${KUBE_NAMESPACE}
...MIT.