Sign inSign up

lorands/kube-tools-aws

By lorands

•Updated almost 6 years ago

Image
0

357

lorands/kube-tools-aws repository overview

⁠kube-tools-aws

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.

⁠Included Tools

⁠Example Usage

# 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...

Tag summary

Content type

Image

Digest

Size

118.2 MB

Last updated

over 6 years ago

docker pull lorands/kube-tools-aws