docs/strategy.md in vagrant-orchestrate-0.6.0 vs docs/strategy.md in vagrant-orchestrate-0.6.1.patch
- old
+ new
@@ -1,9 +1,8 @@
# Deployment Strategies
-Vagrant Orchestrate supports several deployment strategies including parallel and
-half and half. Here we'll cover how to use the various strategies as well as describing
+Vagrant Orchestrate supports several deployment strategies that allow you to orchestrate the behavior pushes to remote servers. Here we'll cover how to use the various strategies as well as describing
situations when each might be useful.
## Strategies
### Serial (default)
@@ -34,10 +33,12 @@
$ vagrant orchestrate push --strategy canary
config.orchestrate.strategy = :canary
+The prompt can be surpressed with the `--force` (`-f`) flag.
+
### Half and Half
Deploys to half of the cluster in parallel, then the other half, with
a pause in between. This won't manage any of your load balancing or networking
configuration for you, but if your application has a healthcheck that your load
balancer respects, it should be easy to turn it off at the start of your provisioning
@@ -74,12 +75,11 @@
config.orchestrate.strategy = :parallel
Command line parameters take precedence over configuration values set in the Vagrantfile.
-
## Suppressing Prompts
-In order to automate the deployment process, it can be very useful to suppress
+In order to automate the deployment process, you'll need to suppress
prompts. You can achieve that in two ways:
From the command line, add the `--force` or `-f` parameters
$ vagrant orchestrate push --strategy canary -f