feat(ci): implement blue-green deployment strategy with canary and ro…#104
Open
Cedarich wants to merge 3 commits intoMissBlue00:mainfrom
Open
feat(ci): implement blue-green deployment strategy with canary and ro…#104Cedarich wants to merge 3 commits intoMissBlue00:mainfrom
Cedarich wants to merge 3 commits intoMissBlue00:mainfrom
Conversation
|
@Big-cedar is attempting to deploy a commit to the missblue00's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@Cedarich Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Owner
|
@Cedarich CI/CD checks are failing, please resolve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #98
Description This PR introduces a robust blue-green deployment pipeline to the stellar-pay infrastructure, ensuring zero-downtime releases and improved deployment reliability.
Key Changes
Deployment Pipeline : Added .github/workflows/deploy.yml which orchestrates the switch between blue and green environments.
Health Verification : Created smoke-test.sh to perform automated health checks on the inactive environment before any traffic is shifted.
Canary Support : Integrated support for manual canary releases via workflow_dispatch , allowing for gradual traffic migration (e.g., 10%, 25%).
Automated Rollback : Implemented a fail-safe mechanism that automatically restores traffic to the original stable environment if smoke tests or deployments fail.
Environment Awareness : The workflow dynamically identifies the current live environment and targets the idle one for the new release.
Verification Plan
Verified workflow YAML syntax and job dependencies.
Tested smoke test script logic for both success and failure exit codes.
Validated that the rollback job triggers correctly on upstream failures.
Confirmed canary percentage input is correctly passed to the traffic shift step.
close issue #98