├── google6434f393abb4322f.html ├── images └── eks-logo.png ├── _config.yml ├── _includes └── analytics.html ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE └── README.md /google6434f393abb4322f.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google6434f393abb4322f.html -------------------------------------------------------------------------------- /images/eks-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvz/awesome-eks/HEAD/images/eks-logo.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate 2 | # Google Analytics 3 | google_analytics: UA-168440747-1 4 | -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Add new tool 3 | about: Add a new tool to the list 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **If you'd like to add a new link, then please keep ensure that the product or tool works with Amazon EKS. Please add a link that is EKS specific, instead of providing a link the product homepage** 11 | 12 | 13 | 1. **What is the name of the tool?** 14 | 15 | 16 | 17 | 2. **Link to EKS specific documentation.** 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at re.alvrz@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![EKS logo](images/eks-logo.png) 2 | 3 | A curated list of awesome tools for Amazon EKS 🌊 4 | 5 | Want to add something? Open a PR! 🙂 6 | 7 | ## What is EKS 8 | Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. 9 | 10 | Amazon EKS runs Kubernetes control plane instances across multiple Availability Zone to ensure high availability. Amazon EKS automatically detects and replaces unhealthy control plane instances, and it provides automated version upgrades and patching for them. 11 | 12 | Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required. 13 | 14 | 15 | ## Table of content 16 | - [Cluster management tools](#cluster-management-tools) 17 | - [Data plane management](#data-plane-management) 18 | - [CLI tools](#cli-tools) 19 | - [Package managers](#package-managers) 20 | - [Security](#security) 21 | - [Networking](#networking) 22 | - [Compliance](#compliance) 23 | - [Container runtime security](#container-runtime-security) 24 | - [Audit](#audit) 25 | - [Monitoring](#monitoring) 26 | - [Logging](#logging) 27 | - [Tracing](#tracing) 28 | - [CI and CD tools](#ci-and-cd-tools) 29 | - [Scaling](#pod-scaling) 30 | - [Chaos testing](#chaos-testing) 31 | - [Storage](#storage) 32 | - [Ingress](#ingress) 33 | - [API gateways](#api-gateways) 34 | - [Service meshes](#service-meshes) 35 | - [Backup](#backup) 36 | - [Cost allocation](#cost-allocation) 37 | - [Machine learning](#machine-learning) 38 | - [Self-paced learning](#self-paced-learning) 39 | - [Miscellaneous](#miscellaneous) 40 | - [Upcoming Events](#upcoming-events) 41 | - [re:Invent 2019 sessions](#re-invent-2019-sessions) 42 | - [Twitter](#twitter) 43 | - [Books](#books) 44 | - [Contributors](#contributors) 45 | 46 | --- 47 | 48 | 49 | ## Cluster management tools 50 | 51 | * [eksctl](https://eksctl.io) 52 | * [AWS CloudFormation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html) 53 | * [cdk8s](https://github.com/awslabs/cdk8s) - Define Kubernetes native apps and abstractions using object-oriented programming 54 | * [CDK Amazon EKS Construct Library](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-eks-readme.html) 55 | * [Terraform](https://www.terraform.io/docs/providers/aws/guides/eks-getting-started.html) 56 | * [Pulumi](https://www.pulumi.com/docs/tutorials/kubernetes/eks/) 57 | * [Octant](https://github.com/metral/octumi) - Deploy VMware Octant on a EKS Cluster using Pulumi 58 | * [ekstender](https://github.com/mreferre/ekstender) - tool that extends a vanilla Amazon EKS cluster with a number of add-on OSS projects. 59 | * [aws-k8s-tester](https://github.com/aws/aws-k8s-tester) - Implements [`k8s.io/test-infra/kubetest2`](https://github.com/kubernetes/test-infra/tree/master/kubetest2), creates/deletes testing EKS cluster with various add-ons. 60 | * [eksctl with Ocean integration by Spot.io](https://spot.io/blog/eks-done-right-from-control-plane-to-worker-nodes/) - eksctl integrated with Ocean by Spot.io to launch EKS on spot instances with a single command 61 | 62 | 63 | ## Data plane management 64 | * [Managed nodes groups](https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html) 65 | * [AWS Node Termination Handler](https://github.com/aws/aws-node-termination-handler) 66 | * [amazon-k8s-node-drainer](https://github.com/aws-samples/amazon-k8s-node-drainer) 67 | * [EKS Rolling Update](https://github.com/hellofresh/eks-rolling-update) 68 | * [Optimized worker node management, launched on spot instances](https://eksworkshop.com/beginner/190_ocean/) 69 | 70 | 71 | ## CLI tools 72 | * [Krew](https://krew.sigs.k8s.io) - a plugin manager for kubectl 73 | * [kubectl-plugins](https://github.com/jordanwilson230/kubectl-plugins) 74 | * [kubectx](https://github.com/ahmetb/kubectx) — Faster way to switch between clusters and namespaces in kubectl 75 | * [kube-ps1](https://github.com/jonmosco/kube-ps1) — Kubernetes prompt for bash and zsh. Adds the current context and namespace to the prompt 76 | * [kui](https://github.com/IBM/kui/) - A hybrid command-line/UI development experience for cloud-native development 77 | * [kubectl debug](https://github.com/aylei/kubectl-debug) - Debug your pod by a new container with every troubleshooting tools pre-installed 78 | * [k9s](https://github.com/derailed/k9s) - Provides a terminal UI to interact with your Kubernetes clusters 79 | * [kubectl tree](https://github.com/ahmetb/kubectl-tree) 80 | 81 | ## Package managers 82 | * [Helm](https://docs.aws.amazon.com/eks/latest/userguide/helm.html) - The Kubernetes Package Manager 83 | * [Amazon EKS Helm chart repository](https://github.com/aws/eks-charts) 84 | 85 | ## Security 86 | * [EKS Best Practices Guide for Security](https://aws.github.io/aws-eks-best-practices/) 87 | * [Kyverno](https://github.com/kyverno/kyverno) 88 | * [Gatekeeper](https://github.com/open-policy-agent/gatekeeper) 89 | * [Open Policy Agent](https://aws.amazon.com/blogs/opensource/using-open-policy-agent-on-amazon-eks/) 90 | * [Bane](https://github.com/genuinetools/bane) - Custom & better AppArmor profile generator for Docker containers. 91 | * [IAM Roles for service accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html) 92 | * [eksuser](https://github.com/prabhatsharma/eksuser/) - Utility to manage Amazon EKS users 93 | * [Sysdig Falco](https://sysdig.com/blog/amazon-eks-monitoring-and-security-with-sysdig/) 94 | * [cert-manager](https://aws.amazon.com/blogs/containers/securing-eks-ingress-contour-lets-encrypt-gitops/) 95 | * [Pod security policy](https://docs.aws.amazon.com/eks/latest/userguide/pod-security-policy.html) 96 | * [kube-hunter](https://github.com/aquasecurity/kube-hunter) 97 | 98 | ## Networking 99 | * [AWS VPC CNI](https://github.com/aws/amazon-vpc-cni-k8s) 100 | * [CNI metrics helper](https://docs.aws.amazon.com/eks/latest/userguide/cni-metrics-helper.html) 101 | * [Calico network policy engine for Kubernetes](https://docs.aws.amazon.com/eks/latest/userguide/calico.html) 102 | * [Cluster VPC considerations](https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html) 103 | * [ksniff](https://github.com/eldadru/ksniff) - Kubectl plugin to ease sniffing on kubernetes pods using tcpdump and wireshark 104 | 105 | 106 | ## Compliance 107 | * [kube-bench](https://github.com/aquasecurity/kube-bench#running-in-an-eks-cluster) 108 | * [docker-bench-security](https://github.com/docker/docker-bench-security) 109 | * [actuary](https://github.com/diogomonica/actuary) 110 | * [AWS Inspector](https://aws.amazon.com/inspector/) 111 | * [Sysdig Secure](https://sysdig.com/products/kubernetes-security/) 112 | 113 | ## Container runtime security 114 | * [Aqua](https://www.aquasec.com/products/aqua-cloud-native-security-platform/) 115 | * [Qualys](https://www.qualys.com/apps/container-security/) 116 | * [Amazon ECR container image scanning](https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html) 117 | * [Twistlock](https://www.twistlock.com/2017/11/29/elastic-container-service-kubernetes-amazon-eks-twistlock/) 118 | 119 | ## Audit 120 | * [Logging Amazon EKS API calls with AWS CloudTrail](https://docs.aws.amazon.com/eks/latest/userguide/logging-using-cloudtrail.html) 121 | * [kaudit](https://github.com/alcideio/kaudit) 122 | * [kubeaudit](https://github.com/Shopify/kubeaudit) 123 | * [MKIT](https://github.com/darkbitio/mkit#example-run-against-an-eks-cluster) 124 | * [kubesec.io](https://kubesec.io/) 125 | * [polaris](https://aws.amazon.com/blogs/opensource/running-secure-workloads-eks-polaris/) 126 | 127 | ## Monitoring 128 | * [Kubernetes Metrics Server](https://docs.aws.amazon.com/eks/latest/userguide/metrics-server.html) — Cluster-wide aggregator of resource usage data 129 | * [kube-state-metrics](https://github.com/kubernetes/kube-state-metrics) — Add-on agent to generate and expose cluster-level metrics. 130 | * [Prometheus + Grafana](https://eksworkshop.com/intermediate/240_monitoring/) 131 | * [CloudWatch Container Insights](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContainerInsights.html) 132 | * [Using Prometheus Metrics in Amazon CloudWatch](https://aws.amazon.com/blogs/containers/using-prometheus-metrics-in-amazon-cloudwatch/) 133 | * [k8s-image-availability-exporter](https://github.com/flant/k8s-image-availability-exporter) - Alerts if an image used in Kubernetes cannot be pulled from container registry 134 | * [Mizu](https://github.com/up9inc/mizu) - The API Traffic Viewer for Kubernetes (Think TCPDump and Wireshark re-invented for Kubernetes) 135 | 136 | ## Troubleshooting 137 | * [kubespy](https://github.com/pulumi/kubespy) 138 | * [Sloop](https://github.com/salesforce/sloop) 139 | 140 | ## Logging 141 | * [Amazon EKS control plane logging](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html) 142 | * [Fluentd](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Container-Insights-setup-logs.html) — Set Up FluentD as a DaemonSet to Send Logs to CloudWatch Logs 143 | * [Kubernetes Logging powered by AWS for Fluent Bit](https://aws.amazon.com/blogs/containers/kubernetes-logging-powered-by-aws-for-fluent-bit/) 144 | * [Cloudwatch Container Insights](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Container-Insights-setup-EKS-quickstart.html) 145 | 146 | ## Tracing 147 | * [AWS X-Ray](https://aws.amazon.com/xray/) 148 | * [Jaeger](https://github.com/jaegertracing/jaeger) 149 | 150 | ## CI and CD tools 151 | * [Flux](https://github.com/fluxcd/flux) - The GitOps Kubernetes operator 152 | * [Flagger](https://docs.flagger.app/install/flagger-install-on-eks-appmesh) - Progressive Delivery Operator for Kubernetes 153 | * [Spinnaker](https://github.com/spinnaker/spinnaker) 154 | * Jenkins 155 | * [Jenkins X](https://docs.cloudbees.com/docs/cloudbees-jenkins-x-distribution/latest/eks-install-guide/eks-boot) 156 | * Travis 157 | * [Circle CI](https://circleci.com/integrations/kubernetes/) 158 | * [Gitlab](https://docs.gitlab.com/ee/user/project/clusters/add_eks_clusters.html) 159 | * [Shippable](http://docs.shippable.com/getting-started/tutorials/) 160 | * [Argo](https://eksworkshop.com/advanced/410_batch/deploy/) 161 | 162 | ## Pod scaling 163 | * [Goldilocks vertical-pod-autoscaler](https://github.com/FairwindsOps/goldilocks/) 164 | * [kube-metrics-adapter](https://github.com/zalando-incubator/kube-metrics-adapter) 165 | * [right-size-guide](https://github.com/mhausenblas/right-size-guide) — A CLI tool providing memory & CPU recommendations for containerized apps 166 | * [Automatic right-sizing](https://spot.io/blog/kubernetes-automatic-rightsizing-with-dynamic-admission-controller/) — Using Kubernetes [dynamic admission controller](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/) to implement automatic right-sizing recommendations 167 | * [Escalator](https://github.com/atlassian/escalator) - A batch or job optimized horizontal autoscaler 168 | 169 | ## Chaos testing 170 | * [Gremlin](https://www.gremlin.com/community/tutorials/how-to-install-and-use-gremlin-with-eks/) 171 | * [Chaos Mesh](https://github.com/pingcap/chaos-mesh) 172 | * [PowerfulSeal](https://github.com/bloomberg/powerfulseal) 173 | * [kube-monkey](https://github.com/asobti/kube-monkey) 174 | * [chaoskube](https://github.com/linki/chaoskube) 175 | * [LitmusChaos](https://github.com/litmuschaos/litmus) 176 | 177 | ## Storage 178 | * [Amazon EBS CSI driver](https://github.com/kubernetes-sigs/aws-ebs-csi-driver) 179 | * [Amazon EFS CSI driver](https://github.com/kubernetes-sigs/aws-efs-csi-driver) 180 | * [Amazon FSx for Lustre CSI driver](https://github.com/kubernetes-sigs/aws-fsx-csi-driver) 181 | * [Rook](https://github.com/rook/rook) 182 | * [OpenEBS](https://help.mayadata.io/hc/en-us/articles/360037226451-Creating-an-OpenEBS-cluster-in-an-EKS-cluster) 183 | 184 | ## Ingress 185 | * [ALB Ingress Controller](https://github.com/kubernetes-sigs/aws-alb-ingress-controller) - AWS ALB Ingress Controller for Kubernetes 186 | * [Gloo](https://github.com/solo-io/gloo) - The Feature-rich, Kubernetes-native, Next-Generation API Gateway Built on Envoy 187 | * [Traefik](https://containo.us/traefik/) — Cloud Native Edge Router 188 | * [Nginx](https://aws.amazon.com/blogs/opensource/network-load-balancer-nginx-ingress-controller-eks/) 189 | * [Contour](https://github.com/projectcontour/contour) 190 | 191 | ## API gateways 192 | * [Ambassador](https://github.com/datawire/ambassador) 193 | * [Kong](https://github.com/Kong/kong) 194 | * [Amazon API Gateway](https://aws.amazon.com/blogs/containers/api-gateway-as-an-ingress-controller-for-eks/) 195 | 196 | ## Service meshes 197 | * [AppMesh](https://docs.aws.amazon.com/eks/latest/userguide/appmesh-getting-started.html) 198 | * [Istio](https://aws.amazon.com/blogs/opensource/getting-started-istio-eks/) 199 | * [Linkerd](http://linkerd.io) 200 | * [Consul](https://learn.hashicorp.com/consul/kubernetes/aws-k8s) 201 | 202 | ## Backup 203 | * [Velero](https://eksworkshop.com/intermediate/280_backup-and-restore/) 204 | * [Kasten K10](https://kasten.io) 205 | 206 | 207 | ## Cost allocation 208 | * [kubecost](https://kubecost.com) 209 | * [Kubernetes Opex Analytics](https://github.com/rchakode/kube-opex-analytics) 210 | * [Kubernetes Cost Allocation](https://spot.io/blog/kubernetes-workload-chargeback-and-showback/) 211 | 212 | 213 | ## Machine learning 214 | * [Kubeflow](https://github.com/kubeflow/kubeflow) — Machine Learning Toolkit for Kubernetes 215 | * [Optimizing Spark performance on Kubernetes](https://aws.amazon.com/blogs/containers/optimizing-spark-performance-on-kubernetes/) 216 | * [__Video__ AWS re:Invent 2019: Building machine-learning infrastructure on Amazon EKS with Kubeflow (CON306-R1)](https://www.youtube.com/watch?v=ULlqukKVKBo) 217 | 218 | ## Self-paced learning 219 | * [EKS Workshop](https://eksworkshop.com) 220 | * [Amazon EKS and Kubernetes on EC2 Container Networking Workshop](https://awsk8snetworkshops.com/) 221 | * [AWS Kubeflow Workshop](https://master.d2j834wqg8s4j0.amplifyapp.com/) 222 | * [App Mesh Workshop](https://www.appmeshworkshop.com/) 223 | * [Blue Green Deployment with Amazon EKS and K8s](https://awsdemoworkshops.s3.us-east-2.amazonaws.com/cicd-eks-alb-bg-cdk-workshop/public/en/index.html) 224 | * [EKS/ECR/ECS Modernization](https://modernize.awsworkshop.io) 225 | * [GitOps Helm Workshop](https://helm.workshop.flagger.dev/) 226 | * [Introduction to GitOps on Amazon EKS with Weaveworks](https://weaveworks-gitops.awsworkshop.io/) 227 | 228 | 229 | ## Miscellaneous 230 | * [AWS container services roadmap](https://github.com/aws/containers-roadmap/projects/1) 231 | * [Container content ideas for AWS](https://github.com/awslabs/container-content-ideas-for-aws/projects/1) 232 | * [AWS containers blog](https://aws.amazon.com/blogs/containers/) 233 | * [Nick Brandaleone's blog](https://www.nickaws.net) 234 | * [Amazon EKS Kubernetes versions](https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html#kubernetes-1.16) 235 | * [Windows support](https://docs.aws.amazon.com/eks/latest/userguide/windows-support.html) 236 | * [ARM Support](https://docs.aws.amazon.com/eks/latest/userguide/arm-support.html) 237 | * [Amazon EKS on AWS Outposts](https://docs.aws.amazon.com/eks/latest/userguide/eks-on-outposts.html) 238 | * [Awesome AWS Workshops](https://awesome-aws-workshops.com/#containers) 239 | 240 | ## Upcoming events 241 | - July 9, 2020 - [AWS Cloud Containers Conference](https://awscloudcontainersconference.splashthat.com/?&trk=el_a134p000003yOg3AAE&trkCampaign=AWS_Cloud_Containers_Conference&sc_channel=el&sc_campaign=GLOBAL_PM_WEBINAR_aws-cloud-containers-conference_20200709&sc_outcome=Product_Marketing&sc_geo=mult) 242 | 243 | ## re:Invent 2019 sessions 244 | * [AWS re:Invent 2019: Running Kubernetes at Amazon scale using Amazon EKS (CON212-R1)](https://www.youtube.com/watch?v=M-Fh0OzliJI) 245 | * [AWS re:Invent 2019: Running Kubernetes Applications on AWS Fargate (CON326-R1)](https://www.youtube.com/watch?v=m-3tMXmWWQw) 246 | * [AWS re:Invent 2019: Amazon EKS under the hood (CON421-R1)](https://www.youtube.com/watch?v=7vxDWDD2YnM) 247 | * [AWS re:Invent 2019: Building machine-learning infrastructure on Amazon EKS with Kubeflow (CON306-R1)](https://www.youtube.com/watch?v=ULlqukKVKBo) 248 | * [AWS re:Invent 2019: How Ticketmaster runs Kubernetes for 80% less without managing VMs (CON308-S)](https://www.youtube.com/watch?v=X7RmfleuWrw) 249 | 250 | 251 | ## Twitter 252 | * [Chris Short](https://twitter.com/ChrisShort) - AWS Developer Advocate 253 | * [Massimo Re Ferre'](https://twitter.com/mreferre) - AWS Developer Advocate 254 | * [Michael Hausenblas](https://twitter.com/mhausenblas) - AWS Developer Advocate 255 | 256 | ## Books 257 | * Container Security by Liz Rice 258 | * Kubernetes Patterns by Roland Huß 259 | * Kubernetes Best Practices by Lachlan Evenson, Dave Strebel, Eddie Villalba, Brendan Burns 260 | * Programming Kubernetes by Michael Hausenblas and Stefan Schimanski 261 | * Kubernetes Cookbook by Sébastien Goasguen and Michael Hausenblas 262 | * Mastering Kubernetes by Gigi Sayfan 263 | * Kubernetes Security by Liz Rice and Michael Hausenblas 264 | * Kubernetes - A Complete DevOps Cookbook by Murat Karslioglu 265 | 266 | ## Maintainers 267 | [@realvz](https://twitter.com/realz) 268 | 269 | --------------------------------------------------------------------------------