Skip to content

Commit

Permalink
Switch order of -e in all deploy scripts
Browse files Browse the repository at this point in the history
This allows us to override resource registry entries in the env
file, such as for using an existing floating ip in quintupleo.
  • Loading branch information
cybertron committed Nov 25, 2015
1 parent 3a02133 commit 1e98fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/deploy-controller
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion bin/deploy-quintupleo
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1e98fb2

Please sign in to comment.