This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/plays/pre_deploy.yml

30 lines
758 B
YAML
Raw Normal View History

2020-04-13 09:42:33 +00:00
---
- hosts: all
gather_facts: false
tasks:
2020-04-13 13:02:55 +00:00
- name: Include prepare tasks
include: ./lib/prepare.yml
- name: Include vars tasks
include: ./lib/vars.yml
2020-04-13 13:06:18 +00:00
# Note(decentral1se): internal debugging. Please `debug: true` in the
# /var/lib/dokku/data/deploy.d/vars.yml file to activate a debug vars dump
- name: Include debug tasks
include: ./lib/debug.yml
2020-04-13 17:03:43 +00:00
when: debug is defined
2020-04-13 13:06:18 +00:00
2020-04-13 13:02:55 +00:00
- name: Include domain tasks
include: ./lib/domain.yml
- name: Include database tasks
include: ./lib/database.yml store={{ item }}
2020-04-13 13:57:35 +00:00
with_items: "{{ db }}"
when: db is defined
2020-04-13 13:02:55 +00:00
2020-04-14 09:07:24 +00:00
- name: Include volume tasks
include: ./lib/volumes.yml
2020-04-13 13:02:55 +00:00
- name: Include env tasks
include: ./lib/env.yml