From d5a7f20c66ce9673d684a5f0f476c831f4e70650 Mon Sep 17 00:00:00 2001 From: Lorenzo Deflorian Date: Thu, 3 Sep 2026 11:40:37 +0200 Subject: [PATCH] demo proposal --- .../demo/week3/ldef-fragale/README.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 contributions/demo/week3/ldef-fragale/README.md diff --git a/contributions/demo/week3/ldef-fragale/README.md b/contributions/demo/week3/ldef-fragale/README.md new file mode 100644 index 000000000..2d0ede56c --- /dev/null +++ b/contributions/demo/week3/ldef-fragale/README.md @@ -0,0 +1,26 @@ +# Assignment Proposal + +## Title + +Safe Continuous Deployment with Blue-Green Deployment + +## Names and KTH ID + + - Lorenzo Deflorian (ldef@kth.se) + - Riccardo Fragale (fragale@kth.se) + +## Deadline + +- Week 3 + +## Category + +- Demo + +## Description + +This demo aims to show a simple Continuous Deployment pipeline using blue-green deployment. A new version is deployed to an inactive environment, health checked automatically and only then it is switched to receive oncoming traffic. If the checks fails, the new version is rejected and the current version stays live. + +**Relevance** + +Continuous Deployment is an important DevOps practice for releasing changes quickly and safely. This demo shows how important it is the process of failure handling and traffic switching to reduce as much as possible the downtime of production systems.