You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flagger has all the logic in place to run blue/green deployments without the need for a service mesh or an ingress controller.
Blue/Green scenario:
on bootstrap, Flagger will create only the three ClusterIP services (app-primary, app-canary, app)
when a new version is detected, Flagger would scale up the new version and run the conformance tests (the test runner should target the app-canary ClusterIP service)
if the conformance tests are passing, Flagger would start the load tests and validate them with custom Prometheus queries (similar to how A/B testing works)
if the load test analysis is successful, Flagger would promote the new version to app-primary and app and scale down the canary version
Flagger has all the logic in place to run blue/green deployments without the need for a service mesh or an ingress controller.
Blue/Green scenario:
app-primary
,app-canary
,app
)app-canary
ClusterIP service)app-primary
andapp
and scale down the canary versionA Blue/Green deployment could be defined as:
The text was updated successfully, but these errors were encountered: