Change default deploy artifacts container name
Since we've started storing deployment plans in swift, there is a collision with this name, because the "overcloud" plan will by default get deleted when deleting a stack, which is a regression if you're a user of one of these scripts, because previously you only had to re-run them e.g if your puppet modules changed, not every deploy. Change-Id: I30e280f25173ccf388c24c20704d6fd51d5caa2a Closes-Bug: #1620384
This commit is contained in:
parent
6c39473ce5
commit
45a463adb3
@ -35,7 +35,7 @@ function show_options {
|
||||
echo " -h, --help -- print this help."
|
||||
echo " -d <directory> -- Puppet modules directory. Required."
|
||||
echo " -c <container> -- Swift container to use."
|
||||
echo " Default: overcloud"
|
||||
echo " Default: overcloud-artifacts"
|
||||
echo " --environment <env> -- Generate this heat <env>"
|
||||
echo " Default: $HOME/.tripleo/environments/puppet-modules-url.yaml"
|
||||
echo " --seconds <seconds> -- Number of seconds for temp URL."
|
||||
@ -59,7 +59,7 @@ eval set -- "$TEMP"
|
||||
|
||||
ENVIRONMENT_FILE="$HOME/.tripleo/environments/puppet-modules-url.yaml"
|
||||
MODULES_DIRECTORY=
|
||||
CONTAINER_NAME=overcloud
|
||||
CONTAINER_NAME=overcloud-artifacts
|
||||
SECONDS=31536000
|
||||
|
||||
while true ; do
|
||||
|
@ -30,7 +30,7 @@ function show_options {
|
||||
echo " -h, --help -- print this help."
|
||||
echo " -f <file> -- File(s) to upload."
|
||||
echo " -c <container> -- Swift container to use."
|
||||
echo " Default: overcloud"
|
||||
echo " Default: overcloud-artifacts"
|
||||
echo " --environment <env> -- Generate this heat <env>"
|
||||
echo " Default: $HOME/.tripleo/environments/deployment-artifacts.yaml"
|
||||
echo " --seconds <seconds> -- Number of seconds for temp URLs."
|
||||
@ -54,7 +54,7 @@ eval set -- "$TEMP"
|
||||
|
||||
ENVIRONMENT_FILE="$HOME/.tripleo/environments/deployment-artifacts.yaml"
|
||||
FILES=
|
||||
CONTAINER_NAME=overcloud
|
||||
CONTAINER_NAME=overcloud-artifacts
|
||||
SECONDS=31536000
|
||||
|
||||
while true ; do
|
||||
|
Loading…
Reference in New Issue
Block a user