fractal-code / meteor-azure

Automate Meteor deployments on Azure App Service
MIT License
67 stars 20 forks source link

Can it scale as part of the deployment process? #29

Closed ManuelDeLeon closed 7 years ago

ManuelDeLeon commented 7 years ago

Any chance v2 can scale up and out during deployment, and back down after? For example, to a configured value of up to Basic and out to 2 instances, then back to Shared (1 instance).

ramijarrar commented 7 years ago

v2 is now compatible with free/shared instances, so there's no longer any benefit to switching plans during deployment (just make sure you are aware of service limits on bandwidth, concurrent connections, etc.).

Outside that context though: we've made the decision not to integrate administrative actions in the tool itself, given that functionality is already provided by the Azure CLI (which is well documented and maintained).

Automating pre/post deployment tasks is straightforward with a simple bash script (we've taken care to ensure it exits on failure and reports the correct status code)

ManuelDeLeon commented 7 years ago

Cool, thanks.