Files
@ fb5e4e372902
Branch filter:
Location: majic-ansible-roles/roles/backup/molecule/default/playbook.yml - annotation
fb5e4e372902
1.5 KiB
text/x-yaml
MAR-128: Upgraded tests for mail_forwarder role:
- Switch to new Molecule configuration.
- Updated set-up playbook to use become: yes.
- Moved some preparatory steps outside of the main playbook (eases
idempotence tests).
- Updated tests to reference the yml inventory file.
- Updated tests to use new fixture (host instead of individual ones).
- Switched to extracting hostname instead of hard-coding it in a
couple of tests.
- Fixed some linting issues.
- Rearranged IP addresses for test instances a bit.
- Expanded on available hosts for testing all OS/paramter
combinations.
- Switched to using a more resilient way to populate /etc/hosts during
prepartion phase.
- Expanded connectivity tests to include all the introduced hosts.
- Switch to new Molecule configuration.
- Updated set-up playbook to use become: yes.
- Moved some preparatory steps outside of the main playbook (eases
idempotence tests).
- Updated tests to reference the yml inventory file.
- Updated tests to use new fixture (host instead of individual ones).
- Switched to extracting hostname instead of hard-coding it in a
couple of tests.
- Fixed some linting issues.
- Rearranged IP addresses for test instances a bit.
- Expanded on available hosts for testing all OS/paramter
combinations.
- Switched to using a more resilient way to populate /etc/hosts during
prepartion phase.
- Expanded connectivity tests to include all the introduced hosts.
6354365357f2 6354365357f2 6354365357f2 d0293eece376 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 d0293eece376 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 6354365357f2 | ---
- hosts: parameters-mandatory
become: yes
roles:
- role: backup
backup_patterns_filename: "test"
vars:
# Required for backup_client role which is part of meta dependencies.
backup_encryption_key: "{{ lookup('file', 'tests/data/gnupg/parameters-mandatory.asc') }}"
backup_server: 10.31.127.10
backup_server_host_ssh_public_keys:
- "{{ lookup('file', 'tests/data/ssh/server_dsa.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_rsa.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_ed25519.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_ecdsa.pub') }}"
backup_ssh_key: "{{ lookup('file', 'tests/data/ssh/parameters-mandatory' ) }}"
- hosts: parameters-optional
become: yes
roles:
- role: backup
backup_patterns_filename: "test"
backup_patterns:
- /etc/hosts
- /etc/ethers
- /var/log
vars:
# Required for backup_client role which is part of meta dependencies.
backup_encryption_key: "{{ lookup('file', 'tests/data/gnupg/parameters-optional.asc') }}"
backup_server: 10.31.127.10
backup_server_host_ssh_public_keys:
- "{{ lookup('file', 'tests/data/ssh/server_dsa.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_rsa.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_ed25519.pub') }}"
- "{{ lookup('file', 'tests/data/ssh/server_ecdsa.pub') }}"
backup_ssh_key: "{{ lookup('file', 'tests/data/ssh/parameters-mandatory' ) }}"
|