Questions tagged [blue-green-deployment]

Blue-green deployment minimizes downtime by switching from one identical environment to another. The environments can reside on the same or different hardware.

Blue-green deployment minimizes downtime by switching from one identical environment to another. The environments can reside on the same or different hardware.

More information is available in a widely read post by Martin Fowler. Further deployment tactics that are sometimes called blue-green deployment are described by Itay Shakury. They are used to handle different workflows and risks tolerance as well as to facilitate A/B testing.

153 questions
-1
votes
2 answers

Kubernetes - Reconfiguring a Service to point to a new Deployment (blue/green)

I'm following along with a video explaining blue/green Deployments in Kubernetes. They have a simple example with a Deployment named blue-nginx and another named green-nginx. The blue Deployment is exposed via a Service named bgnginx. To transfer…
-1
votes
1 answer

Divert traffic to two versions based on error response on the traffic with istio

I am trying to learn istio. I was able to setup a simple traffic shifting in which 40 percent traffic goes to a particular version and the remaining 60 percent to other version. My doubt is can I make this weight(40-60) dynamic, based on…
-1
votes
1 answer

How "cf push" works?

Applying cf push on existing Running application, stops and starts the application instance with new artifact. This application has route name assigned. 1) In order to assess the downtime for a banking app, amidst cf push, what are the steps…
overexchange
  • 15,768
  • 30
  • 152
  • 347
1 2 3
10
11