awesome-k8s-resources/readme.md

97 lines
6.4 KiB
Markdown
Raw Normal View History

2020-07-05 19:14:00 -04:00
# Awesome Kubernetes Resources [![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
2020-07-05 19:32:59 -04:00
A curated list of awesome Kubernetes tools and resources.
2020-07-05 19:14:00 -04:00
2020-07-05 19:32:59 -04:00
Inspired by [awesome](https://github.com/sindresorhus/awesome) list and [donnemartin/awesome-aws](https://github.com/donnemartin/awesome-aws).
2020-07-05 19:14:00 -04:00
2020-07-05 19:32:59 -04:00
## The Fiery Meter of AWSome
2020-07-05 21:44:21 -04:00
* Repo with 0050+ Stars: :fire:
2020-07-05 19:32:59 -04:00
* Repo with 0200+ Stars: :fire::fire:
* Repo with 0500+ Stars: :fire::fire::fire:
* Repo with 1000+ Stars: :fire::fire::fire::fire:
* Repo with 2000+ Stars: :fire::fire::fire::fire::fire:
Idea taken from [donnemartin/awesome-aws](https://github.com/donnemartin/awesome-aws).
2020-07-05 19:14:00 -04:00
2020-07-05 19:32:59 -04:00
## Contents
2020-07-05 21:06:52 -04:00
- [Tools and Libraries](#tools-and-libraries)
2020-07-05 21:44:21 -04:00
- [Command Line Tools](#command-line-tools)
- [Automation](#automation)
- [Testing](#testing)
- [Backup and Diaster Recovery](#backup-and-diaster-recovery)
- [Security and Compliance](#security-and-compliance)
- [Worker Node Operations](#worker-node-operations)
2020-07-05 19:35:59 -04:00
- [Guides, Tutorials, Documentations, and Trainings](#guides-tutorials-documentations-and-trainings)
2020-07-05 21:44:21 -04:00
- [Guides](#guides)
2020-07-05 22:17:30 -04:00
- [Blogs](#blogs)
2020-07-05 19:35:59 -04:00
- [Contribute](#contribute)
- [License](#license)
2020-07-05 19:14:00 -04:00
2020-07-05 21:06:52 -04:00
## Tools and Libraries
2020-07-05 21:49:59 -04:00
Items with :green_heart: indicate open source projects.
2020-07-05 19:14:00 -04:00
2020-07-05 21:06:52 -04:00
### Command Line Tools
- :green_heart:[Kubebox](https://github.com/astefanutti/kubebox) :fire::fire::fire::fire: - Terminal and Web console for Kubernetes
2020-07-05 21:44:21 -04:00
- :green_heart:[K9s](https://github.com/derailed/k9s) :fire::fire::fire::fire::fire: - K9s provides a terminal UI to interact with your Kubernetes clusters.
- :green_heart:[eksctl](https://github.com/weaveworks/eksctl) :fire::fire::fire::fire::fire: - `eksctl` is a simple CLI tool for creating clusters on EKS - Amazon's new managed Kubernetes service for EC2.
- :green_heart:[kubediff](https://github.com/weaveworks/kubediff) :fire::fire::fire: - Kubediff is a tool for Kubernetes to show you the differences between your running configuration and your version controlled configuration.
2020-07-05 19:14:00 -04:00
2020-07-05 21:44:21 -04:00
### Automation
- :green_heart:[Flux](https://github.com/fluxcd/flux) :fire::fire::fire::fire::fire: - Flux is a tool that automatically ensures that the state of a cluster matches the config in git.
- :green_heart:[Helm Operator](https://github.com/fluxcd/helm-operator) :fire::fire: - The Helm Operator is a Kubernetes operator, allowing one to declaratively manage Helm chart releases.
- :green_heart:[Flagger](https://github.com/weaveworks/flagger) :fire::fire::fire::fire::fire: - Flagger is a progressive delivery tool that automates the release process for applications running on Kubernetes.
- :green_heart:[Kubernetes External Secrets](https://github.com/godaddy/kubernetes-external-secrets) :fire::fire::fire: - Kubernetes External Secrets allows you to use external secret management systems, like AWS Secrets Manager or HashiCorp Vault, to securely add secrets in Kubernetes.
### Testing
- :green_heart:[kube-monkey](https://github.com/asobti/kube-monkey) :fire::fire::fire::fire: - It randomly deletes Kubernetes (k8s) pods in the cluster encouraging and validating the development of failure-resilient services.
- :green_heart:[Kubetest](https://github.com/vapor-ware/kubetest) :fire: - Kubetest is a pytest plugin that makes it easier to manage a Kubernetes cluster within your integration tests.
### Backup and Diaster Recovery
- :green_heart:[katafygio](https://github.com/bpineau/katafygio) :fire: - katafygio discovers Kubernetes objects (deployments, services, ...), and continuously save them as yaml files in a git repository.
### Security and Compliance
- :green_heart:[kube-bench](https://github.com/aquasecurity/kube-bench) :fire::fire::fire::fire::fire: - kube-bench is a Go application that checks whether Kubernetes is deployed securely by running the checks documented in the CIS Kubernetes Benchmark.
- :green_heart:[Gatekeeper](https://github.com/open-policy-agent/gatekeeper) :fire::fire::fire::fire: - Policy controller for Kubernetes
- :green_heart:[Konstraint](https://github.com/plexsystems/konstraint) - Konstraint is a CLI tool to assist with the creation and management of constraints when using Gatekeeper.
### Worker Node Operations
- :green_heart:[AWS Node Termination Handler](https://github.com/aws/aws-node-termination-handler) :fire::fire: - A Kubernetes Daemonset to gracefully handle EC2 instance shutdown
- :green_heart:[Descheduler for Kubernetes](https://github.com/kubernetes-sigs/descheduler) :fire::fire::fire::fire: - Descheduling pods from nodes based on policies
2020-07-05 22:04:31 -04:00
## Guides, Documentations, Blogs, and Trainings
2020-07-05 21:44:21 -04:00
### Guides
- [Amazon EKS Node Drainer](https://github.com/aws-samples/amazon-k8s-node-drainer) - A guide and an example to cordon and evict all evictable pods from an EC2 node being terminated.
- [Amazon EKS Workshop](https://www.eksworkshop.com/) - A comprehensive guide and list of tutorials to work with Amazon EKS.
2020-07-05 22:05:06 -04:00
- [Moduler and Scalable Amazon EKS Architecture](https://s3.amazonaws.com/aws-quickstart/quickstart-amazon-eks/doc/amazon-eks-architecture.pdf) - A deployment guide that provides step-by-step instructions for deploying Amazon EKS clusters.
2020-07-05 22:04:31 -04:00
- [kubectl Cheat Sheet](https://kubernetes.io/docs/reference/kubectl/cheatsheet/) - `kubectl` cheat sheet
- [Troubleshooting Kubernetes deployments](https://learnk8s.io/a/troubleshooting-kubernetes.pdf) - A flow chart to troubleshoot a kubernetes deployment in case of issues
- [How to deploy a production-grade Kubernetes cluster on AWS](https://gruntwork.io/guides/kubernetes/how-to-deploy-production-grade-kubernetes-cluster-aws/#use-eks) - This guide will walk you through the process of configuring a production-grade Kubernetes cluster on AWS.
- [Amazon EKS Best Practices Guide for Security](https://aws.github.io/aws-eks-best-practices/) - This guide provides advice about protecting information, systems, and assets that are reliant on EKS while delivering business value through risk assessments and mitigation strategies.
### Documentations
- [Kubernetes API Reference Docs](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/)
### Blogs
- [10 most common mistakes using kubernetes](https://blog.pipetail.io/posts/2020-05-04-most-common-mistakes-k8s/)
2020-07-05 19:14:00 -04:00
2020-07-05 19:32:59 -04:00
2020-07-05 19:14:00 -04:00
## Contribute
Contributions welcome! Read the [contribution guidelines](contributing.md) first.
## License
[![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0)
To the extent possible under law, Tom Huang has waived all copyright and
related or neighboring rights to this work.