Skip to content

Commit

Permalink
Merge pull request #665 from ClausHolbechArista/l3edge-dci-data-model
Browse files Browse the repository at this point in the history
Add l3_edge data model
  • Loading branch information
carlbuchmann authored Feb 17, 2021
2 parents 053f06e + d0e7780 commit 8e65d34
Show file tree
Hide file tree
Showing 99 changed files with 27,349 additions and 50 deletions.
1 change: 1 addition & 0 deletions .github/workflows/molecule-l3ls-evpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- 'evpn_underlay_ebgp_overlay_ebgp'
- 'evpn_underlay_ospf_overlay_ebgp'
- 'evpn_underlay_isis_overlay_ibgp'
- 'eos_l3ls_evpn-twodc-5stage-clos'
# - 'upgrade_v1.0_to_v1.1'
steps:
- name: 'set environment variables'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
- name: Converge
hosts: all
gather_facts: false
connection: local
tasks:

- name: generate intented variables
delegate_to: 127.0.0.1
import_role:
name: arista.avd.eos_l3ls_evpn
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
- name: Configure local folders
hosts: all
gather_facts: false
connection: local
vars:
root_dir: '{{playbook_dir}}'
tasks:
- name: create local output folders
delegate_to: 127.0.0.1
import_role:
name: arista.avd.build_output_folders
run_once: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
- name: Remove output folders
hosts: all
gather_facts: false
connection: local
tasks:
- name: delete local folders
delegate_to: 127.0.0.1
run_once: true
file:
path: "{{root_dir}}/{{ item }}"
state: absent
with_items:
- documentation
- intended
- config_backup
- reports
Loading

0 comments on commit 8e65d34

Please sign in to comment.