-
Notifications
You must be signed in to change notification settings - Fork 93
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
Fix broken AWS, set minimum desired size to 1, enable 0 scaling #1304
Conversation
Note that when I tried to deploy this on AWS I got an error. It was working when I had these changes on top of the Sadly I didn't capture the error message. If I deploy off of main and see the error again I'll post it. |
@@ -95,7 +95,7 @@ def stage_02_infrastructure(stage_outputs, config): | |||
{ | |||
"name": key, | |||
"min_size": value["min_nodes"], | |||
"desired_size": value["min_nodes"], | |||
"desired_size": max(value["min_nodes"], 1), |
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.
To follow the pattern I think we can update the min_node value directly from the init template here, and defined the values as we did for GCP in there.. What are your thoughts on this @tylerpotts ?
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.
LGTM! this will fix the current issues regarding the AWS deployments, thanks @tylerpotts
The failing CI Thanks for this fix @tylerpotts 🎉 |
closes #1302 |
* Update minio, postgresql chart repo location (#1308) * Update minio, postgresql charts * Update bitnami index url * Update url Co-authored-by: Eskild Eriksen <[email protected]> * Add release notes, postmoderm * Fix broken AWS, set minimum desired size to 1, enable 0 scaling (#1304) * Update release notes * clean up * Update RELEASE.md Co-authored-by: Vinicius D. Cerutti <[email protected]> * Update RELEASE.md Co-authored-by: Vinicius D. Cerutti <[email protected]> * Update RELEASE.md Co-authored-by: Vinicius D. Cerutti <[email protected]> * Update RELEASE.md Co-authored-by: Vinicius D. Cerutti <[email protected]> Co-authored-by: Eskild Eriksen <[email protected]> Co-authored-by: iameskild <[email protected]> Co-authored-by: Tyler <[email protected]> Co-authored-by: Vinicius D. Cerutti <[email protected]>
Fixes | Closes | Resolves # 1302
Changes introduced in this PR:
Types of changes
What types of changes does your PR introduce?
Put an
x
in the boxes that applyTesting
Requires testing
@costrouc @viniciusdc I think this justifies a minor release prior to the Nebari rename. Scaling to 0 is a major improvement, and this currently fixes a bug which prevents successful AWS deployment.