Tag: Helm

  • Installing and Testing Sealed Secrets on a k8s Cluster Using Terraform

    Introduction In a Kubernetes environment, secrets are often used to store sensitive information like passwords, API keys, and certificates. However, these secrets are stored in plain text within the cluster, making them vulnerable to attacks. To secure this sensitive information, Sealed Secrets provides a way to encrypt secrets before they are stored in the cluster,…

  • Using Sealed Secrets with ArgoCD and Helm Charts

    When managing Kubernetes applications with ArgoCD and Helm, securing sensitive data such as passwords, API keys, and other secrets is crucial. Bitnami Sealed Secrets provides a powerful way to encrypt secrets that can be safely stored in Git and used within your ArgoCD and Helm workflows. This guide will cover how to integrate Sealed Secrets…

  • Using ArgoCD, Helm, and SOPS for Secure Kubernetes Deployments

    As Kubernetes becomes the standard for container orchestration, managing and securing your Kubernetes deployments is critical. ArgoCD, Helm, and SOPS (Secret Operations) can be combined to provide a powerful, secure, and automated solution for managing Kubernetes applications. This guide provides a detailed overview of how to integrate ArgoCD, Helm, and SOPS to achieve secure GitOps…

  • Best Practices for Using SOPS (Secret Operations)

    SOPS (Secret Operations) is a powerful tool for managing and encrypting secrets in a secure, auditable, and version-controlled way. When using SOPS, following best practices ensures that your secrets remain protected, your workflows are efficient, and your systems are resilient. Below are some best practices to consider when using SOPS. 1. Choose the Right Encryption…

  • ArgoCD: GitOps Continuous Delivery

    In the world of Kubernetes and cloud-native technologies, continuous delivery and automation are key to maintaining agility and efficiency. ArgoCD has emerged as a powerful tool that embodies the principles of GitOps, providing a declarative, Git-based continuous delivery solution for Kubernetes. This article delves into what ArgoCD is, how it works, and why it’s become…