Sagar Rawatsagarrawatt.hashnode.dev·Dec 22, 2024Streamlining Kubernetes secrets with external secret operator and aws secret managercontent Why we using external secret operator Step 1: Creating a service account or IAM user & secret key and access key in Aws. Step 2: Installation of an external secret operator. Step 3: Creating secret store , secrets , and external secret S...AWS
Amulyaawscloudbasics.hashnode.dev·Dec 6, 2024Mastering Kubernetes ConfigMaps and Secrets: A Deep Dive into Configuration ManagementIntroduction In the complex world of Kubernetes, managing application configurations and sensitive data is a critical challenge for DevOps engineers and developers. ConfigMaps and Secrets are two powerful Kubernetes resources that provide elegant sol...DevOpsconfigmap
Shaik Mustafamustafa-k8s.hashnode.dev·Dec 4, 2024ConfigMaps vs. Secrets: The Silent Heroes of Kubernetes ConfigurationsCONFIGMAPS: A ConfigMap in Kubernetes is used to store configuration data in the form of key-value pairs. This data is typically non-confidential and helps to decouple the configuration settings from the application code, eliminating hardcoded values...103 readskubernetes configmaps and secrets
Piotrekkrpiotrekkr.hashnode.dev·Nov 10, 2024Using GCP Secret Manager With Container-Optimized OS VMsUsing Google Cloud Platform Secret Manager service is a convenient way to store and manage secrets. It has many features like automatic rotation, audit logging, access control and many others. It is integrated with GCP services like Cloud Functions, ...GCP
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Nov 9, 2024Secrets Management in K8sUsing credentials directly in the Helm chart's values.yaml file is convenient for testing and development, but it's not recommended for production or real-world scenarios due to security risks. In real-world deployments, sensitive information like da...Kubernetes Basics: A Beginner’s GuideKubernetes
Maxat Akbanovmaxat-akbanov.com·Oct 17, 2024Securing Secrets with SOPS: An IntroductionSOPS (Secrets OPerationS) is an open-source tool developed by Mozilla for managing secrets — such as passwords, API keys, and confidential configuration data — in a secure and convenient manner. Initially launched in 2015 as a Mozilla project, it has...44 readstoolsDevops
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 13, 2024☑️Day 42: Exploring Secrets in Kubernetes🚀🔹Table of Contents : Introduction Benefits of Using Secrets Creating and Managing Secrets Real-Time Scenarios for Using Secrets Hands-On Tasks Task 1: Encrypting and decrypting a Secret for application.properties Task 2: Creating a Secret fro...10 likesDevops
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Oct 4, 2024K8s: ConfigMaps & SecretsWhat are ConfigMaps in K8s? A ConfigMap is an API object used to store non-confidential data in key-value pairs. Pods can consume ConfigMaps as environment variables, command-line arguments, or as configuration files in a volume. A ConfigMap allows y...33 readsKubernetes Basics: A Beginner’s GuideKubernetes
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Oct 3, 2024Accessing Secrets Using Cross Account Role between Two AWS Accounts.Introduction :- In the world of cloud computing, managing secrets across different #AWS accounts can be a challenging task. However, by using cross-account roles, we can simplify this process and enhance security. This blog post will guide you throug...AWS
Rahul PatilforInfraspecinfraspec.hashnode.dev·Sep 25, 2024Managing Credentials and Secrets in TerraformImagine you're working on a project where you need to deploy resources to AWS using Terraform. In a rush to finish things, you hard-code your AWS credentials directly into your Terraform files. Everything works fine at first, and your resources are s...10 likesTerraform