22 lines
446 B
YAML
22 lines
446 B
YAML
---
|
|
- name: "Deploy services"
|
|
hosts: asgard
|
|
|
|
vars:
|
|
versions:
|
|
database:
|
|
postgres: "15.0"
|
|
cloud:
|
|
nextcloud: "25-fpm"
|
|
git:
|
|
gitea: "1"
|
|
notes:
|
|
joplin: "2.9-beta"
|
|
|
|
tasks:
|
|
- import_tasks: tasks/services/c-deploy/00-hosts.yml
|
|
- include_tasks: tasks/services/c-deploy/01-service-deploy.yml
|
|
with_items: "{{ host_services }}"
|
|
loop_control:
|
|
loop_var: service_name
|