From a81a53092d870a584b854e9ba0ce7e61ebf59c2a Mon Sep 17 00:00:00 2001 From: German Espinoza Date: Mon, 30 Oct 2023 12:01:11 -0500 Subject: [PATCH] Fix images pull in ovs-dpdk role This patch fixes ovs-dpdk images pull by adding the variable kolla_role_name to the ovs-dpdk vars, so services-image-pull can work correctly. Closes-Bug: #2041864 Change-Id: I2e799290a57ebfacbc0ff9a0b1ca3dc956c513df Signed-off-by: German Espinoza --- ansible/roles/ovs-dpdk/vars/main.yml | 2 ++ releasenotes/notes/bug-2041864-f19f9a6afd0955e8.yaml | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 releasenotes/notes/bug-2041864-f19f9a6afd0955e8.yaml diff --git a/ansible/roles/ovs-dpdk/vars/main.yml b/ansible/roles/ovs-dpdk/vars/main.yml index fe77ecdd14..3fffe60c46 100644 --- a/ansible/roles/ovs-dpdk/vars/main.yml +++ b/ansible/roles/ovs-dpdk/vars/main.yml @@ -1,2 +1,4 @@ --- project_name: "ovs" + +kolla_role_name: "ovsdpdk" diff --git a/releasenotes/notes/bug-2041864-f19f9a6afd0955e8.yaml b/releasenotes/notes/bug-2041864-f19f9a6afd0955e8.yaml new file mode 100644 index 0000000000..f5e8ee8e00 --- /dev/null +++ b/releasenotes/notes/bug-2041864-f19f9a6afd0955e8.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes ``ovs-dpdk`` images pull. + `LP#[2041864] `__