Fix ansible-lint errors

This commit is contained in:
Tobias Reisinger 2025-06-24 19:10:07 +02:00
parent 503bd8b396
commit b098704e23
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
10 changed files with 21 additions and 26 deletions
templates/new_role
handlers
tasks
vars

View file

@ -0,0 +1,3 @@
---
- name: Restart service {{ role_name }}
ansible.builtin.include_tasks: tasks/restart-service.yml

View file

@ -0,0 +1,12 @@
---
- name: Set common facts
ansible.builtin.import_tasks: tasks/set-default-facts.yml
- name: Deploy {{ role_name }}
vars:
svc: "{{ NAME_svc }}"
env: "{{ NAME_env }}"
compose: "{{ NAME_compose }}"
block:
- name: Import tasks to deploy common service
ansible.builtin.import_tasks: tasks/deploy-common-service.yml

View file

@ -0,0 +1,16 @@
---
NAME_svc:
domain: "{{ all_services | service_get_domain(role_name) }}"
port: 80
NAME_env:
EXAMPLE: value
NAME_compose:
watchtower: update
image:
volumes:
- data:/data
file:
volumes:
data: