diff options
author | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2019-03-04 16:12:10 +0200 |
---|---|---|
committer | Dan Xu <xudan16@huawei.com> | 2019-03-18 02:29:02 +0000 |
commit | ef2d5282306a277e591aa3c355277c6f158d8e76 (patch) | |
tree | 9f2bdf2bf77e1cfd08a058eaa696b0ed673b67fe /etc/conf/onap-vtp_config.yml | |
parent | 1540d41ec9291d61c1cd5b5d2f347d1d8f9c3dbe (diff) |
Replace subprocess commands with Docker SDK
JIRA: DOVETAIL-752
This patch replaces all python subprocess commands with the
Docker SDK relevant commands.
Change-Id: Iac7caffd80a863a8a022247d735b2a7f2792e49d
Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'etc/conf/onap-vtp_config.yml')
-rw-r--r-- | etc/conf/onap-vtp_config.yml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/etc/conf/onap-vtp_config.yml b/etc/conf/onap-vtp_config.yml index 72ebeab2..eb9b024d 100644 --- a/etc/conf/onap-vtp_config.yml +++ b/etc/conf/onap-vtp_config.yml @@ -10,13 +10,17 @@ onap-vtp: image_name: nexus3.onap.org:10001/onap/cli docker_tag: 2.0.5 - opts: '-td ' + opts: + detach: true + tty: true shell: '/bin/bash' - envs: '-e OPEN_CLI_MODE=daemon -e BUILD_TAG={{build_tag}}-{{testcase}} - -e OPEN_CLI_PRODUCT_IN_USE=onap-vtp' + envs: + - 'OPEN_CLI_MODE=daemon' + - 'BUILD_TAG={{build_tag}}-{{testcase}}' + - 'OPEN_CLI_PRODUCT_IN_USE=onap-vtp' volumes: - - '-v {{dovetail_home}}/pre_config/{{csar_file}}:/{{csar_file}}' - - '-v {{dovetail_home}}/results:{{result_dir}}' + - '{{dovetail_home}}/pre_config/{{csar_file}}:/{{csar_file}}' + - '{{dovetail_home}}/results:{{result_dir}}' pre_condition: - 'echo this is pre_condition' cmds: |