Hi! I’m glad it’s working out for you, hopefully it continues!
- By default, we do a canary deploy. We spin up a new VM and make sure it’s healthy before we remove the old ones. You can control this with the
--strategyflag on the deploy command,rollingto skip the canary andimmediateto abruptly replace everything. - Right,
soft_limitcontrols how many instances will run. You probably don’t wantbalanced, though, that’s only appropriate for some apps.standardwill add and remove in the regions you’ve specified. - Yes, the health checks determine whether traffic gets routed to the VM or not. They have to start passing before they’ll receive requests.
- The build is just a remote Docker daemon, so
.dockerignoreis the right way to prevent files from being sent to the builder.