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/post_deploy.yml

25 lines
613 B
YAML
Raw Normal View History

2020-04-13 08:26:14 +00:00
---
2020-04-13 10:49:14 +00:00
- hosts: all
gather_facts: false
tasks:
2020-04-13 17:07:28 +00:00
- name: Include prepare tasks
include: ./lib/prepare.yml
2020-04-13 13:06:18 +00:00
- name: Include vars tasks
include: ./lib/vars.yml
2020-04-13 13:02:55 +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
2020-04-13 11:57:12 +00:00
- name: Include debug tasks
include: ./lib/debug.yml
2020-04-13 17:03:43 +00:00
when: debug is defined
2020-04-13 13:02:55 +00:00
- name: Include http tasks
include: ./lib/http.yml
- name: Include https tasks
include: ./lib/https.yml
2020-04-13 13:19:06 +00:00
- name: Include proxy tasks
include: ./lib/proxy.yml