Files
@ 2381ba93d089
Branch filter:
Location: majic-ansible-roles/roles/mail_server/molecule/default/molecule.yml
2381ba93d089
2.8 KiB
text/x-yaml
MAR-148: Better workaround for https://github.com/ansible/ansible/issues/64560 (override the module_utils/mysql.py instead of the module itself).
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | ---
dependency: {}
driver:
name: vagrant
provider:
name: virtualbox
lint:
name: yamllint
options:
config-file: ../../.yamllint.yml
platforms:
- name: ldap-server
box: debian/contrib-jessie64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.10
network_name: private_network
type: static
- name: client1-jessie
groups:
- client
- client-relay-allowed
- jessie
box: debian/contrib-jessie64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.20
network_name: private_network
type: static
- name: client2-jessie
groups:
- client
- client-relay-forbidden
- jessie
box: debian/contrib-jessie64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.21
network_name: private_network
type: static
- name: client1-stretch
groups:
- client
- client-relay-allowed
- stretch
box: debian/contrib-stretch64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.22
network_name: private_network
type: static
- name: client2-stretch
groups:
- client
- client-relay-forbidden
- stretch
box: debian/contrib-stretch64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.23
network_name: private_network
type: static
- name: parameters-mandatory-jessie64
groups:
- parameters-mandatory
- jessie
box: debian/contrib-jessie64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.30
network_name: private_network
type: static
- name: parameters-optional-jessie64
groups:
- parameters-optional
- jessie
box: debian/contrib-jessie64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.31
network_name: private_network
type: static
- name: parameters-mandatory-stretch64
groups:
- parameters-mandatory
- stretch
box: debian/contrib-stretch64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.32
network_name: private_network
type: static
- name: parameters-optional-stretch64
groups:
- parameters-optional
- stretch
box: debian/contrib-stretch64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 10.31.127.33
network_name: private_network
type: static
provisioner:
name: ansible
config_options:
defaults:
force_valid_group_names: "ignore"
ssh_connection:
pipelining: "True"
lint:
name: ansible-lint
scenario:
name: default
verifier:
name: testinfra
lint:
name: flake8
|