mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ACI BD: Update module to use new URL Method (#28625)
* ACI BD: Update module to use new URL Method * fix docstring errors
This commit is contained in:
parent
2e61760659
commit
1bec0e5753
1 changed files with 117 additions and 72 deletions
|
@ -32,8 +32,9 @@ options:
|
||||||
arp_flooding:
|
arp_flooding:
|
||||||
description:
|
description:
|
||||||
- Determines if the Bridge Domain should flood ARP traffic.
|
- Determines if the Bridge Domain should flood ARP traffic.
|
||||||
- The APIC defaults new Bridge Domains to "no".
|
- The APIC defaults new Bridge Domains to C(no).
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
|
default: no
|
||||||
bd:
|
bd:
|
||||||
description:
|
description:
|
||||||
- The name of the Bridge Domain.
|
- The name of the Bridge Domain.
|
||||||
|
@ -41,41 +42,47 @@ options:
|
||||||
bd_type:
|
bd_type:
|
||||||
description:
|
description:
|
||||||
- The type of traffic on the Bridge Domain.
|
- The type of traffic on the Bridge Domain.
|
||||||
- The APIC defaults new Bridge Domains to Ethernet.
|
- The APIC defaults new Bridge Domains to C(ethernet).
|
||||||
choices: [ ethernet, fc ]
|
choices: [ ethernet, fc ]
|
||||||
|
default: ethernet
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- Description for the Bridge Domain.
|
- Description for the Bridge Domain.
|
||||||
enable_multicast:
|
enable_multicast:
|
||||||
description:
|
description:
|
||||||
- Determines if PIM is enabled
|
- Determines if PIM is enabled
|
||||||
- The APIC defaults new Bridge Domains to disabled.
|
- The APIC defaults new Bridge Domains to C(no).
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
|
default: no
|
||||||
enable_routing:
|
enable_routing:
|
||||||
description:
|
description:
|
||||||
- Determines if IP forwarding should be allowed.
|
- Determines if IP forwarding should be allowed.
|
||||||
- The APIC defaults new Bridge Domains to IP forwarding enabled.
|
- The APIC defaults new Bridge Domains to C(yes).
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
|
default: yes
|
||||||
endpoint_clear:
|
endpoint_clear:
|
||||||
description:
|
description:
|
||||||
- Clears all End Points in all Leaves when enabled.
|
- Clears all End Points in all Leaves when C(yes).
|
||||||
- The APIC defaults new Bridge Domains to disabled.
|
- The APIC defaults new Bridge Domains to C(no).
|
||||||
- The value is not reset to disabled once End Points have been cleared; that requires a second task.
|
- The value is not reset to disabled once End Points have been cleared; that requires a second task.
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
|
default: no
|
||||||
endpoint_move_detect:
|
endpoint_move_detect:
|
||||||
description:
|
description:
|
||||||
- Determines if GARP should be enabled to detect when End Points move.
|
- Determines if GARP should be enabled to detect when End Points move.
|
||||||
- The APIC defaults new Bridge Domains to not use GARP.
|
- The APIC defaults new Bridge Domains to C(garp).
|
||||||
choices: [ default, garp ]
|
choices: [ default, garp ]
|
||||||
|
default: garp
|
||||||
endpoint_retention_action:
|
endpoint_retention_action:
|
||||||
description:
|
description:
|
||||||
- Determines if the Bridge Domain should inherit or resolve the End Point Retention Policy.
|
- Determines if the Bridge Domain should inherit or resolve the End Point Retention Policy.
|
||||||
- The APIC defaults new Bridge Domain to End Point Retention Policies to resolve the policy.
|
- The APIC defaults new Bridge Domain to End Point Retention Policies to C(resolve).
|
||||||
|
choices: [ inherit, resolve ]
|
||||||
|
default: resolve
|
||||||
endpoint_retention_policy:
|
endpoint_retention_policy:
|
||||||
description:
|
description:
|
||||||
- The name of the End Point Retention Policy the Bridge Domain should use when
|
- The name of the End Point Retention Policy the Bridge Domain should use when
|
||||||
overriding the default End Point Retention Policy.
|
overriding the default End Point Retention Policy.
|
||||||
choices: [ inherit, resolve ]
|
|
||||||
igmp_snoop_policy:
|
igmp_snoop_policy:
|
||||||
description:
|
description:
|
||||||
- The name of the IGMP Snooping Policy the Bridge Domain should use when
|
- The name of the IGMP Snooping Policy the Bridge Domain should use when
|
||||||
|
@ -83,32 +90,36 @@ options:
|
||||||
ip_learning:
|
ip_learning:
|
||||||
description:
|
description:
|
||||||
- Determines if the Bridge Domain should learn End Point IPs.
|
- Determines if the Bridge Domain should learn End Point IPs.
|
||||||
- The APIC defaults new Bridge Domains to enable IP learning.
|
- The APIC defaults new Bridge Domains to C(yes).
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
ipv6_nd_policy:
|
ipv6_nd_policy:
|
||||||
description:
|
description:
|
||||||
- The name of the IPv6 Neighbor Discovery Policy the Bridge Domain should use when
|
- The name of the IPv6 Neighbor Discovery Policy the Bridge Domain should use when
|
||||||
overridding teh default IPV6 ND Policy.
|
overridding the default IPV6 ND Policy.
|
||||||
l2_unknown_unicast:
|
l2_unknown_unicast:
|
||||||
description:
|
description:
|
||||||
- Determines what forwarding method to use for unknown l2 destinations.
|
- Determines what forwarding method to use for unknown l2 destinations.
|
||||||
- The APIC defaults new Bridge domains to use Hardware Proxy.
|
- The APIC defaults new Bridge domains to C(proxy).
|
||||||
choices: [ proxy, flood ]
|
choices: [ proxy, flood ]
|
||||||
|
default: proxy
|
||||||
l3_unknown_multicast:
|
l3_unknown_multicast:
|
||||||
description:
|
description:
|
||||||
- Determines the forwarding method to use for unknown multicast destinations.
|
- Determines the forwarding method to use for unknown multicast destinations.
|
||||||
- The APCI defaults new Bridge Domains to use normal flooding.
|
- The APCI defaults new Bridge Domains to C(flood).
|
||||||
choices: [ flood, opt-flood ]
|
choices: [ flood, opt-flood ]
|
||||||
|
default: flood
|
||||||
limit_ip_learn:
|
limit_ip_learn:
|
||||||
description:
|
description:
|
||||||
- Determines if the BD should limit IP learning to only subnets owned by the Bridge Domain.
|
- Determines if the BD should limit IP learning to only subnets owned by the Bridge Domain.
|
||||||
- The APIC defaults new Bridge Domains to learn all IP addresses.
|
- The APIC defaults new Bridge Domains to C(yes).
|
||||||
choices: [ no, yes ]
|
choices: [ no, yes ]
|
||||||
|
default: yes
|
||||||
multi_dest:
|
multi_dest:
|
||||||
description:
|
description:
|
||||||
- Determines the forwarding method for L2 multicast, broadcast, and link layer traffic.
|
- Determines the forwarding method for L2 multicast, broadcast, and link layer traffic.
|
||||||
- The APIC defaults new Bridge Domains to use bd-flood.
|
- The APIC defaults new Bridge Domains to C(bd-flood).
|
||||||
choices: [ bd-flood, drop, encap-flood ]
|
choices: [ bd-flood, drop, encap-flood ]
|
||||||
|
default: bd-flood
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Use C(present) or C(absent) for adding or removing.
|
- Use C(present) or C(absent) for adding or removing.
|
||||||
|
@ -128,21 +139,67 @@ options:
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
- name: Add Bridge Domain
|
- name: Add Bridge Domain
|
||||||
aci_bd:
|
aci_bd:
|
||||||
action: "{{ action }}"
|
|
||||||
tenant: "{{ tenant }}"
|
|
||||||
bd: "{{ bd }}"
|
|
||||||
vrf: "{{ vrf }}"
|
|
||||||
arp_flooding: "{{ arp_flooding }}"
|
|
||||||
l2_unknown_unicast: "{{ l2_unknown_unicast }}"
|
|
||||||
l3_unknown_multicast: "{{ l3_unknown_multicast }}"
|
|
||||||
multi_dest: "{{ multi_dest }}"
|
|
||||||
gateway_ip: "{{ gateway_ip }}"
|
|
||||||
subnet_mask: "{{ subnet_mask }}"
|
|
||||||
scope: "{{ scope }}"
|
|
||||||
host: "{{ inventory_hostname }}"
|
host: "{{ inventory_hostname }}"
|
||||||
username: "{{ username }}"
|
username: "{{ username }}"
|
||||||
password: "{{ password }}"
|
password: "{{ password }}"
|
||||||
protocol: "{{ protocol }}"
|
validate_certs: false
|
||||||
|
state: present
|
||||||
|
tenant: prod
|
||||||
|
bd: web_servers
|
||||||
|
vrf: prod_vrf
|
||||||
|
|
||||||
|
- name: Add an FC Bridge Domain
|
||||||
|
aci_bd:
|
||||||
|
host: "{{ inventory_hostname }}"
|
||||||
|
username: "{{ username }}"
|
||||||
|
password: "{{ password }}"
|
||||||
|
validate_certs: false
|
||||||
|
state: present
|
||||||
|
tenant: prod
|
||||||
|
bd: storage
|
||||||
|
bd_type: fc
|
||||||
|
vrf: fc_vrf
|
||||||
|
enable_routing: no
|
||||||
|
|
||||||
|
- name: Modify a Bridge Domain
|
||||||
|
aci_bd:
|
||||||
|
host: "{{ inventory_hostname }}"
|
||||||
|
username: "{{ username }}"
|
||||||
|
password: "{{ password }}"
|
||||||
|
validate_certs: true
|
||||||
|
state: present
|
||||||
|
tenant: prod
|
||||||
|
bd: web_servers
|
||||||
|
arp_flooding: yes
|
||||||
|
l2_unknown_unicast: flood
|
||||||
|
|
||||||
|
- name: Query All Bridge Domains
|
||||||
|
aci_bd:
|
||||||
|
host: "{{ inventory_hostname }}"
|
||||||
|
username: "{{ username }}"
|
||||||
|
password: "{{ password }}"
|
||||||
|
validate_certs: true
|
||||||
|
state: query
|
||||||
|
|
||||||
|
- name: Query a Bridge Domain
|
||||||
|
aci_bd:
|
||||||
|
host: "{{ inventory_hostname }}"
|
||||||
|
username: "{{ username }}"
|
||||||
|
password: "{{ password }}"
|
||||||
|
validate_certs: true
|
||||||
|
state: query
|
||||||
|
tenant: prod
|
||||||
|
bd: web_servers
|
||||||
|
|
||||||
|
- name: Delete a Bridge Domain
|
||||||
|
aci_bd:
|
||||||
|
host: "{{ inventory_hostname }}"
|
||||||
|
username: "{{ username }}"
|
||||||
|
password: "{{ password }}"
|
||||||
|
validate_certs: true
|
||||||
|
state: absent
|
||||||
|
tenant: prod
|
||||||
|
bd: web_servers
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r''' # '''
|
RETURN = r''' # '''
|
||||||
|
@ -177,18 +234,18 @@ def main():
|
||||||
gateway_ip=dict(type='str', removed_in_version='2.4'), # Deprecated starting from v2.4
|
gateway_ip=dict(type='str', removed_in_version='2.4'), # Deprecated starting from v2.4
|
||||||
method=dict(type='str', choices=['delete', 'get', 'post'], aliases=['action'], removed_in_version='2.6'), # Deprecated starting from v2.6
|
method=dict(type='str', choices=['delete', 'get', 'post'], aliases=['action'], removed_in_version='2.6'), # Deprecated starting from v2.6
|
||||||
scope=dict(type='str', removed_in_version='2.4'), # Deprecated starting from v2.4
|
scope=dict(type='str', removed_in_version='2.4'), # Deprecated starting from v2.4
|
||||||
subnet_mask=dict(type='str', removed_in_version='2.4') # Deprecated starting from v2.4
|
subnet_mask=dict(type='str', removed_in_version='2.4'), # Deprecated starting from v2.4
|
||||||
)
|
)
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=argument_spec,
|
argument_spec=argument_spec,
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
required_if=[['state', 'absent', ['bd', 'tenant']],
|
required_if=[
|
||||||
['state', 'present', ['bd', 'tenant']]]
|
['state', 'absent', ['bd', 'tenant']],
|
||||||
|
['state', 'present', ['bd', 'tenant']],
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
l2_unknown_unicast = module.params['l2_unknown_unicast']
|
|
||||||
l3_unknown_multicast = module.params['l3_unknown_multicast']
|
|
||||||
arp_flooding = module.params['arp_flooding']
|
arp_flooding = module.params['arp_flooding']
|
||||||
bd = module.params['bd']
|
bd = module.params['bd']
|
||||||
bd_type = module.params['bd_type']
|
bd_type = module.params['bd_type']
|
||||||
|
@ -208,10 +265,11 @@ def main():
|
||||||
igmp_snoop_policy = module.params['igmp_snoop_policy']
|
igmp_snoop_policy = module.params['igmp_snoop_policy']
|
||||||
ip_learning = module.params['ip_learning']
|
ip_learning = module.params['ip_learning']
|
||||||
ipv6_nd_policy = module.params['ipv6_nd_policy']
|
ipv6_nd_policy = module.params['ipv6_nd_policy']
|
||||||
|
l2_unknown_unicast = module.params['l2_unknown_unicast']
|
||||||
|
l3_unknown_multicast = module.params['l3_unknown_multicast']
|
||||||
limit_ip_learn = module.params['limit_ip_learn']
|
limit_ip_learn = module.params['limit_ip_learn']
|
||||||
multi_dest = module.params['multi_dest']
|
multi_dest = module.params['multi_dest']
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
tenant = module.params['tenant']
|
|
||||||
vrf = module.params['vrf']
|
vrf = module.params['vrf']
|
||||||
|
|
||||||
# Give warning when fvSubnet parameters are passed as those have been moved to the aci_subnet module
|
# Give warning when fvSubnet parameters are passed as those have been moved to the aci_subnet module
|
||||||
|
@ -219,49 +277,36 @@ def main():
|
||||||
module._warnings = ["The support for managing Subnets has been moved to its own module, aci_subnet. \
|
module._warnings = ["The support for managing Subnets has been moved to its own module, aci_subnet. \
|
||||||
The new modules still supports 'gateway_ip' and 'subnet_mask' along with more features"]
|
The new modules still supports 'gateway_ip' and 'subnet_mask' along with more features"]
|
||||||
|
|
||||||
if bd is not None:
|
|
||||||
if tenant is not None:
|
|
||||||
path = 'api/mo/uni/tn-%(tenant)s/BD-%(bd)s.json' % module.params
|
|
||||||
filter_string = '?rsp-subtree=full&rsp-subtree-class=fvRsCtx,fvRsIgmpsn,fvRsBDToNdP,fvRsBdToEpRet&rsp-prop-include=config-only'
|
|
||||||
else:
|
|
||||||
path = 'api/class/fvBD.json'
|
|
||||||
filter_string = ('?query-target-filter=eq(fvBD.name, \"%(bd)s\")&rsp-subtree=children'
|
|
||||||
'&rsp-subtree-class=fvRsCtx,fvRsIgmpsn,fvRsBDToNdP,fvRsBdToEpRet') % module.params
|
|
||||||
elif tenant is not None:
|
|
||||||
path = 'api/mo/uni/tn-%(tenant)s.json' % module.params
|
|
||||||
filter_string = '?rsp-subtree=full&rsp-subtree-class=fvBD,fvRsCtx,fvRsIgmpsn,fvRsBDToNdP,fvRsBdToEpRet'
|
|
||||||
else:
|
|
||||||
path = 'api/class/fvBD.json'
|
|
||||||
filter_string = "?rsp-subtree=full&rsp-subtree-class=fvBD,fvRsCtx,fvRsIgmpsn,fvRsBDToNdP,fvRsBdToEpRet"
|
|
||||||
|
|
||||||
aci = ACIModule(module)
|
aci = ACIModule(module)
|
||||||
|
aci.construct_url(root_class="tenant", subclass_1="bd", child_classes=['fvRsCtx', 'fvRsIgmpsn', 'fvRsBDToNdP', 'fvRsBdToEpRet'])
|
||||||
aci.result['url'] = '%(protocol)s://%(hostname)s/' % aci.params + path
|
aci.get_existing()
|
||||||
|
|
||||||
aci.get_existing(filter_string=filter_string)
|
|
||||||
|
|
||||||
if state == 'present':
|
if state == 'present':
|
||||||
# Filter out module params with null values
|
# Filter out module params with null values
|
||||||
aci.payload(aci_class='fvBD',
|
aci.payload(
|
||||||
class_config=dict(arpFlood=arp_flooding,
|
aci_class='fvBD',
|
||||||
descr=description,
|
class_config=dict(
|
||||||
epClear=endpoint_clear,
|
arpFlood=arp_flooding,
|
||||||
epMoveDetectMode=endpoint_move_detect,
|
descr=description,
|
||||||
ipLearning=ip_learning,
|
epClear=endpoint_clear,
|
||||||
limitIpLearnToSubnets=limit_ip_learn,
|
epMoveDetectMode=endpoint_move_detect,
|
||||||
mcastAllow=enable_multicast,
|
ipLearning=ip_learning,
|
||||||
multiDstPktAct=multi_dest,
|
limitIpLearnToSubnets=limit_ip_learn,
|
||||||
name=bd,
|
mcastAllow=enable_multicast,
|
||||||
type=bd_type,
|
multiDstPktAct=multi_dest,
|
||||||
unicastRoute=enable_routing,
|
name=bd,
|
||||||
unkMacUcastAct=l2_unknown_unicast,
|
type=bd_type,
|
||||||
unkMcastAct=l3_unknown_multicast),
|
unicastRoute=enable_routing,
|
||||||
child_configs=[{'fvRsCtx': {'attributes': {'tnFvCtxName': vrf}}},
|
unkMacUcastAct=l2_unknown_unicast,
|
||||||
{'fvRsIgmpsn': {'attributes': {'tnIgmpSnoopPolName': igmp_snoop_policy}}},
|
unkMcastAct=l3_unknown_multicast,
|
||||||
{'fvRsBDToNdP': {'attributes': {'tnNdIfPolName': ipv6_nd_policy}}},
|
),
|
||||||
{'fvRsBdToEpRet': {'attributes': {'resolveAct': endpoint_retention_action,
|
child_configs=[
|
||||||
'tnFvEpRetPolName': endpoint_retention_policy}}}]
|
{'fvRsCtx': {'attributes': {'tnFvCtxName': vrf}}},
|
||||||
)
|
{'fvRsIgmpsn': {'attributes': {'tnIgmpSnoopPolName': igmp_snoop_policy}}},
|
||||||
|
{'fvRsBDToNdP': {'attributes': {'tnNdIfPolName': ipv6_nd_policy}}},
|
||||||
|
{'fvRsBdToEpRet': {'attributes': {'resolveAct': endpoint_retention_action, 'tnFvEpRetPolName': endpoint_retention_policy}}},
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
# generate config diff which will be used as POST request body
|
# generate config diff which will be used as POST request body
|
||||||
aci.get_diff(aci_class='fvBD')
|
aci.get_diff(aci_class='fvBD')
|
||||||
|
|
Loading…
Reference in a new issue