Remove deprecate deploy scripts

These were replaced long ago by deploy.py and likely don't even work
now.
This commit is contained in:
Ben Nemec 2019-01-10 14:16:57 -06:00
parent 33bf9e2727
commit 799154590f
2 changed files with 0 additions and 19 deletions

View File

@ -1,10 +0,0 @@
#!/bin/bash
echo 'WARNING: This script is deprecated. deploy.py should now be used instead.'
stack_name=${1:-quintupleo}
op=create
if heat stack-list | grep " $stack_name "; then
op=update
fi
heat stack-$op -f templates/quintupleo.yaml -e templates/resource-registry.yaml -e env.yaml $stack_name

View File

@ -1,9 +0,0 @@
#!/bin/bash
echo 'WARNING: This script is deprecated. deploy.py should now be used instead.'
op=create
if heat stack-list | grep " baremetal "; then
op=update
fi
heat stack-$op -f templates/virtual-baremetal.yaml -e templates/resource-registry.yaml baremetal -e env.yaml