mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
nxos_pim_rp_address fixes (#26119)
* nxos_pim_rp_address tests * nxos_pim_rp_address changes * Address issues with idempotence
This commit is contained in:
parent
7f6c7c6334
commit
3102746ebe
4 changed files with 159 additions and 161 deletions
|
@ -16,9 +16,11 @@
|
|||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
ANSIBLE_METADATA = {
|
||||
'metadata_version': '1.0',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community',
|
||||
}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
|
@ -28,149 +30,93 @@ extends_documentation_fragment: nxos
|
|||
version_added: "2.2"
|
||||
short_description: Manages configuration of an PIM static RP address instance.
|
||||
description:
|
||||
- Manages configuration of an Protocol Independent Multicast (PIM) static
|
||||
rendezvous point (RP) address instance.
|
||||
- Manages configuration of an Protocol Independent Multicast (PIM) static
|
||||
rendezvous point (RP) address instance.
|
||||
author: Gabriele Gerbino (@GGabriele)
|
||||
notes:
|
||||
- C(state=absent) remove the whole rp-address configuration, if existing.
|
||||
- C(state=absent) remove the whole rp-address configuration, if existing.
|
||||
options:
|
||||
rp_address:
|
||||
description:
|
||||
- Configures a Protocol Independent Multicast (PIM) static
|
||||
rendezvous point (RP) address. Valid values are
|
||||
unicast addresses.
|
||||
required: true
|
||||
group_list:
|
||||
description:
|
||||
- Group range for static RP. Valid values are multicast addresses.
|
||||
required: false
|
||||
default: null
|
||||
prefix_list:
|
||||
description:
|
||||
- Prefix list policy for static RP. Valid values are prefix-list
|
||||
policy names.
|
||||
required: false
|
||||
default: null
|
||||
route_map:
|
||||
description:
|
||||
- Route map policy for static RP. Valid values are route-map
|
||||
policy names.
|
||||
required: false
|
||||
default: null
|
||||
bidir:
|
||||
description:
|
||||
- Group range is treated in PIM bidirectional mode.
|
||||
required: false
|
||||
choices: ['true','false']
|
||||
default: null
|
||||
rp_address:
|
||||
description:
|
||||
- Configures a Protocol Independent Multicast (PIM) static
|
||||
rendezvous point (RP) address. Valid values are
|
||||
unicast addresses.
|
||||
required: true
|
||||
group_list:
|
||||
description:
|
||||
- Group range for static RP. Valid values are multicast addresses.
|
||||
required: false
|
||||
default: null
|
||||
prefix_list:
|
||||
description:
|
||||
- Prefix list policy for static RP. Valid values are prefix-list
|
||||
policy names.
|
||||
required: false
|
||||
default: null
|
||||
route_map:
|
||||
description:
|
||||
- Route map policy for static RP. Valid values are route-map
|
||||
policy names.
|
||||
required: false
|
||||
default: null
|
||||
bidir:
|
||||
description:
|
||||
- Group range is treated in PIM bidirectional mode.
|
||||
required: false
|
||||
choices: ['true','false']
|
||||
default: null
|
||||
'''
|
||||
EXAMPLES = '''
|
||||
- nxos_pim_rp_address:
|
||||
rp_address: "10.1.1.20"
|
||||
state: present
|
||||
username: "{{ un }}"
|
||||
password: "{{ pwd }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
proposed:
|
||||
description: k/v pairs of parameters passed into module
|
||||
returned: verbose mode
|
||||
type: dict
|
||||
sample: {"rp_address": "10.1.1.21"}
|
||||
existing:
|
||||
description: list of existing pim rp-address configuration entries
|
||||
returned: verbose mode
|
||||
type: list
|
||||
sample: []
|
||||
end_state:
|
||||
description: pim rp-address configuration entries after module execution
|
||||
returned: verbose mode
|
||||
type: list
|
||||
sample: [{"bidir": false, "group_list": "224.0.0.0/4",
|
||||
"rp_address": "10.1.1.21"}]
|
||||
updates:
|
||||
commands:
|
||||
description: commands sent to the device
|
||||
returned: always
|
||||
type: list
|
||||
sample: ["router bgp 65535", "vrf test", "router-id 1.1.1.1"]
|
||||
changed:
|
||||
description: check to see if a change was made on the device
|
||||
returned: always
|
||||
type: boolean
|
||||
sample: true
|
||||
'''
|
||||
|
||||
|
||||
|
||||
import re
|
||||
from ansible.module_utils.nxos import get_config, load_config, run_commands
|
||||
|
||||
from ansible.module_utils.nxos import get_config, load_config
|
||||
from ansible.module_utils.nxos import nxos_argument_spec, check_args
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.netcfg import CustomNetworkConfig
|
||||
|
||||
import re
|
||||
|
||||
BOOL_PARAMS = ['bidir']
|
||||
PARAM_TO_COMMAND_KEYMAP = {
|
||||
'rp_address': 'ip pim rp-address'
|
||||
}
|
||||
PARAM_TO_DEFAULT_KEYMAP = {}
|
||||
WARNINGS = []
|
||||
|
||||
def invoke(name, *args, **kwargs):
|
||||
func = globals().get(name)
|
||||
if func:
|
||||
return func(*args, **kwargs)
|
||||
|
||||
|
||||
def get_value(config, module):
|
||||
value_list = []
|
||||
splitted_config = config.splitlines()
|
||||
for line in splitted_config:
|
||||
tmp = {}
|
||||
if 'ip pim rp-address' in line:
|
||||
splitted_line = line.split()
|
||||
tmp['rp_address'] = splitted_line[3]
|
||||
if len(splitted_line) > 5:
|
||||
value = splitted_line[5]
|
||||
if splitted_line[4] == 'route-map':
|
||||
tmp['route_map'] = value
|
||||
elif splitted_line[4] == 'prefix-list':
|
||||
tmp['prefix_list'] = value
|
||||
elif splitted_line[4] == 'group-list':
|
||||
tmp['group_list'] = value
|
||||
if 'bidir' in line:
|
||||
tmp['bidir'] = True
|
||||
else:
|
||||
tmp['bidir'] = False
|
||||
value_list.append(tmp)
|
||||
return value_list
|
||||
|
||||
|
||||
def get_existing(module, args):
|
||||
existing = {}
|
||||
config = str(get_config(module))
|
||||
existing = get_value(config, module)
|
||||
address = module.params['rp_address']
|
||||
|
||||
pim_address_re = r'ip pim rp-address (?P<value>.*)$'
|
||||
for line in re.findall(pim_address_re, config, re.M):
|
||||
|
||||
values = line.split()
|
||||
if values[0] != address:
|
||||
continue
|
||||
|
||||
existing['bidir'] = existing.get('bidir') or 'bidir' in line
|
||||
if len(values) > 2:
|
||||
value = values[1]
|
||||
if values[2] == 'route-map':
|
||||
existing['route_map'] = value
|
||||
elif values[2] == 'prefix-list':
|
||||
existing['prefix_list'] = value
|
||||
elif values[2] == 'group-list':
|
||||
existing['group_list'] = value
|
||||
|
||||
return existing
|
||||
|
||||
|
||||
def apply_key_map(key_map, table):
|
||||
new_dict = {}
|
||||
for key, value in table.items():
|
||||
new_key = key_map.get(key)
|
||||
if new_key:
|
||||
value = table.get(key)
|
||||
if value:
|
||||
new_dict[new_key] = value
|
||||
else:
|
||||
new_dict[new_key] = value
|
||||
return new_dict
|
||||
|
||||
|
||||
def state_present(module, existing, proposed, candidate):
|
||||
command = 'ip pim rp-address {0}'.format(module.params['rp_address'])
|
||||
address = module.params['rp_address']
|
||||
command = 'ip pim rp-address {0}'.format(address)
|
||||
commands = build_command(proposed, command)
|
||||
if commands:
|
||||
candidate.add(commands, parents=[])
|
||||
|
@ -186,17 +132,16 @@ def build_command(param_dict, command):
|
|||
return [command]
|
||||
|
||||
|
||||
def state_absent(module, existing, proposed, candidate):
|
||||
commands = list()
|
||||
for each in existing:
|
||||
if each.get('rp_address') == proposed['rp_address']:
|
||||
command = 'no ip pim rp-address {0}'.format(proposed['rp_address'])
|
||||
if each.get('group_list'):
|
||||
commands = build_command(each, command)
|
||||
else:
|
||||
commands = [command]
|
||||
if commands:
|
||||
candidate.add(commands, parents=[])
|
||||
def state_absent(module, existing, candidate):
|
||||
address = module.params['rp_address']
|
||||
|
||||
command = 'no ip pim rp-address {0}'.format(address)
|
||||
if existing.get('group_list'):
|
||||
commands = build_command(existing, command)
|
||||
else:
|
||||
commands = [command]
|
||||
|
||||
candidate.add(commands, parents=[])
|
||||
|
||||
|
||||
def main():
|
||||
|
@ -206,28 +151,23 @@ def main():
|
|||
prefix_list=dict(required=False, type='str'),
|
||||
route_map=dict(required=False, type='str'),
|
||||
bidir=dict(required=False, type='bool'),
|
||||
state=dict(choices=['present', 'absent'], default='present',
|
||||
required=False),
|
||||
include_defaults=dict(default=False),
|
||||
config=dict(),
|
||||
save=dict(type='bool', default=False)
|
||||
state=dict(choices=['present', 'absent'], default='present', required=False),
|
||||
)
|
||||
|
||||
argument_spec.update(nxos_argument_spec)
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
mutually_exclusive=[['group_list', 'route_map'],
|
||||
['group_list', 'prefix_list'],
|
||||
['route_map', 'prefix_list']],
|
||||
supports_check_mode=True)
|
||||
mutually_exclusive=[['group_list', 'route_map'],
|
||||
['group_list', 'prefix_list'],
|
||||
['route_map', 'prefix_list']],
|
||||
supports_check_mode=True)
|
||||
|
||||
warnings = list()
|
||||
check_args(module, warnings)
|
||||
|
||||
result = {'changed': False, 'commands': [], 'warnings': warnings}
|
||||
|
||||
state = module.params['state']
|
||||
|
||||
args = [
|
||||
args = [
|
||||
'rp_address',
|
||||
'group_list',
|
||||
'prefix_list',
|
||||
|
@ -235,39 +175,35 @@ def main():
|
|||
'bidir'
|
||||
]
|
||||
|
||||
existing = invoke('get_existing', module, args)
|
||||
end_state = existing
|
||||
existing = get_existing(module, args)
|
||||
proposed_args = dict((k, v) for k, v in module.params.items()
|
||||
if v is not None and k in args)
|
||||
if v is not None and k in args)
|
||||
|
||||
proposed = {}
|
||||
for key, value in proposed_args.items():
|
||||
if str(value).lower() == 'true':
|
||||
value = True
|
||||
elif str(value).lower() == 'false':
|
||||
value = False
|
||||
for each in existing:
|
||||
if each.get(key) or (not each.get(key) and value):
|
||||
if key != 'rp_address':
|
||||
if str(value).lower() == 'true':
|
||||
value = True
|
||||
elif str(value).lower() == 'false':
|
||||
value = False
|
||||
|
||||
if existing.get(key) != value:
|
||||
proposed[key] = value
|
||||
|
||||
result = {}
|
||||
candidate = CustomNetworkConfig(indent=3)
|
||||
invoke('state_%s' % state, module, existing, proposed, candidate)
|
||||
response = load_config(module, candidate)
|
||||
result.update(response)
|
||||
if state == 'present' and (proposed or not existing):
|
||||
state_present(module, existing, proposed, candidate)
|
||||
elif state == 'absent' and existing:
|
||||
state_absent(module, existing, candidate)
|
||||
|
||||
if module._verbosity > 0:
|
||||
end_state = invoke('get_existing', module, args)
|
||||
result['end_state'] = end_state
|
||||
result['existing'] = existing
|
||||
result['proposed'] = proposed_args
|
||||
|
||||
if WARNINGS:
|
||||
result['warnings'] = WARNINGS
|
||||
if candidate:
|
||||
candidate = candidate.items_text()
|
||||
result['commands'] = candidate
|
||||
result['changed'] = True
|
||||
load_config(module, candidate)
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue