--- - name: Set common facts ansible.builtin.import_tasks: tasks/set-default-facts.yml - name: Deploy {{ svc.name }} vars: svc: "{{ healthcheck_svc }}" env: "{{ healthcheck_env }}" compose: "{{ healthcheck_compose }}" block: - name: Import tasks to create service directory ansible.builtin.import_tasks: tasks/steps/create-service-directory.yml - name: Copy the docker-compose file ansible.builtin.copy: src: docker-compose.yml dest: "{{ (service_path, 'docker-compose.yml') | path_join }}" mode: "0644" - name: Copy the Dockerfile ansible.builtin.copy: src: Dockerfile dest: "{{ (service_path, 'Dockerfile') | path_join }}" mode: "0644" - name: Copy the data files ansible.builtin.copy: src: data dest: "{{ service_path }}" mode: "0755" - name: Template the system service ansible.builtin.template: src: healthcheck@.service.j2 dest: /etc/systemd/system/healthcheck@.service mode: "0644" become: true - name: Copy the system timer ansible.builtin.copy: src: healthcheck@.timer dest: /etc/systemd/system/healthcheck@.timer mode: "0644" become: true - name: Enable the system timer ansible.builtin.systemd_service: name: healthcheck@{{ item }}.timer state: started enabled: true daemon_reload: true loop: "{{ healthcheck_svc.checks }}" become: true - name: Import tasks create a service.env file ansible.builtin.import_tasks: tasks/steps/template-service-env.yml - name: Build service ansible.builtin.command: cmd: docker compose build --pull chdir: "{{ service_path }}" when: - "'local-dev' != inventory_hostname" register: cmd_result changed_when: true