Release 1.6 - #1270
Open
zodern wants to merge 41 commits into
Open
Conversation
This image should be compatible with the old default, kadirahq/meteord (which was compatible up to Meteor 1.3), while simultaneously supporting all new Meteor versions.
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.
More details are in my presentation at Meteor Impact: https://impact.meteor.com/meetings/virtual/3AAZtruj6bTnvZMLd
Partial list of changes and what is left to do:
New default docker image
The default docker image has been changed to
zodern/meteor, which supports Meteor 1.2 up to the latest version, and automatically supports new Meteor versions. It has been used in production by many apps the past couple years, and should be backwards compatible with the existing default image for any apps still using Meteor 1.2 or Meteor 1.3.Improved
mup initThe config created by
mup inithas been simplified, and the comments have been improved.mup initinstructions when it creates a.deployfolderDocs
The docs will be re-organized, moved into separate pages, and many parts will be rewritten.
Simplify how to update servers
Currently for some changes to your mup config you have to run
mup setup, for othersmup reconfig, and for some others you have to run both.Mup 1.6 will combine
mup setupwithmup reconfigandmup deploy.Server Groups
Server groups allow plugins to give Meteor Up a list of servers, instead of hard coding the list in the mup config. It also allows plugins to create/modify/delete servers during
mup reconfig/mup setup.This allows you to describe to Meteor Up what servers you want, and it will take care of creating them, setting them up, and running the app on them. To scale, you only have to modify the server count or size in the config, and run
mup reconfigormup deploy.Versioning
Instead of a
previousandlatestversion, each version will be numbered (first version is 1, second is 2, and etc.). Each server tracks the history of versions it has ran, and which versions failed.Reverse Proxy Floating IP Address
The reverse proxy can be configured to be highly available by using a floating IP address. We have implemented a proof of concept, but need to do more work to make it secure and make its setup consistent with other parts of Meteor Up.
Graceful shutdown
mup restartmup deploymup stopReduce downtime
Other improvements