-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Increase Production appengine instances to 2 #2425
Conversation
📝 WalkthroughWalkthroughThe pull request modifies the GitHub Actions workflow for deploying frontends to production, specifically focusing on the Changes
Sequence DiagramsequenceDiagram
participant Workflow
participant App as Website2
participant LoadBalancer
Workflow->>App: Deploy with 2 min instances
Workflow->>App: Apply Readiness Checks
App-->>Workflow: Perform startup checks
Workflow->>LoadBalancer: Validate App Readiness
LoadBalancer-->>Workflow: Confirm Deployment
Possibly related PRs
Suggested Reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/workflows/deploy-frontends-to-production.yml (1)
Line range hint
290-294
: Well-configured readiness checks!The readiness check configuration is well-balanced:
- 5-second check intervals with 4-second timeouts provide responsive health monitoring
- 2 failures/successes thresholds prevent flapping
- 30-minute app start timeout accommodates longer initialization needs
Consider monitoring the actual startup times in production to potentially reduce the
app_start_timeout_sec
if the application consistently starts much faster than 30 minutes.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/deploy-frontends-to-production.yml
(1 hunks)
🔇 Additional comments (1)
.github/workflows/deploy-frontends-to-production.yml (1)
282-282
: LGTM! Increasing minimum instances improves availability.The change from 1 to 2 minimum instances aligns with the PR objective and enhances system reliability by providing redundancy in production.
Summary of Changes (What does this PR do?)
Summary by CodeRabbit