Provision the vEdges in the topology:
ansible-playbook configure.yml --tags=edge
This playbook will:
- Push private CA to the vedges
- Bootstrap the vedges
- Add vedges to vmanage
- Check full connectivity
Verify just the control plane by using the check_edge
tag:
ansible-playbook configure.yml --tags=check_edge
Finally, modify the playbook viptela_devices.yml
to just print out all of the vedges. The output should look similar
to the following:
$ ansible-playbook viptela_devices.yml
PLAY [localhost] *******************************************************************************************************************************
TASK [Get Cookie] ******************************************************************************************************************************
ok: [localhost]
TASK [Get a list of fabric devices] ************************************************************************************************************
ok: [localhost]
TASK [set_fact] ********************************************************************************************************************************
ok: [localhost]
TASK [debug] ***********************************************************************************************************************************
ok: [localhost] => {
"msg": "These vedges are part of the fabric: vedge-hq,vedge1,vedge2"
}
PLAY RECAP *************************************************************************************************************************************
localhost : ok=4 changed=0 unreachable=0 failed=0
You have completed lab exercise 5.2
Click Here to return to the Viptela Networking Automation Workshop