Skip to content

Commit

Permalink
Merge the frr and ovn-bgp-agent roles into one
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Fernando Royo committed Oct 11, 2023
1 parent f2667fd commit d43b2aa
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions playbooks/frr.yml
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions playbooks/ovn_bgp_agent.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d43b2aa

Please sign in to comment.