This collection includes Ansible modules, plugins and roles needed to provision and manage Dell EMC PowerSwitch platforms running Dell EMC SmartFabric OS10. Sample playbooks and documentation are also included to show how the collection can be used.
-
os10_command.py — Run commands on devices running OS10
-
os10_config.py — Manage configuration on devices running OS10
-
os10_facts.py — Collect facts from devices running OS10
These roles facilitate the provisioning and administration of devices running SmartFabric OS10. There are over 30 roles available that provide a comprehensive coverage of most OS10 resources, including os10_interface, os10_acl, os10_bgp, and os10_vxlan. The documentation for each role is at OS10 roles.
This collection includes the following sample playbooks that illustrate end to end use cases:
-
CLOS fabric — Example playbook to build a Layer 3 Leaf-Spine fabric
-
VXLAN EVPN — Example playbook to build a scale-out Leaf-Spine topology using VxLAN, BGP EVPN and Symmetric-IRB
Use this command to install the latest version of the OS10 collection from Ansible Galaxy:
ansible-galaxy collection install dellemc.os10
To install a specific version, a version range identifier must be specified. For example, to install the most recent version that is greater than or equal to 1.0.0 and less than 2.0.0.
ansible-galaxy collection install 'dellemc.os10:>=1.0.0,<2.0.0'
Ansible version 2.10 or later.
NOTE: For Ansible versions lower than 2.10, use the legacy dellos10 modules and dellos roles.
playbook.yaml
- hosts: os10_switches
connection: network_cli
collections:
- dellemc.os10
roles:
- os10_vlan
host_vars/os10_sw1.yaml
hostname: os10_sw1
# Parameters for connection type network_cli
ansible_ssh_user: xxxx
ansible_ssh_pass: xxxx
ansible_network_os: dellemc.os10.os10
# Create vlan100 and delete vlan888
os10_vlan:
vlan 100:
description: "Blue"
state: present
vlan 888:
state: absent
inventory.yaml
[os10_sw1]
os10_sw1 ansible_host=100.104.28.119
[os10_sw2]
os10_sw2 ansible_host=100.104.28.120
[os10_switches:children]
os10_sw1
os10_sw2
(c) 2017-2020 Dell Inc. or its subsidiaries. All rights reserved.