Awscli is the Amazon web services command line interface.
Kubectl is the Kubernetes command line interface.
$ docker run -ti --rm statful/awscli-kubectl
$ docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-kubectl kubectl get pods --all-namespaces
$ docker run -ti -v '/Users/statful/.aws:/root/.aws' -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-kubectl kubectl get pods --all-namespaces
Subscribe to project updates by watching the statful/awscli-kubectl GitHub repo.
The recommended way to get the Statful awscli-kubectl Docker Image is to pull the prebuilt image from the Docker Hub Registry.
$ docker pull statful/awscli-kubectl:latest
To use a specific version, you can pull a versioned tag. You can view the list of available versions in the Docker Hub Registry.
$ docker pull statful/awscli-kubectl:[TAG]
If you wish, you can also build the image yourself.
$ docker build -t statful/awscli-kubectl:latest 'https://github.com/statful/awscli-kubectl.git#master'
To run commands inside this container you can use docker run
, for example to execute kubectl --version
you can follow the example below:
$ docker run --rm --name kubectl statful/awscli-kubectl:latest -- kubectl version
Consult the Kubectl Reference Documentation or the AWS CLI Reference Documentation to find the completed list of commands available.
AWS credentials can either be passed by environment variables, or by mounting a volume with aws credentials file under /root/.aws
.
$ docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' --rm statful/awscli-kubectl aws s3 ls
docker run -ti -v '/Users/statful/.aws:/root/.aws' --rm statful/awscli-kubectl aws s3
Kubectl credentials can be passed by mounting a volume with the kubeconfig under /root/.kube
.
docker run -ti -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-kubectl kubectl get pods
We'd love for you to contribute to this container. You can request new features by creating an issue, or submit a pull request with your contribution.
If you encountered a problem running this container, you can file an issue. For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (
docker version
) - Output of
docker info
- Version of this container
- The command you used to run the container, and any relevant output you saw (masking any sensitive information)
Copyright (c) 2019 Statful. All rights reserved.
This work is licensed under the terms of the MIT license. For a copy, see https://opensource.org/licenses/MIT.