Secrets Store CSI Driver vs. External Secrets Operator

Managing secrets is critical for running secure and professional Kubernetes clusters. Sensitive data like API keys, database passwords, and TLS certificates need to be handled with care. While Kubernetes offers its own Secret object, it is often better to delegate the actual storage and management of secrets to external, specialized systems like AWS Secrets Manager,

Secrets Store CSI Driver vs. External Secrets Operator Read More »

Secure EKS Clusters with Falco

Falco is an open-source security tool for linux-based systems. Thanks to its plugin architecture, it can also be used to scan and monitor Kubernetes clusters. This article will cover some of the basics of Falco and show how it can be used to monitor AWS EKS clusters. Security Scan Basics There are two basic types

Secure EKS Clusters with Falco Read More »

Evaluating AWS EKS Pod Identity

EKS Pod Identity was announced at AWS ReInvent:2023. This feature aims to simplify granting pods access to AWS services running in an EKS cluster. AWS EKS Pod Identity allows you to associate an IAM role with a Kubernetes service account and configure your Pods to use that service account. Introduction Kubernetes workloads that need access

Evaluating AWS EKS Pod Identity Read More »

Centralized Secrets with ESO and AWS Secrets Manager

If you manage several Kubernetes clusters across different AWS accounts, you know it can be challenging to manage Kubernetes secrets across all of those clusters. This article describes a method to store secrets values in AWS Secrets Manager in a single account and use those secrets in Kubernetes clusters running in different AWS accounts. Furthermore,

Centralized Secrets with ESO and AWS Secrets Manager Read More »

EBS-backed Ephemeral Volumes

Ephemeral volumes are a feature of Kubernetes that allows the creation of storage volumes which follow the lifecycle of the pod. In other words, when the pod is destroyed, the volume is also destroyed. This differs from persistent volumes, which are often used to retain data, even after the pod is no longer running. In

EBS-backed Ephemeral Volumes Read More »

Scroll to Top