-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add become, add vagrant tests, fix #1
- Loading branch information
Showing
15 changed files
with
346 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
tasks: | ||
- name: "Include ednxzu.deploy_adguard" | ||
ansible.builtin.include_role: | ||
name: "ednxzu.deploy_adguard" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
options: | ||
requirements-file: ./requirements.yml | ||
driver: | ||
name: vagrant | ||
provider: | ||
name: libvirt | ||
platforms: | ||
- name: instance | ||
box: generic/${MOLECULE_TEST_OS} | ||
cpus: 4 | ||
memory: 4096 | ||
provisioner: | ||
name: ansible | ||
config_options: | ||
defaults: | ||
remote_tmp: /tmp/.ansible | ||
verifier: | ||
name: ansible | ||
scenario: | ||
name: default_vagrant | ||
test_sequence: | ||
- dependency | ||
- cleanup | ||
- destroy | ||
- syntax | ||
- create | ||
- prepare | ||
- converge | ||
- idempotence | ||
- verify | ||
- cleanup | ||
- destroy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
# requirements file for molecule | ||
roles: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
gather_facts: true | ||
tasks: | ||
- name: "Test: directory /opt/adguard" | ||
block: | ||
- name: "Stat directory /opt/adguard" | ||
ansible.builtin.stat: | ||
path: "/opt/adguard" | ||
register: stat_opt_adguard | ||
|
||
- name: "Stat directory /opt/adguard/conf" | ||
ansible.builtin.stat: | ||
path: "/opt/adguard/conf" | ||
register: stat_opt_adguard_conf | ||
|
||
- name: "Stat directory /opt/adguard/data" | ||
ansible.builtin.stat: | ||
path: "/opt/adguard/data" | ||
register: stat_opt_adguard_data | ||
|
||
- name: "Verify directory /etc/consul.d" | ||
ansible.builtin.assert: | ||
that: | ||
- stat_opt_adguard.stat.exists | ||
- stat_opt_adguard.stat.isdir | ||
- stat_opt_adguard.stat.pw_name == 'root' | ||
- stat_opt_adguard.stat.gr_name == 'root' | ||
- stat_opt_adguard.stat.mode == '0755' | ||
- stat_opt_adguard_conf.stat.exists | ||
- stat_opt_adguard_conf.stat.isdir | ||
- stat_opt_adguard_conf.stat.pw_name == 'root' | ||
- stat_opt_adguard_conf.stat.gr_name == 'root' | ||
- stat_opt_adguard_conf.stat.mode == '0755' | ||
- stat_opt_adguard_data.stat.exists | ||
- stat_opt_adguard_data.stat.isdir | ||
- stat_opt_adguard_data.stat.pw_name == 'root' | ||
- stat_opt_adguard_data.stat.gr_name == 'root' | ||
- stat_opt_adguard_data.stat.mode == '0755' | ||
|
||
- name: "Test: service adguard" | ||
block: | ||
- name: "Get service adguard" | ||
ansible.builtin.service_facts: | ||
|
||
- name: "Stat file /etc/systemd/system/adguard.service" | ||
ansible.builtin.stat: | ||
path: "/etc/systemd/system/adguard.service" | ||
register: stat_etc_systemd_system_adguard_service | ||
|
||
- name: "Slurp file /etc/systemd/system/adguard.service" | ||
ansible.builtin.slurp: | ||
src: "/etc/systemd/system/adguard.service" | ||
register: slurp_etc_systemd_system_adguard_service | ||
become: true | ||
|
||
- name: "Verify service adguard" | ||
ansible.builtin.assert: | ||
that: | ||
- stat_etc_systemd_system_adguard_service.stat.exists | ||
- stat_etc_systemd_system_adguard_service.stat.isreg | ||
- stat_etc_systemd_system_adguard_service.stat.pw_name == 'root' | ||
- stat_etc_systemd_system_adguard_service.stat.gr_name == 'root' | ||
- stat_etc_systemd_system_adguard_service.stat.mode == '0644' | ||
- slurp_etc_systemd_system_adguard_service.content != '' | ||
- ansible_facts.services['adguard.service'] is defined | ||
- ansible_facts.services['adguard.service']['source'] == 'systemd' | ||
- ansible_facts.services['adguard.service']['state'] == 'stopped' | ||
- ansible_facts.services['adguard.service']['status'] == 'enabled' | ||
|
||
- name: "Test: file /opt/adguard/docker-compose.yml" | ||
block: | ||
- name: "Slurp file /opt/adguard/docker-compose.yml" | ||
ansible.builtin.slurp: | ||
src: "/opt/adguard/docker-compose.yml" | ||
register: slurp_opt_adguard_docker_compose_yml | ||
become: true | ||
|
||
|
||
- name: "Set fact for file content /opt/adguard/docker-compose.yml" | ||
ansible.builtin.set_fact: | ||
opt_adguard_docker_compose_yml_json: "{{ slurp_opt_adguard_docker_compose_yml.content | b64decode | from_yaml | to_json | from_json }}" | ||
|
||
- name: "Verify file /opt/adguard/docker-compose.yml" | ||
ansible.builtin.assert: | ||
that: | ||
- opt_adguard_docker_compose_yml_json['version'] is defined | ||
- opt_adguard_docker_compose_yml_json['version'] == '3.9' | ||
- opt_adguard_docker_compose_yml_json['services'] is defined | ||
- opt_adguard_docker_compose_yml_json['services']|length == 1 | ||
- opt_adguard_docker_compose_yml_json['services']['adguard'] is defined | ||
- opt_adguard_docker_compose_yml_json['services']['adguard']['image'] == 'adguard/adguardhome:latest' | ||
- opt_adguard_docker_compose_yml_json['networks'] is defined | ||
- opt_adguard_docker_compose_yml_json['networks']|length == 1 | ||
- opt_adguard_docker_compose_yml_json['volumes'] is defined | ||
- opt_adguard_docker_compose_yml_json['volumes']|length == 2 | ||
- opt_adguard_docker_compose_yml_json['volumes']['conf'] is defined | ||
- opt_adguard_docker_compose_yml_json['volumes']['data'] is defined | ||
- opt_adguard_docker_compose_yml_json['secrets'] is not defined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
tasks: | ||
- name: "Include ednxzu.deploy_adguard" | ||
ansible.builtin.include_role: | ||
name: "ednxzu.deploy_adguard" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
# defaults file for deploy_adguard | ||
deploy_adguard_directory: /opt/adguard | ||
deploy_adguard_timezone: "Europe/Paris" | ||
deploy_adguard_enable_admin_interface: true | ||
deploy_adguard_enable_dhcp: false | ||
deploy_adguard_enable_doh: true | ||
deploy_adguard_enable_dot: false | ||
deploy_adguard_enable_doq: false | ||
deploy_adguard_enable_dnscrypt: false | ||
deploy_adguard_start_service: false | ||
deploy_adguard_virtual_ip: | ||
enable: true | ||
interface: eth0 | ||
vip_addr: "192.168.1.53" | ||
deploy_adguard_node_exporter: | ||
enable: true | ||
protocol: http | ||
port: 80 | ||
username: admin | ||
password: password | ||
exporter_port: 9617 | ||
interval: 10s | ||
log_limit: 10000 | ||
deploy_adguard_consul: | ||
enable: false | ||
consul_addr: http://127.0.0.1:8500 | ||
consul_token: someUUIDhere | ||
configuration: | ||
service: | ||
name: adguard | ||
address: "{{ ansible_default_ipv4.address }}" | ||
port: 80 | ||
tags: [] | ||
connect: | ||
sidecar_service: {} | ||
deploy_adguard_config: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
options: | ||
requirements-file: ./requirements.yml | ||
driver: | ||
name: vagrant | ||
provider: | ||
name: libvirt | ||
platforms: | ||
- name: instance | ||
box: generic/${MOLECULE_TEST_OS} | ||
cpus: 4 | ||
memory: 4096 | ||
provisioner: | ||
name: ansible | ||
config_options: | ||
defaults: | ||
remote_tmp: /tmp/.ansible | ||
verifier: | ||
name: ansible | ||
scenario: | ||
name: with_extra_sidecars_vagrant | ||
test_sequence: | ||
- dependency | ||
- cleanup | ||
- destroy | ||
- syntax | ||
- create | ||
- prepare | ||
- converge | ||
- idempotence | ||
- verify | ||
- cleanup | ||
- destroy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
# requirements file for molecule | ||
roles: [] |
Oops, something went wrong.