23 lines
498 B
YAML
Raw Normal View History

2022-10-08 18:15:53 +02:00
---
# tasks file for server
# include task db
- name: Deploy database postgresql and redis
ansible.builtin.import_tasks: deploy-db.yml
2022-10-10 23:15:28 +02:00
tags: ["create-db", "deploy-db"]
2022-10-08 18:15:53 +02:00
- name: Start db postgresql and redis
ansible.builtin.import_tasks: start-db.yml
2022-10-10 23:15:28 +02:00
tags: ["deploy-db", "start-db"]
2022-10-08 18:15:53 +02:00
- name: stop db postgresql and redis
ansible.builtin.import_tasks: stop-db.yml
2022-10-10 23:15:28 +02:00
tags: ["destroy-db", "stop-db"]
2022-10-08 18:15:53 +02:00
- name: Remove db
ansible.builtin.import_tasks: remove-db.yml
2022-10-10 23:15:28 +02:00
tags: ["destroy-db"]