George Ezejioforgeorgeezejiofor.com·Nov 15, 2024Implementing Blue-Green Deployment in Kubernetes with TLS Encryption Using Cert-Manager and Nginx IngressIntroduction 🌟 In modern cloud-native environments, ensuring zero-downtime deployments while maintaining robust security is critical. Blue-Green Deployment is a proven strategy that allows teams to switch traffic between different versions of an app...Discuss·1 like·47 readsTLS Certificate
Rahul wathblog.aws-devops.blog·Nov 13, 2024Database Migration with AWS RDS Blue/Green DeploymentsOverview AWS RDS Blue/Green Deployment provides a streamlined solution for migrating databases with minimal downtime. The Blue/Green deployment model enables the creation of a duplicate RDS environment (Green), where updates can be tested before swit...DiscussAWS
Egor Kaleiniktechandbeyond.hashnode.dev·Nov 2, 2024Addressing Data Synchronization Challenges in DevOpsIn a recent article published on DZone, we discussed the complexities of Blue/Green deployments, particularly when it comes to managing data synchronization between environments. As Jeff Schlesinger, an enterprise architect at Temenos, pointed out, h...Discuss·33 readsDevops
Saurabh Adhaudevopsvoyager.hashnode.dev·Oct 16, 2024Blue-Green Deployments in Kubernetes🎯 Learning Objective Understand how to perform blue-green deployments in Kubernetes to minimize downtime and risk during application updates. 📖 Scenario You need to update your application in a Kubernetes cluster while ensuring minimal downtime and...Discuss·10 likesK8sBlue/Green deployment
Shubham Tawareshubzz.hashnode.dev·Oct 5, 2024Zero Downtime Deployment: Blue-Green Strategy for Java MySQL Applications on EKSIn today's fast-paced development environment, ensuring application availability and minimizing downtime during deployment is crucial. One of the most effective deployment strategies to achieve this is blue-green deployment, which allows for seamless...Discuss·2 likes·280 readsDevops
Alla Yasheelacloud-z.hashnode.dev·Oct 4, 2024Blue-Green Deployment CI/CD Pipeline: A Simple GuideWhen working in DevOps, one of the main goals is to deploy code to production without causing any downtime or disruption to users. A common strategy used for this is called Blue-Green Deployment, which helps us roll out updates smoothly and ensures t...DiscussAzureDevOpsBlue/Green deployment
Subhanshu Mohan Guptablogs.subhanshumg.com·Sep 29, 2024Tweaking Kubernetes Deployments for Enhanced Backward CompatibilityWelcome to Part II of my Kubernetes series, where we explore how to Master Kubernetes Deployments for Seamless Backward Compatibility. Managing Kubernetes upgrades can be tricky, especially when you need to ensure existing services and configurations...Discuss·11 likes·29 readsMastering Kubernetes: Revolutionizing Cloud-Native OperationsCanary deployment
Rashika Sahudeployment-strategies.hashnode.dev·Sep 27, 2024Deployment Strategies: A Beginner’s GuideA deployment strategies defines how to deploy, upgrade, rollback or terminate different versions of applications. It helps in avoiding or minimizing the downtime and disruption of service while deploying or upgrading the applications. Types of Deplo...DiscussDevops
vijayaraghavan vashudevanvjraghavanv.hashnode.dev·Sep 13, 2024Mastering Zero-Downtime Deployments with Terraform⛈️This article will explain in detail to understand the key concepts and techniques behind zero-downtime deployments, such as blue/green deployment and canary releases⛈️ 🍂Synopsis: 📽️Use Terraform to deploy infrastructure updates with zero downtime...DiscussAWS
Ankita Lunawatcloudhub2295.hashnode.dev·Sep 12, 2024Blue-Green DeploymentIn Kubernetes, Blue-Green Deployment allows deploying new application versions without downtime by switching traffic between two environments (Blue and Green), utilizing native features like Services, Ingress, and rolling updates, but still requires ...DiscussBlue/Green deployment