Files
@ e0dc1c1cfaa8
Branch filter:
Location: majic-ansible-roles/roles/mail_server/molecule/default/molecule.yml
e0dc1c1cfaa8
3.6 KiB
text/x-yaml
MAR-189: Added support for Debian 11 Bullseye to mail_server role:
- Shorten the backup client username so it would be under 32
characters.
- Switch all helper VMs to using the Debian 11 Bullseye as well.
- Drop the architecture suffix from hostnames.
- Update the hostname for client VMs.
- Fix the incorrect format for the message ID used in various mail
delivery tests.
- Shorten the backup client username so it would be under 32
characters.
- Switch all helper VMs to using the Debian 11 Bullseye as well.
- Drop the architecture suffix from hostnames.
- Update the hostname for client VMs.
- Fix the incorrect format for the message ID used in various mail
delivery tests.
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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | ---
dependency: {}
driver:
name: vagrant
safe_files:
# Preserve the ClamAV database files from previous runs on the
# clamav-database helper machine. Meant to avoid hitting hard
# limits for database downloads and getting completely blocked.
- "*/clamav-database/*"
provider:
name: virtualbox
lint:
name: yamllint
options:
config-file: ../../.yamllint.yml
platforms:
# Helpers
# =======
- name: clamav-database
box: debian/bullseye64
memory: 512
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.11
network_name: private_network
type: static
config_options:
synced_folder: true
- name: ldap-server
box: debian/bullseye64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.12
network_name: private_network
type: static
# Debian 10 Buster
# ================
- name: client1-buster
groups:
- client
- client-relay-allowed
- buster
- smtp-server-requiring-tls
box: debian/contrib-buster64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.21
network_name: private_network
type: static
- name: client2-buster
groups:
- client
- client-relay-forbidden
- buster
- smtp-server-refusing-tls
box: debian/contrib-buster64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.22
network_name: private_network
type: static
- name: parameters-mandatory-buster
groups:
- parameters-mandatory
- buster
box: debian/contrib-buster64
memory: 2048
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.31
network_name: private_network
type: static
- name: parameters-optional-buster
groups:
- parameters-optional
- buster
box: debian/contrib-buster64
memory: 2048
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.32
network_name: private_network
type: static
# Debian 11 Bullseye
# ================
- name: client1-bullseye
groups:
- client
- client-relay-allowed
- bullseye
- smtp-server-requiring-tls
box: debian/bullseye64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.41
network_name: private_network
type: static
- name: client2-bullseye
groups:
- client
- client-relay-forbidden
- bullseye
- smtp-server-refusing-tls
box: debian/bullseye64
memory: 256
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.42
network_name: private_network
type: static
- name: parameters-mandatory-bullseye
groups:
- parameters-mandatory
- bullseye
box: debian/bullseye64
memory: 2048
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.51
network_name: private_network
type: static
- name: parameters-optional-bullseye
groups:
- parameters-optional
- bullseye
box: debian/bullseye64
memory: 2048
cpus: 1
interfaces:
- auto_config: true
ip: 192.168.56.52
network_name: private_network
type: static
provisioner:
name: ansible
playbooks:
cleanup: cleanup.yml
config_options:
defaults:
force_valid_group_names: "ignore"
interpreter_python: "/usr/bin/python3"
ssh_connection:
pipelining: "True"
lint:
name: ansible-lint
scenario:
name: default
verifier:
name: testinfra
lint:
name: flake8
|