mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
Migrate Network Tests into ansible/ansible (#18233)
* Docs Networking tests * Copy networking tests from test-network-modules * Networking transport settings - group_vars * Network playbooks * Debug should be off by default * Update nxos.yaml * Remove items from top level * Use dependencies, not pre-tasks * Remove trailing blank lines * Remove backup files * newlines
This commit is contained in:
parent
4a067c3f50
commit
e0cc7b3415
489 changed files with 13144 additions and 2 deletions
8
test/integration/group_vars/asa.yaml
Normal file
8
test/integration/group_vars/asa.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ asa_cli_user | default('cisco') }}"
|
||||
password: "{{ asa_cli_pass | default('cisco') }}"
|
||||
transport: cli
|
||||
authorize: yes
|
||||
auth_pass: "{{ asa_auth_pass | default('cisco') }}"
|
6
test/integration/group_vars/dellos10.yaml
Normal file
6
test/integration/group_vars/dellos10.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ ansible_host }}"
|
||||
username: "{{ dellos10_cli_user | default('admin') }}"
|
||||
password: "{{ dellos10_cli_pass | default('admin') }}"
|
||||
transport: cli
|
8
test/integration/group_vars/dellos6.yaml
Normal file
8
test/integration/group_vars/dellos6.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ ansible_host }}"
|
||||
username: "{{ dellos_cli_user | default('admin') }}"
|
||||
password: "{{ dellos_cli_pass | default('admin') }}"
|
||||
authorize: true
|
||||
auth_pass: "{{ dellos_cli_auth_pass | default('calvin') }}"
|
||||
transport: cli
|
8
test/integration/group_vars/dellos9.yaml
Normal file
8
test/integration/group_vars/dellos9.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ ansible_host }}"
|
||||
username: "{{ dellos9_cli_user | default('admin') }}"
|
||||
password: "{{ dellos9_cli_pass | default('admin') }}"
|
||||
authorize: true
|
||||
auth_pass: "{{ dellos9_cli_en_pass | default('calvin') }}"
|
||||
transport: cli
|
15
test/integration/group_vars/eos.yaml
Normal file
15
test/integration/group_vars/eos.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ ansible_host }}"
|
||||
username: "{{ eos_cli_user | default('admin') }}"
|
||||
password: "{{ eos_cli_pass | default('admin') }}"
|
||||
transport: cli
|
||||
authorize: yes
|
||||
|
||||
eapi:
|
||||
host: "{{ ansible_host }}"
|
||||
username: "{{ eos_eapi_user | default('admin') }}"
|
||||
password: "{{ eos_eapi_pass | default('admin') }}"
|
||||
transport: eapi
|
||||
use_ssl: no
|
||||
authorize: yes
|
6
test/integration/group_vars/ios.yaml
Normal file
6
test/integration/group_vars/ios.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ ios_cli_user | default('cisco') }}"
|
||||
password: "{{ ios_cli_pass | default('cisco') }}"
|
||||
transport: cli
|
6
test/integration/group_vars/iosxr.yaml
Normal file
6
test/integration/group_vars/iosxr.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ iosxr_cli_user | default('root') }}"
|
||||
password: "{{ iosxr_cli_pass | default('root') }}"
|
||||
transport: cli
|
12
test/integration/group_vars/junos.yaml
Normal file
12
test/integration/group_vars/junos.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
netconf:
|
||||
host: "{{ ansible_ssh_host }}"
|
||||
username: "{{ junos_cli_user | default('ansible') }}"
|
||||
password: "{{ junos_cli_pass | default('Ansible') }}"
|
||||
transport: netconf
|
||||
|
||||
cli:
|
||||
host: "{{ ansible_ssh_host }}"
|
||||
username: "{{ junos_cli_user | default('ansible') }}"
|
||||
password: "{{ junos_cli_pass | default('Ansible') }}"
|
||||
transport: cli
|
13
test/integration/group_vars/nxos.yaml
Normal file
13
test/integration/group_vars/nxos.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ nxos_cli_user | default('admin') }}"
|
||||
password: "{{ nxos_cli_pass | default('admin') }}"
|
||||
transport: cli
|
||||
|
||||
nxapi:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ nxos_nxapi_user | default('admin') }}"
|
||||
password: "{{ nxos_nxapi_pass | default('admin') }}"
|
||||
transport: nxapi
|
||||
use_ssl: no
|
6
test/integration/group_vars/vyos.yaml
Normal file
6
test/integration/group_vars/vyos.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
cli:
|
||||
host: "{{ ansible_ssh_host }}"
|
||||
username: vyos
|
||||
password: vyos
|
||||
transport: cli
|
Loading…
Add table
Add a link
Reference in a new issue