A lightweight Docker image (based on Alpine) that comes with all the tools you need to work with Kubernetes, Helm charts, AWS (awscli), and AWS EKS. Intended to be a flexible foundation of tools for CI/CD workflows.
jq) - https://github.com/kislyuk/yq# start up an image
docker run -it \
-e AWS_ACCESS_KEY_ID="<AWS key>" \
-e AWS_SECRET_ACCESS_KEY="<AWS secret>" \
-e AWS_DEFAULT_REGION="us-east-1" \
jshimko/kube-tools-aws:latest
# the above command drops into a bash shell with
# all of the tooling for the following commands...
# configure kubectl auth for an existing EKS cluster named "my-cluster"
aws eks update-kubeconfig --name my-cluster
# confirm it worked by listing your pods
kubectl get pods --all-namespaces
# or list your helm deployments
helm ls --all-namespaces
# now do stuff for your CI/CD process...
Content type
Image
Digest
Size
118.2 MB
Last updated
over 6 years ago
docker pull lorands/kube-tools-aws