From d43b2aadff9506f746f6b5697cc0400d52c46454 Mon Sep 17 00:00:00 2001 From: Fernando Royo Date: Wed, 11 Oct 2023 15:36:45 +0200 Subject: [PATCH] Merge the frr and ovn-bgp-agent roles into one There is no need to split the roles in install, configure and run. This task is about unifying them so that we just have a frr role and an ovn-bgp-agent role. To avoid breaking other repositories that still use the split roles, we will decompose the merging of the roles in two steps. This patch represents the first step, creating the future role that will replace the other three (install, configure, run). A future patch, once it is confirmed that the dependent repositories are already using the unified role, will eliminate the split roles. --- playbooks/frr.yml | 12 ++++++++++++ playbooks/ovn_bgp_agent.yml | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 playbooks/frr.yml create mode 100644 playbooks/ovn_bgp_agent.yml diff --git a/playbooks/frr.yml b/playbooks/frr.yml new file mode 100644 index 000000000..b756eeda4 --- /dev/null +++ b/playbooks/frr.yml @@ -0,0 +1,12 @@ +--- + +- name: Deploy EDPM FRR + hosts: all + strategy: linear + become: true + tasks: + - name: EDPM FRR + ansible.builtin.import_role: + name: osp.edpm.edpm_frr + tags: + - edpm_frr diff --git a/playbooks/ovn_bgp_agent.yml b/playbooks/ovn_bgp_agent.yml new file mode 100644 index 000000000..e70314f9a --- /dev/null +++ b/playbooks/ovn_bgp_agent.yml @@ -0,0 +1,12 @@ +--- + +- name: Deploy EDPM OVN BGP Agent + hosts: all + strategy: linear + become: true + tasks: + - name: EDPM OVN BGP Agent + ansible.builtin.import_role: + name: osp.edpm.edpm_ovn_bgp_agent + tags: + - edpm_ovn_bgp_agent