The hardest container image to find on public repositories is the one I want, but it always seems to be missing a part. Therefore, I decided to build it myself. 😎
This image base on alpine
, and packs the git, Kubectl together with the Helm.
Mostly it is used during CI/CD (continuous integration and continuous delivery) or as part of an automated build/deployment with Amazon ECR and EKS.
The latest docker tag is the latest release version
Please avoid to use latest
tag for any production deployment.
Tag with right version is the proper way, such as vipcube/dockercli-with-aws-k8s-helm:v0.3.1
.
https://github.com/Vipcube/dockercli-with-aws-k8s-helm
https://hub.docker.com/r/vipcube/dockercli-with-aws-k8s-helm/tags
# run container as git command
docker run -it vipcube/dockercli-with-aws-k8s-helm git
# run container as docker command
docker run -it vipcube/dockercli-with-aws-k8s-helm docker
# run container as aws command
docker run -it vipcube/dockercli-with-aws-k8s-helm aws
# run container as kubectl command
docker run -it vipcube/dockercli-with-aws-k8s-helm kubectl
# run container as helm command
docker run -it vipcube/dockercli-with-aws-k8s-helm helm
maintain by: @Vipcube