feat(infra): DPDK 24.11.1 41/42241/2
authorPeter Mikus <[email protected]>
Thu, 23 Jan 2025 09:10:49 +0000 (10:10 +0100)
committerPeter Mikus <[email protected]>
Thu, 23 Jan 2025 09:14:06 +0000 (09:14 +0000)
Signed-off-by: Peter Mikus <[email protected]>
Change-Id: Ic935ddf79d06b9d8f1df329bf0e4485ee2d646cf

DPDK_VPP_VER
fdio.infra.ansible/inventories/lf_inventory/host_vars/10.30.51.40.yaml
fdio.infra.ansible/inventories/lf_inventory/host_vars/10.30.51.42.yaml
fdio.infra.ansible/inventories/lf_inventory/host_vars/10.30.51.52.yaml
fdio.infra.ansible/inventories/lf_inventory/host_vars/10.30.51.54.yaml
fdio.infra.ansible/roles/dpdk/defaults/main.yaml
fdio.infra.ansible/roles/dpdk/tasks/deploy_block.yaml
resources/libraries/python/Constants.py

index d17b147..c186740 100644 (file)
@@ -1 +1 @@
-dpdk-24.07
+dpdk-24.11.1
index d130d39..2ac00bc 100644 (file)
@@ -39,8 +39,8 @@ docker_volumes:
     target: "/etc/sysctl.d/80-vpp.conf"
   - source: "/opt/boot/"
     target: "/opt/boot/"
-  - source: "/opt/dpdk-24.07/"
-    target: "/opt/dpdk-24.07/"
+  - source: "/opt/dpdk-24.11.1/"
+    target: "/opt/dpdk-24.11.1/"
   - source: "/usr/bin/iperf3"
     target: "/usr/bin/iperf3"
   - source: "/usr/lib/x86_64-linux-gnu/libiperf.so.0"
index 068fc64..107ddd8 100644 (file)
@@ -39,8 +39,8 @@ docker_volumes:
     target: "/etc/sysctl.d/80-vpp.conf"
   - source: "/opt/boot/"
     target: "/opt/boot/"
-  - source: "/opt/dpdk-24.07/"
-    target: "/opt/dpdk-24.07/"
+  - source: "/opt/dpdk-24.11.1/"
+    target: "/opt/dpdk-24.11.1/"
   - source: "/usr/bin/iperf3"
     target: "/usr/bin/iperf3"
   - source: "/usr/lib/x86_64-linux-gnu/libiperf.so.0"
index 3983115..066e66e 100644 (file)
@@ -41,8 +41,8 @@ docker_volumes:
     target: "/etc/sysctl.d/80-vpp.conf"
   - source: "/opt/boot/"
     target: "/opt/boot/"
-  - source: "/opt/dpdk-24.07/"
-    target: "/opt/dpdk-24.07/"
+  - source: "/opt/dpdk-24.11.1/"
+    target: "/opt/dpdk-24.11.1/"
   - source: "/usr/bin/iperf3"
     target: "/usr/bin/iperf3"
   - source: "/usr/lib/x86_64-linux-gnu/libiperf.so.0"
index 07c1d26..17aa30b 100644 (file)
@@ -39,8 +39,8 @@ docker_volumes:
     target: "/etc/sysctl.d/80-vpp.conf"
   - source: "/opt/boot/"
     target: "/opt/boot/"
-  - source: "/opt/dpdk-24.07/"
-    target: "/opt/dpdk-24.07/"
+  - source: "/opt/dpdk-24.11.1/"
+    target: "/opt/dpdk-24.11.1/"
   - source: "/usr/bin/iperf3"
     target: "/usr/bin/iperf3"
   - source: "/usr/lib/x86_64-linux-gnu/libiperf.so.0"
index 22e960e..a5355ea 100644 (file)
@@ -19,5 +19,5 @@ packages_by_arch:
 
 dpdk_target_dir: "/opt"
 dpdk_version:
-  - "24.07"
+  - "24.11.1"
 dpdk_url: "https://fast.dpdk.org/rel"
index d5afe2d..0d67c97 100644 (file)
   when: dpdk_downloaded
   register: dpdk_extracted
 
+- name: "Rename folder"
+  ansible.builtin.command: "mv {{ dpdk_target_dir }}/dpdk-stable-{{ item }} {{ dpdk_target_dir }}/dpdk-{{ item }}"
+  ignore_errors: true
+  when: dpdk_extracted
+
 - name: "Compile Release I"
   ansible.builtin.command: "meson -Dexamples=l3fwd build"
   args:
index 8fb354f..4646ae3 100644 (file)
@@ -180,7 +180,7 @@ class Constants:
     QEMU_VM_IMAGE = "/var/lib/vm/image.iso"
 
     # QEMU VM DPDK path
-    QEMU_VM_DPDK = "/opt/dpdk-24.07"
+    QEMU_VM_DPDK = "/opt/dpdk-24.11.1"
 
     # Docker container SUT image
     DOCKER_SUT_IMAGE_UBUNTU = "csit_sut-ubuntu2404:local"