Skip to content

Commit

Permalink
Fix indentation and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodaA committed Nov 22, 2021
1 parent 7b2ab0b commit a888e3f
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 58 deletions.
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
---
monitor_connectivity:
shutdown: false
interval: 5
interface_sets:
- name: GLOBAL_SET
interfaces: Ethernet1-4
- name: HOST_SET
interfaces: Loopback2-4, Loopback10-12
local_interfaces: GLOBAL_SET
hosts:
- name: server1
description: server1_connectivity_monitor
ip: 10.10.10.1
local_interfaces: HOST_SET
url: https://server1.local.com
vrfs:
- name: red
description: vrf_connectivity_monitor
interface_sets:
- name: VRF_GLOBAL_SET
interfaces: Vlan21-24, Vlan29-32
- name: VRF_HOST_SET
interfaces: Loopback12-14, 19-23
local_interfaces: VRF_GLOBAL_SET
hosts:
- name: server2
description: server2_connectivity_monitor
ip: 10.10.20.1
local_interfaces: VRF_HOST_SET
url: https://server2.local.com
shutdown: false
interval: 5
interface_sets:
- name: GLOBAL_SET
interfaces: Ethernet1-4
- name: HOST_SET
interfaces: Loopback2-4, Loopback10-12
local_interfaces: GLOBAL_SET
hosts:
- name: server1
description: server1_connectivity_monitor
ip: 10.10.10.1
local_interfaces: HOST_SET
url: https://server1.local.com
vrfs:
- name: red
description: vrf_connectivity_monitor
interface_sets:
- name: VRF_GLOBAL_SET
interfaces: Vlan21-24, Vlan29-32
- name: VRF_HOST_SET
interfaces: Loopback12-14, 19-23
local_interfaces: VRF_GLOBAL_SET
hosts:
- name: server2
description: server2_connectivity_monitor
ip: 10.10.20.1
local_interfaces: VRF_HOST_SET
url: https://server2.local.com
58 changes: 29 additions & 29 deletions ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1690,41 +1690,41 @@ daemons:
enabled: "< true | false | default -> true >"
```

This will add a dameon to the eos configuration that is most useful when trying to run OpenConfig clients like ocprometheus

#### Connectivity Monitor

```yaml
monitor_connectivity:
shutdown: < true | false >
interval: < probing_interval >
interface_sets:
- name: < interface_set >
# Interface range(s) should be of same type, Ethernet, Loopback, Management etc.
# Multiple interface ranges can be specified separated by ","
interfaces: < interface_or_interface_range(s) >
local_interfaces: < interface_set_name >
hosts:
- name: < host_name >
description: < description >
ip: < ipv4 >
local_interfaces: < interface_set_name >
url: < url >
vrfs:
- name: < vrf_name >
description: < description >
interface_sets:
- name: < interface_set >
interfaces: < interface_or_interface_range(s) >
local_interfaces: < interface_set_name >
hosts:
- name: < host_name >
description: < description >
ip: < ipv4 >
local_interfaces: < interface_set_name >
url: < url >
shutdown: < true | false >
interval: < probing_interval >
interface_sets:
- name: < interface_set >
# Interface range(s) should be of same type, Ethernet, Loopback, Management etc.
# Multiple interface ranges can be specified separated by ","
interfaces: < interface_or_interface_range(s) >
local_interfaces: < interface_set_name >
hosts:
- name: < host_name >
description: < description >
ip: < ipv4 >
local_interfaces: < interface_set_name >
url: < url >
vrfs:
- name: < vrf_name >
description: < description >
interface_sets:
- name: < interface_set >
interfaces: < interface_or_interface_range(s) >
local_interfaces: < interface_set_name >
hosts:
- name: < host_name >
description: < description >
ip: < ipv4 >
local_interfaces: < interface_set_name >
url: < url >
```

This will add a daemon to the eos configuration that is most useful when trying to run OpenConfig clients like ocprometheus

#### Event Handler

```yaml
Expand Down

0 comments on commit a888e3f

Please sign in to comment.