diff options
author | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2019-01-24 15:46:09 +0200 |
---|---|---|
committer | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2019-02-01 07:38:35 +0000 |
commit | 6b9e62527829867f52a8d18efb09d85b76b35436 (patch) | |
tree | 992ead76dc790a4812990ab4f77a5728293cfa3f /etc/conf/onap-vvp_config.yml | |
parent | b7ee5abe9b73cbc0928bf9ac080a6aecf05bcb7e (diff) |
Add ONAP VVP Heat Template validation tests
Change-Id: I9a3d56932ce41191901381831013768d1c57a749
Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'etc/conf/onap-vvp_config.yml')
-rw-r--r-- | etc/conf/onap-vvp_config.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/conf/onap-vvp_config.yml b/etc/conf/onap-vvp_config.yml new file mode 100644 index 00000000..a7d08ea8 --- /dev/null +++ b/etc/conf/onap-vvp_config.yml @@ -0,0 +1,20 @@ +--- + +{% set build_tag = build_tag or '' %} +{% set heat_templates_dir = heat_templates_dir or '' %} +{% set result_dir = '/reports' %} + +onap-vvp: + image_name: nexus3.onap.org:10001/onap/vvp/validation-scripts + docker_tag: latest + opts: '-td --entrypoint=""' + shell: '/bin/ash' + volumes: + - '-v {{heat_templates_dir}}:/template' + - '-v {{dovetail_home}}/results:{{result_dir}}' + pre_condition: + - 'echo this is pre_condition' + cmds: + - 'pytest --template-directory=/template --output-directory=/reports --report-format=json --continue-on-failure' + post_condition: + - 'echo this is post_condition' |