Skip to content

Commit

Permalink
Add short release-note for 2.0.0rc1 (#725)
Browse files Browse the repository at this point in the history
* Add short release-note for 2.0.0rc1

* doc(AVD): Update content with RN 2.0.0 and eos_snaphot

* ci(MOLECULE): Update Artifacts

* + ToC and rc warning

* refresh ci artifacts

* remove ci artifacts

* + comment for new output folders for eos_l3ls_evpn

Co-authored-by: Carl Buchmann <[email protected]>
  • Loading branch information
titom73 and carlbuchmann authored Feb 22, 2021
1 parent 8e65d34 commit debcba7
Show file tree
Hide file tree
Showing 42 changed files with 1,120 additions and 771 deletions.
69 changes: 69 additions & 0 deletions ansible_collections/arista/avd/docs/release-notes/2.0.x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Release Notes For Ansible AVD 2.0.x

**Table of Contents:**

- [Release Notes For Ansible AVD 2.0.x](#release-notes-for-ansible-avd-20x)
- [Release 2.0.0-RC1](#release-200-rc1)

Documentation for AVD version `2.0.x` [available here](https://www.avd.sh/en/releases-v2.0.x/)

## Release 2.0.0-RC1

!!! warning
This is a pre-release candidate, not ready for production use!
Use with caution!

Provides enhancements and bug fixes to the following roles:

**New features:*

- __eos_l3ls_evpn__

- Add support for Custom Structured Configuration
- Add support for multiple custom_structured_configuration prefixes
- PTP support for l3ls_evpn
- L2leaf inband management
- BGP RT Membership support

- __eos_cli_config_gen__

- Errdisable feature
- Add interface_defaults to eos_cli_config_gen
- QOS support
- Implement ENABLE password in cli_config_gen
- Implement Aggregate routes in BGP VRF
- BGP RT Membership support
- PTP capability

**Data model changes**

- Data-model update in eos_cli_config_gen for SNMP local interfaces

```yaml
# Old data model
snmp_server:
local_interfaces:
- name: < interface_name_1 >
vrf: < vrf_name >

# New Data model
snmp_server:
local_interfaces:
< interface_name_1 >:
vrf: < vrf_name >
< interface_name_2 >:
< interface_name_3 >:
vrf: < vrf_name >
```
**Output Folders Changes**
Output for `eos_l3ls_evpn` fabric documentation is now saved under `documentation/fabric` instead of `documentation/{{ fabric_name }}`.

**New role**

- [eos_snapshot](https://www.avd.sh/en/latest/roles/eos_snapshot/): Collect commands on Arista EOS devices and generate a report. It supports reports with the following format: text, markdown, json and yaml
- [dhcp_provisioner](https://www.avd.sh/en/latest/roles/dhcp_provisioner/): Build and deploy a DHCP configuration file to support Zero Touch Provisioning with Arista EOS devices.

!!! info
For detailed information please see the [release tag](https://github.com/aristanetworks/ansible-avd/releases/tag/v2.0.0rc1)
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ CVP_DEVICES:
configlets:
- AVD_DC1-SPINE4
imageBundle: []
DC1-L2LEAF1A:
name: DC1-L2LEAF1A
parentContainerName: DC1_L2LEAF1
configlets:
- AVD_DC1-L2LEAF1A
imageBundle: []
DC1-L2LEAF2A:
name: DC1-L2LEAF2A
parentContainerName: DC1_L2LEAF2
configlets:
- AVD_DC1-L2LEAF2A
imageBundle: []
DC1-L2LEAF2B:
name: DC1-L2LEAF2B
parentContainerName: DC1_L2LEAF2
configlets:
- AVD_DC1-L2LEAF2B
imageBundle: []
DC1-LEAF2A:
name: DC1-LEAF2A
parentContainerName: DC1_LEAF2
Expand All @@ -54,24 +72,6 @@ CVP_DEVICES:
configlets:
- AVD_DC1-BL1B
imageBundle: []
DC1-L2LEAF1A:
name: DC1-L2LEAF1A
parentContainerName: DC1_L2LEAF1
configlets:
- AVD_DC1-L2LEAF1A
imageBundle: []
DC1-L2LEAF2A:
name: DC1-L2LEAF2A
parentContainerName: DC1_L2LEAF2
configlets:
- AVD_DC1-L2LEAF2A
imageBundle: []
DC1-L2LEAF2B:
name: DC1-L2LEAF2B
parentContainerName: DC1_L2LEAF2
configlets:
- AVD_DC1-L2LEAF2B
imageBundle: []
CVP_CONTAINERS:
DC1_FABRIC:
parent_container: Tenant
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,6 @@ Router ISIS not defined
| Settings | Value |
| -------- | ----- |
| Address Family | evpn |
| Remote_as | 65001 |
| Source | Loopback0 |
| Bfd | true |
| Ebgp multihop | 3 |
Expand Down Expand Up @@ -790,15 +789,14 @@ Router ISIS not defined
| 172.31.255.42 | Inherited from peer group IPv4-UNDERLAY-PEERS | default |
| 172.31.255.44 | Inherited from peer group IPv4-UNDERLAY-PEERS | default |
| 172.31.255.46 | Inherited from peer group IPv4-UNDERLAY-PEERS | default |
| 192.168.255.1 | Inherited from peer group EVPN-OVERLAY-PEERS | default |
| 192.168.255.2 | Inherited from peer group EVPN-OVERLAY-PEERS | default |
| 192.168.255.3 | Inherited from peer group EVPN-OVERLAY-PEERS | default |
| 192.168.255.4 | Inherited from peer group EVPN-OVERLAY-PEERS | default |
| 192.168.255.1 | 65001 | default |
| 192.168.255.2 | 65001 | default |
| 192.168.255.3 | 65001 | default |
| 192.168.255.4 | 65001 | default |
| 10.255.251.11 | Inherited from peer group MLAG-IPv4-UNDERLAY-PEER | Tenant_A_WAN_Zone |
| 10.255.251.11 | Inherited from peer group MLAG-IPv4-UNDERLAY-PEER | Tenant_B_WAN_Zone |
| 10.255.251.11 | Inherited from peer group MLAG-IPv4-UNDERLAY-PEER | Tenant_C_WAN_Zone |


### Router BGP EVPN Address Family

#### Router BGP EVPN MAC-VRFs
Expand Down Expand Up @@ -829,7 +827,6 @@ router bgp 65104
distance bgp 20 200 200
maximum-paths 4 ecmp 4
neighbor EVPN-OVERLAY-PEERS peer group
neighbor EVPN-OVERLAY-PEERS remote-as 65001
neighbor EVPN-OVERLAY-PEERS update-source Loopback0
neighbor EVPN-OVERLAY-PEERS bfd
neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3
Expand All @@ -854,9 +851,17 @@ router bgp 65104
neighbor 172.31.255.44 peer group IPv4-UNDERLAY-PEERS
neighbor 172.31.255.46 peer group IPv4-UNDERLAY-PEERS
neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.1 remote-as 65001
neighbor 192.168.255.1 description DC1-SPINE1
neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.2 remote-as 65001
neighbor 192.168.255.2 description DC1-SPINE2
neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.3 remote-as 65001
neighbor 192.168.255.3 description DC1-SPINE3
neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.4 remote-as 65001
neighbor 192.168.255.4 description DC1-SPINE4
redistribute connected route-map RM-CONN-2-BGP
!
vlan-aware-bundle Tenant_A_WAN_Zone
Expand All @@ -879,8 +884,6 @@ router bgp 65104
!
address-family evpn
neighbor EVPN-OVERLAY-PEERS activate
no neighbor IPv4-UNDERLAY-PEERS activate
no neighbor MLAG-IPv4-UNDERLAY-PEER activate
!
address-family ipv4
no neighbor EVPN-OVERLAY-PEERS activate
Expand Down
Loading

0 comments on commit debcba7

Please sign in to comment.