๐ฅ5 Must have tools to install on your Kubernetes cluster โจ๏ธ๐
This article lists five must-have tools for developers to install on their Kubernetes cluster. ๐
Feel free to explore these projects, star the repositories, and contribute to your favourites. ๐
Without any further ado, let's get started. ๐โโ๏ธ๐จ
1. Odigos
๐ก Distributed tracing without code changes.
Odigos is an open-source observability control plane that enables organizations to create and maintain their observability pipeline.
Odigos automatically generates telemetry data in OpenTelemetry format to any Observability backend, without any code change. ๐ป.
It automatically instruments our application, eliminating the need to set up OpenTelemetry or anything on our own. Odigos handles it all. ๐คฏ
All this is possible because of the following:
Automated Instrumentation ๐พ: Odigos enables automated instrumentation of applications with OpenTelemetry and eBPF, eliminating the need for code modifications.
Universal Observability Tool Compatibility ๐ค: It smoothly integrates with various observability tools, providing comprehensive support and efficient collector management.
We've recently published an article on implementing Odigos, check it out here.
2. Argo CD
๐ก Declarative GitOps CD for Kubernetes.
Argo CD is a powerful GitOps CD tool that can help automate and simplify the deployment and management of Kubernetes applications ๐.
Argo CD main features include a web UI ๐ป, CLI, rollback capabilities, and simplified monitoring.
Why use Argo CD over traditional CD tools? ๐ค
Git as a single source of truth ๐คซ: Argo CD uses Git as a single source of truth for app and infrastructure configuration. It makes it easy to track changes and roll back deployment if something goes wrong.
Friendly web UI ๐ป: Argo CD provides a dashboard to manage and get the status of all the deployed applications.
Easy Rollbacks ๐: The cluster is synced with a separate git repository so we just need to revert the changes in git and the cluster will be automatically synced with the git repository.
Disaster Recovery ๐: In case of a disaster just point the git repository to the newly created cluster and it will have all the configs of the previous cluster.
These features make it accessible for both beginners and experienced Kubernetes users.
In short, Argo CD is a GitOps CD tool for Kubernetes โธ๏ธ that uses Git as the single source for app and infrastructure configurations and provides easy rollbacks, dashboard, and disaster recovery capabilities.
3. Nginx Ingress Controller
๐ก Specialized load balancer for Kubernetes environments.
It is the most widely used ingress controller for Kubernetes. โธ๏ธ It uses Nginx as a reverse proxy and load balancer.
It runs ๐โโ๏ธ in a Kubernetes environment with Nginx Plus or Nginx Open Source instances.
The key responsibilities of the Nginx Ingress Controller are ๐:
Load balance traffic to containers ๐ฆ in the Kubernetes cluster. It monitors Kubernetes ingress resources and routes traffic to the appropriate Kubernetes services and pods.
Handles networking, traffic management ๐ฎโโ๏ธ, communication and security ๐.
Deploys resources based on its configuration ๐ and automatically updates rules based on ingress resource definitions.
In short, It manages traffic, and security and dynamically adjusts routing based on Kubernetes ingress resources and configurations.
๐ Nginx Ingress Controller on GitHub
4. AWS Controller for Kubernetes
๐ก Manage AWS services using Kubernetes.
ACK, short for AWS Controllers for Kubernetes, is a set of custom controllers enabling integration between AWS services and Kubernetes clusters that let you directly manage AWS services from Kubernetes ๐ฎ.
ACK makes it simple to build scalable and highly available Kubernetes applications that utilize AWS services. It provides a unified way to manage our application and its dependencies โจ๏ธ.
Some key features of AWS Controllers for Kubernetes are:
Define and use AWS service resources directly from Kubernetes.
Take advantage of AWS-managed services for our Kubernetes applications without needing to define resources outside of the cluster or run services that provide supporting capabilities like databases ๐ or message queues.
In short, ACK enables us to manage AWS services directly from Kubernetes and provides a unified way to define and use AWS services from within our Kubernetes cluster.
๐ AWS Controllers for K8 on GitHub
5. Kyverno
๐ก Policy engine designed for Kubernetes.
When deploying things in Kubernetes, like Pods or ConfigMaps, it's important to set rules/policies.
A key practice is avoiding the use of the latest
tag for container images in production, as it's often a work-in-progress dev build.
What does Kyverno do? ๐ง
In Kubernetes, the security issue is a big deal, and one of the main reasons is misconfigurations. These security issues arise when there are no good rules (policies) in place.
This is where a policy manager like Kyverno comes into action. ๐
๐จ NOTE: Kyverno does not work on any other environment other than Kubernetes. If you are looking for a policy management that is vendor agnostic you might consider using something like Open Policy Agent.
Kyverno manages policies, whether they're about security or just good practices, in our Kubernetes setup.
We can create rules for things like the latest
tag issue mentioned earlier or focus on security, like making sure your container images are safe in the software supply chain.
In short, Kyverno is a policy engine that helps manage security and best practices by allowing users to manage policies for deployments, addressing issues like misconfigurations and promoting good practices โ ๏ธ.
If you think of any other helpful projects that I haven't covered in this article, please share them in the comments section below. ๐๐ป
So, that is it for this article. Thank you so much for reading! ๐