diff options
author | Oleksandr Naumets <oleksandrx.naumets@intel.com> | 2018-12-27 16:20:19 +0000 |
---|---|---|
committer | Oleksandr Naumets <oleksandrx.naumets@intel.com> | 2019-01-02 15:55:08 +0000 |
commit | 92d295fc145f02f8c28f8cd71c2822dfb3e7f872 (patch) | |
tree | 0439a46c5efa7c18cd01485cc3f6d4d334ae89ce /ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml | |
parent | 2b321003001e71fec83a5138afd9638d3f97fb7d (diff) |
Add support of DPDK version 18.11 for PROX, igb_uio
Adding DPDK version 18.11 support as per new requirement for PROX.
Since other sample VNFs are not supporting DPDK 18.11, they will
be using default DPDK version (17.05).
JIRA: YARDSTICK-1576
Change-Id: Ifab1886c51a22392f52f3e9e515a9d6b81edeefc
Signed-off-by: Oleksandr Naumets <oleksandrx.naumets@intel.com>
Diffstat (limited to 'ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml')
-rw-r--r-- | ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml b/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml index b27933bd1..d894c3dc4 100644 --- a/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml +++ b/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml @@ -16,6 +16,8 @@ connection: chroot vars: clone_dir: /tmp/yardstick-clone + vars_files: + - roles/download_dpdk/defaults/main.yml pre_tasks: - debug: @@ -35,18 +37,21 @@ - increase_open_file_limits - modify_cloud_config - install_image_dependencies - - role: download_dpdk -# dpdk_version: "17.02" - - install_dpdk - download_trex - install_trex - - download_pktgen - - install_pktgen - download_civetweb - install_civetweb + - role: download_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" + - role: install_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" - download_samplevnfs - role: install_samplevnf vnf_name: PROX + - download_dpdk + - install_dpdk + - download_pktgen + - install_pktgen - role: install_samplevnf vnf_name: UDP_Replay - role: install_samplevnf |