aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/vpp_device
diff options
context:
space:
mode:
authorJuraj Linkeš <juraj.linkes@pantheon.tech>2021-07-23 13:20:52 +0200
committerJuraj Linkeš <juraj.linkes@pantheon.tech>2021-07-23 15:31:53 +0200
commit5a1f1b7fa58c082dd359a7b4df700f5df3839bfd (patch)
treedc76c43f1b431821e53b6b0efc7c5d15dfb250ff /fdio.infra.ansible/roles/vpp_device
parent1da19da813655f643bc3c6e4d03bed987f076f07 (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/vpp_device')
-rw-r--r--fdio.infra.ansible/roles/vpp_device/files/csit-initialize-vfs.sh1
-rw-r--r--fdio.infra.ansible/roles/vpp_device/tasks/main.yaml29
2 files changed, 1 insertions, 29 deletions
diff --git a/fdio.infra.ansible/roles/vpp_device/files/csit-initialize-vfs.sh b/fdio.infra.ansible/roles/vpp_device/files/csit-initialize-vfs.sh
index 27b1acb057..4d2c22e7f5 100644
--- a/fdio.infra.ansible/roles/vpp_device/files/csit-initialize-vfs.sh
+++ b/fdio.infra.ansible/roles/vpp_device/files/csit-initialize-vfs.sh
@@ -63,6 +63,7 @@ for pci_addr in ${PCI_WHITELIST[@]}; do
ip link set ${pf} vf $(( vf - 1 )) ${mac_str} ${vlan_str}
ip link set ${pf} vf $(( vf - 1 )) trust on
ip link set ${pf} vf $(( vf - 1 )) spoof off
+ sleep .5
done
pci_idx=$(( pci_idx + 1 ))
;;
diff --git a/fdio.infra.ansible/roles/vpp_device/tasks/main.yaml b/fdio.infra.ansible/roles/vpp_device/tasks/main.yaml
index 9509771a92..d12fe1edf5 100644
--- a/fdio.infra.ansible/roles/vpp_device/tasks/main.yaml
+++ b/fdio.infra.ansible/roles/vpp_device/tasks/main.yaml
@@ -129,32 +129,3 @@
- "Update GRUB"
tags:
- set-grub
-
-- name: Download iAVF driver
- get_url:
- url: "{{ iavf_url }}"
- dest: "{{ iavf_target_dir }}/iavf-{{ iavf_version }}.tar.gz"
- validate_certs: False
- mode: 0644
- tags:
- - install-iavf
-
-- name: Extract iAVF driver
- unarchive:
- remote_src: true
- src: "{{ iavf_target_dir }}/iavf-{{ iavf_version }}.tar.gz"
- dest: "{{ iavf_target_dir }}/"
- creates: "{{ iavf_target_dir }}/iavf-{{ iavf_version }}/src/"
- tags:
- - install-iavf
-
-- name: Compile iAVF driver
- command: "make install"
- args:
- chdir: "{{ iavf_target_dir }}/iavf-{{ iavf_version }}/src/"
- notify:
- - "Reboot server"
- tags:
- - install-iavf
-
-- meta: flush_handlers