Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes module_defaults being incorrectly applied to platform actions #511

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions changelogs/fragments/module_defaults.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- Prevents module_defaults from were being incorrectly applied to the platform action, instead of the concerned module.
36 changes: 36 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,83 +4,119 @@ plugin_routing:
modules:
acl_interfaces:
redirect: arista.eos.eos_acl_interfaces
action_plugin: arista.eos.eos
acls:
redirect: arista.eos.eos_acls
action_plugin: arista.eos.eos
banner:
redirect: arista.eos.eos_banner
action_plugin: arista.eos.eos
bgp:
redirect: arista.eos.eos_bgp
deprecation:
removal_date: "2023-01-01"
warning_text: See the plugin documentation for more details
action_plugin: arista.eos.eos
eos_bgp:
deprecation:
removal_date: "2023-01-01"
warning_text: See the plugin documentation for more details
action_plugin: arista.eos.eos
bgp_address_family:
redirect: arista.eos.eos_bgp_address_family
action_plugin: arista.eos.eos
bgp_global:
redirect: arista.eos.eos_bgp_global
action_plugin: arista.eos.eos
command:
redirect: arista.eos.eos_command
action_plugin: arista.eos.eos
config:
redirect: arista.eos.eos_config
action_plugin: arista.eos.eos
eapi:
redirect: arista.eos.eos_eapi
action_plugin: arista.eos.eos
facts:
redirect: arista.eos.eos_facts
action_plugin: arista.eos.eos
hostname:
redirect: arista.eos.eos_hostname
action_plugin: arista.eos.eos
interfaces:
redirect: arista.eos.eos_interfaces
action_plugin: arista.eos.eos
l2_interfaces:
redirect: arista.eos.eos_l2_interfaces
action_plugin: arista.eos.eos
l3_interfaces:
redirect: arista.eos.eos_l3_interfaces
action_plugin: arista.eos.eos
lacp:
redirect: arista.eos.eos_lacp
action_plugin: arista.eos.eos
lacp_interfaces:
redirect: arista.eos.eos_lacp_interfaces
action_plugin: arista.eos.eos
lag_interfaces:
redirect: arista.eos.eos_lag_interfaces
action_plugin: arista.eos.eos
lldp:
redirect: arista.eos.eos_lldp
action_plugin: arista.eos.eos
lldp_global:
redirect: arista.eos.eos_lldp_global
action_plugin: arista.eos.eos
lldp_interfaces:
redirect: arista.eos.eos_lldp_interfaces
action_plugin: arista.eos.eos
logging:
redirect: arista.eos.eos_logging
deprecation:
removal_date: "2024-01-01"
warning_text: See the plugin documentation for more details
action_plugin: arista.eos.eos
eos_logging:
deprecation:
removal_date: "2024-01-01"
warning_text: See the plugin documentation for more details
action_plugin: arista.eos.eos
logging_global:
redirect: arista.eos.eos_logging_global
action_plugin: arista.eos.eos
ntp_global:
redirect: arista.eos.eos_ntp_global
action_plugin: arista.eos.eos
ospfv2:
redirect: arista.eos.eos_ospfv2
action_plugin: arista.eos.eos
ospfv3:
redirect: arista.eos.eos_ospfv3
action_plugin: arista.eos.eos
ospf_interfaces:
redirect: arista.eos.eos_ospf_interfaces
action_plugin: arista.eos.eos
prefix_lists:
redirect: arista.eos.eos_prefix_lists
action_plugin: arista.eos.eos
route_maps:
redirect: arista.eos.eos_route_maps
action_plugin: arista.eos.eos
snmp_server:
redirect: arista.eos.eos_snmp_server
action_plugin: arista.eos.eos
static_routes:
redirect: arista.eos.eos_static_routes
action_plugin: arista.eos.eos
system:
redirect: arista.eos.eos_system
action_plugin: arista.eos.eos
user:
redirect: arista.eos.eos_user
action_plugin: arista.eos.eos
vlans:
redirect: arista.eos.eos_vlans
action_plugin: arista.eos.eos
vrf:
redirect: arista.eos.eos_vrf
action_plugin: arista.eos.eos
1 change: 0 additions & 1 deletion plugins/action/acl_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/acls.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/banner.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/bgp.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/bgp_address_family.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/bgp_global.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/command.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/config.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/eapi.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/facts.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/hostname.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/interface.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/l2_interface.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/l2_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/l3_interface.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/l3_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lacp.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lacp_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lag_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/linkagg.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lldp.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lldp_global.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/lldp_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/logging.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/logging_global.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/ntp_global.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/ospf_interfaces.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/ospfv2.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/ospfv3.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/prefix_lists.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/route_maps.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/snmp_server.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/static_route.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/static_routes.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/system.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/user.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/vlan.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/vlans.py

This file was deleted.

1 change: 0 additions & 1 deletion plugins/action/vrf.py

This file was deleted.

Loading