From: Vladimir Khlyunev Date: Fri, 14 May 2021 19:20:48 +0000 (+0400) Subject: Use % char for desc setter X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F31%2F41731%2F1;p=tools%2Fsustaining.git Use % char for desc setter Change-Id: I1c0e589e1a55fdb23d2a94942066d87befd0c7b2 --- diff --git a/maintenance-ci/common/jobs/deploy-stack.yaml b/maintenance-ci/common/jobs/deploy-stack.yaml index f2ca75c..3d9aa5a 100644 --- a/maintenance-ci/common/jobs/deploy-stack.yaml +++ b/maintenance-ci/common/jobs/deploy-stack.yaml @@ -69,4 +69,4 @@ artifacts: 'stack_data.sh' only-if-success: true - description-setter: - regexp: "description-setter:(.*)\n" + regexp: "description-setter:%(.*)%" diff --git a/maintenance-ci/common/scripts/deploy_heat_stack.sh b/maintenance-ci/common/scripts/deploy_heat_stack.sh index 34dd62a..d646a89 100755 --- a/maintenance-ci/common/scripts/deploy_heat_stack.sh +++ b/maintenance-ci/common/scripts/deploy_heat_stack.sh @@ -80,7 +80,7 @@ with open(os.environ.get('TEMPLATE_FILE'), 'w') as f: openstack stack create --wait -t ${TEMPLATE_FILE} --parameter "${parameter_string}" ${STACK_NAME} openstack stack output show "${STACK_NAME}" --all FLOATING_IP=$(heat output-show ${STACK_NAME} floating_ip) - echo "description-setter:${STACK_NAME}: ${FLOATING_IP}" + echo "description-setter%${STACK_NAME}: ${FLOATING_IP}%" cat >stack_data.sh <