Files
@ 72c8481f0498
Branch filter:
Location: majic-ansible-roles/roles/xmpp_server/molecule/default/molecule.yml
72c8481f0498
1.9 KiB
text/x-yaml
MAR-233: Add IPv6 connectivity tests for the xmpp_server role.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | ---
dependency:
name: galaxy
enabled: false
driver:
name: vagrant
provider:
name: virtualbox
platforms:
# Helpers
# =======
- name: ldap-server
box: debian/bookworm64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.11
network_name: private_network
type: static
# Debian 12 Bookworm
# ==================
- name: client-bookworm
groups:
- clients
- bookworm
box: debian/bookworm64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.21
network_name: private_network
type: static
- auto_config: true
ip: fd00::192:168:56:21
network_name: private_network
netmask: 116
type: static
- name: parameters-mandatory-bookworm
groups:
- parameters-mandatory
- bookworm
box: debian/bookworm64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.31
network_name: private_network
type: static
- auto_config: true
ip: fd00::192:168:56:31
network_name: private_network
netmask: 116
type: static
- name: parameters-optional-bookworm
groups:
- parameters-optional
- bookworm
box: debian/bookworm64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.32
network_name: private_network
type: static
- auto_config: true
ip: fd00::192:168:56:32
network_name: private_network
netmask: 116
type: static
provisioner:
name: ansible
playbooks:
cleanup: cleanup.yml
config_options:
defaults:
force_valid_group_names: "ignore"
interpreter_python: "/usr/bin/python3"
force_handlers: "True"
ssh_connection:
pipelining: "True"
scenario:
name: default
verifier:
name: testinfra
options:
color: "yes"
|