-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
Release 1.6 #1270
Open
zodern
wants to merge
41
commits into
master
Choose a base branch
from
release-1.6
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release 1.6 #1270
Conversation
This file contains 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
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.
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 init
The config created by
mup init
has been simplified, and the comments have been improved.mup init
instructions when it creates a.deploy
folderDocs
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 setup
withmup reconfig
andmup 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 reconfig
ormup deploy
.Versioning
Instead of a
previous
andlatest
version, 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 restart
mup deploy
mup stop
Reduce downtime
Other improvements