Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plugins/action/common/change_flag_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def initialize_flags(self):
'changes_detected_vpc_peering': False,
'changes_detected_vpc_domain_id_resource': False,
'changes_detected_vrfs': False,
'changes_detected_underlay_ip_address': False,
'changes_detected_any': False
}
if self.fabric_type == "ISN":
Expand Down
9 changes: 9 additions & 0 deletions roles/dtc/common/tasks/sub_main_ebgp_vxlan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@
- name: Build eBGP VXLAN Fabric Policy List From Template
ansible.builtin.import_tasks: common/ndfc_policy.yml

# ------------------------------------------------------------------------
# Build eBGP VXLAN Fabric Underlay Resources List From Template
# ------------------------------------------------------------------------

- name: Build eBGP VXLAN Fabric Underlay Resources List From Template
ansible.builtin.import_tasks: common/ndfc_underlay_ip_address.yml

# # --------------------------------------------------------------------
# # Build eBGP VXLAN Fabric Links List From Template
# # --------------------------------------------------------------------
Expand Down Expand Up @@ -249,13 +256,15 @@
vpc_domain_id_resource: "{{ vpc_domain_id_resource }}"
vrf_config: "{{ vrf_config }}"
vrf_attach_config: "{{ vrf_attach_config }}"
underlay_ip_address: "{{ underlay_ip_address }}"
# Diff Result Data
interface_diff_result: "{{ interface_diff_result }}"
network_diff_result: "{{ network_diff_result }}"
tor_pairing_diff_result: "{{ tor_pairing_diff_result }}"
vpc_peering_diff_result: "{{ vpc_peering_diff_result }}"
vpc_domain_id_resource_diff_result: "{{ vpc_domain_id_resource_diff_result }}"
vrf_diff_result: "{{ vrf_diff_result }}"
underlay_ip_address_diff_result: "{{ underlay_ip_address_diff_result }}"

# --------------------------------------------------------------------
# We need to check if the current fabric is part of a Multisite fabric
Expand Down
Loading