Skip to content

DCNM Collection Version 1.0.0

Compare
Choose a tag to compare
@mikewiebe mikewiebe released this 01 Sep 21:52
· 759 commits to main since this release
5f16167

Added

  • cisco.dcnm.dcnm_network:
    • New parameter routing_tag:

Changed

  • cisco.dcnm.dcnm_network:
    • The vlan_id: parameter must be configured under the config: block instead of the attach: block.
      • A warning will be generated informing the user to move the vlan_id: under the config: block.
      • If the user does not specify the vlan_id it will be auto generated by DCNM.
  • cisco.dcnm_dcnm_interface:
    • The various profile_*: parameters have now been modified to just profile:.
      • The playbook with the old profile_*: names will still be accepted but a warning message will be generated to change the playbook.

      • When specifying switches for a vpc interface type the switches should be a flat yaml list instead of a nested yaml list. Both formats will still be accepted.

        Proper Format:

              switch:                           # provide switches of vPC pair
                - "{{ ansible_switch1 }}"
                - "{{ ansible_switch2 }}"
        

        Incorrect Format:

              switch:                           # provide switches of vPC pair
                - ["{{ ansible_switch1 }}",
                   "{{ ansible_switch2 }}"]
        

Fixed

  • cisco.dcnm.dcnm_rest:
    • Module will return a failure now if the return code from DCNM is 400 or greater.