{"id":20980702,"url":"https://github.com/statful/docker-aws-cli-kubectl","last_synced_at":"2026-04-09T10:03:56.534Z","repository":{"id":72508494,"uuid":"234210272","full_name":"statful/docker-aws-cli-kubectl","owner":"statful","description":null,"archived":false,"fork":false,"pushed_at":"2020-07-27T13:24:11.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-20T06:33:51.912Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/statful.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-16T01:42:29.000Z","updated_at":"2020-07-27T13:23:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"38c4b283-5b85-4a6b-b804-d9211359aaf0","html_url":"https://github.com/statful/docker-aws-cli-kubectl","commit_stats":null,"previous_names":[],"tags_count":95,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-kubectl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-kubectl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-kubectl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-kubectl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/statful","download_url":"https://codeload.github.com/statful/docker-aws-cli-kubectl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243382934,"owners_count":20282051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T05:29:44.033Z","updated_at":"2025-12-28T10:58:15.122Z","avatar_url":"https://github.com/statful.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# awscli-kubectl\n\n# What is awscli?\n\n\u003e Awscli is the Amazon web services command line interface.\n\n[Overview of awscli](https://docs.aws.amazon.com/cli/index.html)\n\n# What is Kubectl?\n\n\u003e Kubectl is the Kubernetes command line interface.\n\n[Overview of kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)\n\n# TL;DR;\n\n```bash\n$ docker run -ti --rm statful/awscli-kubectl\n```\n\n```bash\n$ 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\n```\n\n```bash\n$ docker run -ti -v '/Users/statful/.aws:/root/.aws' -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-kubectl kubectl get pods --all-namespaces\n```\n\n\n# Supported tags and respective `Dockerfile` links\n\n* [`awscli-1.16-kubectl-1.15`, `latest` (Dockerfile)](https://github.com/statful/awscli-kubectl/blob/Dockerfile)\n\nSubscribe to project updates by watching the [statful/awscli-kubectl GitHub repo](https://github.com/statful/awscli-kubectl).\n\n# Get this image\n\nThe recommended way to get the Statful awscli-kubectl Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/statful/awscli-kubectl).\n\n```bash\n$ docker pull statful/awscli-kubectl:latest\n```\n\nTo use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/statful/awscli-kubectl/tags/) in the Docker Hub Registry.\n\n```bash\n$ docker pull statful/awscli-kubectl:[TAG]\n```\n\nIf you wish, you can also build the image yourself.\n\n```bash\n$ docker build -t statful/awscli-kubectl:latest 'https://github.com/statful/awscli-kubectl.git#master'\n```\n\n# Configuration\n\n## Running commands\n\nTo run commands inside this container you can use `docker run`, for example to execute `kubectl --version` you can follow the example below:\n\n```bash\n$ docker run --rm --name kubectl statful/awscli-kubectl:latest -- kubectl version\n```\n\nConsult the [Kubectl Reference Documentation](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands) or the [AWS CLI Reference Documentation](https://docs.aws.amazon.com/cli/index.html) to find the completed list of commands available.\n\n## AWS Credentials\n\nAWS credentials can either be passed by environment variables, or by mounting a volume with aws credentials file under `/root/.aws`.\n\n### Environment variables\n\n```bash\n$ docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' --rm statful/awscli-kubectl aws s3 ls\n```\n\n### AWS directory\n\n```bash\ndocker run -ti -v '/Users/statful/.aws:/root/.aws' --rm statful/awscli-kubectl aws s3\n```\n\n## Kubectl credentials\n\nKubectl credentials can be passed by mounting a volume with the kubeconfig under `/root/.kube`.\n\n### Kubectl directory\n\n```bash\ndocker run -ti -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-kubectl kubectl get pods\n```\n\n# Contributing\n\nWe'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/statful/awscli-kubectl/issues), or submit a [pull request](https://github.com/statful/awscli-kubectl/pulls) with your contribution.\n\n# Issues\n\nIf you encountered a problem running this container, you can file an [issue](https://github.com/statful/awscli-kubectl/issues). For us to provide better support, be sure to include the following information in your issue:\n\n- Host OS and version\n- Docker version (`docker version`)\n- Output of `docker info`\n- Version of this container\n- The command you used to run the container, and any relevant output you saw (masking any sensitive information)\n\n# License\n\nCopyright (c) 2019 Statful. All rights reserved.\n\nThis work is licensed under the terms of the MIT license.\nFor a copy, see \u003chttps://opensource.org/licenses/MIT\u003e.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatful%2Fdocker-aws-cli-kubectl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstatful%2Fdocker-aws-cli-kubectl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatful%2Fdocker-aws-cli-kubectl/lists"}