├── .dockerignore ├── .gitignore ├── .idea ├── dictionaries │ └── pytest.xml ├── misc.xml ├── modules.xml ├── pytest.iml ├── vcs.xml └── workspace.xml ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── ansible-setup.mak ├── ansible.cfg ├── examples ├── test_2qfx.py └── vqfx10k-vagrant │ ├── .gitignore │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── TROUBLESHOOTING.md │ ├── Windows.md │ ├── destroy_vagrant_all.sh │ ├── full-1qfx-1srv │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ └── provisioning │ │ ├── deploy-config.p.yaml │ │ ├── host_vars │ │ └── vqfx.yaml │ │ ├── save-config.p.yaml │ │ └── vqfx.conf.j2 │ ├── full-1qfx │ ├── README.md │ └── Vagrantfile │ ├── full-2qfx-4srv-evpnvxlan │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── group_vars │ │ └── all.yml │ ├── host_vars │ │ ├── vqfx1.yaml │ │ └── vqfx2.yaml │ ├── pb.conf.all.commit.yaml │ ├── pb.conf.save.yaml │ └── vqfx.conf.j2 │ ├── full-2qfx │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── host_vars │ │ ├── vqfx1.yaml │ │ └── vqfx2.yaml │ ├── pb.conf.all.commit.yaml │ ├── pb.conf.save.yaml │ └── vqfx.conf.j2 │ ├── full-4qfx │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── host_vars │ │ ├── vqfx1.yaml │ │ ├── vqfx2.yaml │ │ ├── vqfx3.yaml │ │ └── vqfx4.yaml │ ├── pb.conf.all.commit.yaml │ ├── pb.conf.save.yaml │ └── vqfx.conf.j2 │ ├── full-ipfabric-2S-3L │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── deploy-config.p.yaml │ ├── group_vars │ │ └── all │ │ │ ├── common.yaml │ │ │ └── generated_p2p_ips.yaml │ ├── host_vars │ │ ├── leaf1 │ │ │ └── underlay.yaml │ │ ├── leaf2 │ │ │ └── underlay.yaml │ │ ├── leaf3 │ │ │ └── underlay.yaml │ │ ├── spine1 │ │ │ └── underlay.yaml │ │ └── spine2 │ │ │ └── underlay.yaml │ ├── pb.conf.all.commit.yaml │ ├── pb.conf.all.yaml │ ├── pb.conf.leaf.yaml │ ├── pb.conf.spine.yaml │ ├── pb.config.save.yaml │ ├── pb.init.make_clean.yaml │ └── roles │ │ ├── build-config │ │ ├── defaults │ │ │ └── main.yaml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── junos-std-l3 │ │ ├── README.md │ │ ├── tasks │ │ │ └── main.yaml │ │ └── templates │ │ │ └── main.conf.j2 │ │ ├── underlay-ebgp │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yaml │ │ ├── tasks │ │ │ └── main.yaml │ │ └── templates │ │ │ └── main.conf.j2 │ │ └── vagrant-base │ │ ├── README.md │ │ ├── meta │ │ └── main.yaml │ │ ├── tasks │ │ └── main.yaml │ │ └── templates │ │ └── main.conf.j2 │ ├── light-1qfx │ ├── README.md │ └── Vagrantfile │ ├── light-2qfx-2srv │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ └── provisioning │ │ ├── deploy-config.p.yaml │ │ ├── host_vars │ │ ├── vqfx1.yml │ │ └── vqfx2.yaml │ │ ├── save-config.p.yaml │ │ └── vqfx.conf.j2 │ ├── light-2qfx │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── host_vars │ │ ├── vqfx1.yaml │ │ └── vqfx2.yaml │ ├── pb.conf.all.commit.yaml │ └── vqfx.conf.j2 │ └── light-ipfabric-2S-3L │ ├── README.md │ ├── Vagrantfile │ ├── ansible.cfg │ ├── deploy-config.p.yaml │ ├── group_vars │ └── all │ │ ├── common.yaml │ │ └── generated_p2p_ips.yaml │ ├── host_vars │ ├── leaf1 │ │ └── underlay.yaml │ ├── leaf2 │ │ └── underlay.yaml │ ├── leaf3 │ │ └── underlay.yaml │ ├── spine1 │ │ └── underlay.yaml │ └── spine2 │ │ └── underlay.yaml │ ├── pb.conf.all.commit.yaml │ ├── pb.conf.all.yaml │ ├── pb.conf.leaf.yaml │ ├── pb.conf.spine.yaml │ ├── pb.config.save.yaml │ ├── pb.init.make_clean.yaml │ └── roles │ ├── build-config │ ├── defaults │ │ └── main.yaml │ └── tasks │ │ └── main.yaml │ ├── junos-std-l3 │ ├── README.md │ ├── tasks │ │ └── main.yaml │ └── templates │ │ └── main.conf.j2 │ ├── underlay-ebgp │ ├── README.md │ ├── defaults │ │ └── main.yaml │ ├── meta │ │ └── main.yaml │ ├── tasks │ │ └── main.yaml │ └── templates │ │ └── main.conf.j2 │ └── vagrant-base │ ├── README.md │ ├── meta │ └── main.yaml │ ├── tasks │ └── main.yaml │ └── templates │ └── main.conf.j2 ├── images ├── ansible-logo.png ├── pytest-logo.png └── report-html.png ├── pytest.ini └── tests ├── ansible.cfg ├── pytest.ini └── test_sample.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dictionaries/pytest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/dictionaries/pytest.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pytest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/pytest.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/README.md -------------------------------------------------------------------------------- /ansible-setup.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/ansible-setup.mak -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/ansible.cfg -------------------------------------------------------------------------------- /examples/test_2qfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/test_2qfx.py -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/.gitignore -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/INSTALL.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/LICENSE -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/Windows.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/destroy_vagrant_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/destroy_vagrant_all.sh -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/ansible.cfg: -------------------------------------------------------------------------------- 1 | # Leave this file if it's empty to avoid Ansible warning in Windows. 2 | -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/deploy-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/deploy-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/host_vars/vqfx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/host_vars/vqfx.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/save-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/save-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx-1srv/provisioning/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-1qfx/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-1qfx/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/group_vars/all.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/host_vars/vqfx1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/host_vars/vqfx1.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/host_vars/vqfx2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/host_vars/vqfx2.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/pb.conf.save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/pb.conf.save.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx-4srv-evpnvxlan/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/host_vars/vqfx1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/host_vars/vqfx1.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/host_vars/vqfx2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/host_vars/vqfx2.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/pb.conf.save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/pb.conf.save.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-2qfx/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-2qfx/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx1.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx2.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx3.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/host_vars/vqfx4.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/pb.conf.save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/pb.conf.save.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-4qfx/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-4qfx/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/deploy-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/deploy-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/group_vars/all/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/group_vars/all/common.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/group_vars/all/generated_p2p_ips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/group_vars/all/generated_p2p_ips.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf1/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf1/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf2/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf2/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf3/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/leaf3/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/spine1/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/spine1/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/spine2/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/host_vars/spine2/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.all.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.leaf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.leaf.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.spine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.conf.spine.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.config.save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.config.save.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.init.make_clean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/pb.init.make_clean.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/build-config/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/build-config/defaults/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/build-config/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/build-config/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/junos-std-l3/templates/main.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/defaults/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/meta/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/meta/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/underlay-ebgp/templates/main.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/meta/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/meta/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/full-ipfabric-2S-3L/roles/vagrant-base/templates/main.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-1qfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-1qfx/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-1qfx/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-1qfx/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/ansible.cfg: -------------------------------------------------------------------------------- 1 | # Leave this file if it's empty to avoid Ansible warning in Windows. 2 | -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/deploy-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/deploy-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/host_vars/vqfx1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/host_vars/vqfx1.yml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/host_vars/vqfx2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/host_vars/vqfx2.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/save-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/save-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx-2srv/provisioning/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/host_vars/vqfx1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/host_vars/vqfx1.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/host_vars/vqfx2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/host_vars/vqfx2.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-2qfx/vqfx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-2qfx/vqfx.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/Vagrantfile -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/ansible.cfg -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/deploy-config.p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/deploy-config.p.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/group_vars/all/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/group_vars/all/common.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/group_vars/all/generated_p2p_ips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/group_vars/all/generated_p2p_ips.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf1/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf1/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf2/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf2/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf3/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/leaf3/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/spine1/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/spine1/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/spine2/underlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/host_vars/spine2/underlay.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.all.commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.all.commit.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.all.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.leaf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.leaf.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.spine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.conf.spine.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.config.save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.config.save.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.init.make_clean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/pb.init.make_clean.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/build-config/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/build-config/defaults/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/build-config/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/build-config/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/junos-std-l3/templates/main.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/defaults/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/meta/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/meta/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/underlay-ebgp/templates/main.conf.j2 -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/README.md -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/meta/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/meta/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/tasks/main.yaml -------------------------------------------------------------------------------- /examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/templates/main.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/examples/vqfx10k-vagrant/light-ipfabric-2S-3L/roles/vagrant-base/templates/main.conf.j2 -------------------------------------------------------------------------------- /images/ansible-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/images/ansible-logo.png -------------------------------------------------------------------------------- /images/pytest-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/images/pytest-logo.png -------------------------------------------------------------------------------- /images/report-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/images/report-html.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/tests/ansible.cfg -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juniper/juniper-pytest/HEAD/tests/test_sample.py --------------------------------------------------------------------------------