diff options
author | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-07-23 13:20:52 +0200 |
---|---|---|
committer | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-07-23 15:31:53 +0200 |
commit | 5a1f1b7fa58c082dd359a7b4df700f5df3839bfd (patch) | |
tree | dc76c43f1b431821e53b6b0efc7c5d15dfb250ff /fdio.infra.ansible/roles/intel/tasks/main.yaml | |
parent | 1da19da813655f643bc3c6e4d03bed987f076f07 (diff) |
Ansible: iavf driver install
* move iavf driver install from vpp_device to intel role
* differentiate the names of tasks of various drivers to get better
ansible logs
* add .5 sleep when creating VFs with iavf to avoid improper init
* fix install commands
* add XL710QDA2 NIC to supported i40e NICs
Change-Id: Id50e1552a322b9473e58222bfed3405d2d73c824
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Diffstat (limited to 'fdio.infra.ansible/roles/intel/tasks/main.yaml')
-rw-r--r-- | fdio.infra.ansible/roles/intel/tasks/main.yaml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fdio.infra.ansible/roles/intel/tasks/main.yaml b/fdio.infra.ansible/roles/intel/tasks/main.yaml index 0d6134d452..4f6289113d 100644 --- a/fdio.infra.ansible/roles/intel/tasks/main.yaml +++ b/fdio.infra.ansible/roles/intel/tasks/main.yaml @@ -26,7 +26,7 @@ - intel-inst-drivers - name: Inst - Check Presence of Intel Ethernet 700 Series - shell: "lspci -d 8086:1585; lspci -d 8086:1572" + shell: "lspci -d 8086:1583; lspci -d 8086:1585; lspci -d 8086:1572" register: intel_700_pcis failed_when: no changed_when: no @@ -46,3 +46,10 @@ # - intel_700_pcis.stdout_lines | length > 0 # tags: # - intel-inst-drivers + +#- name: Inst - VF Driver Intel +# import_tasks: iavf.yaml +# when: +# - intel_700_pcis.stdout_lines | length > 0 or intel_e810_pcis.stdout_lines | length > 0 +# tags: +# - intel-inst-drivers |