20 lines
415 B
YAML
20 lines
415 B
YAML
---
|
|
- name: "Deploy services"
|
|
hosts: the_nine_worlds
|
|
|
|
vars:
|
|
versions:
|
|
database:
|
|
postgres: "15.0"
|
|
cloud:
|
|
nextcloud: "25-fpm"
|
|
git:
|
|
gitea: "1"
|
|
|
|
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
|