Switch order of -e in all deploy scripts

This allows us to override resource registry entries in the env
file, such as for using an existing floating ip in quintupleo.
This commit is contained in:
Ben Nemec 2015-11-25 13:53:53 -06:00
parent 3a02133fd7
commit 1e98fb2d85
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
op=${1:-create}
heat stack-$op -f templates/virtual-baremetal.yaml -e controller.yaml -e templates/resource-registry.yaml controller
heat stack-$op -f templates/virtual-baremetal.yaml -e templates/resource-registry.yaml -e controller.yaml controller

View File

@ -1,4 +1,4 @@
#!/bin/bash
op=${1:-create}
heat stack-$op -f templates/quintupleo.yaml -e env.yaml -e templates/resource-registry.yaml quintupleo
heat stack-$op -f templates/quintupleo.yaml -e templates/resource-registry.yaml -e env.yaml quintupleo