Image providing kubernetes tools kubectl
and helm
.
latest
Dockerfile3.1
,3.1.2
3.1.2/Dockerfile3.0
,3.0.1
3.0.1/Dockerfile2.14
,2.14.3
2.14.3/Dockerfile2.12
,2.12.2
2.12.2/Dockerfile2.10
,2.10.0
2.10.0/Dockerfile2.9
,2.9.1
2.9.1/Dockerfile2.8
,2.8.2
2.8.2/Dockerfile2.7
,2.7.2
2.7.2/Dockerfile2.6
,2.6.1
2.6.1/Dockerfile2.5
,2.5.1
2.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.