Group plays to hooks

This commit is contained in:
Luke Murphy
2020-04-14 11:30:40 +02:00
parent 0079925738
commit c099827d88
16 changed files with 63 additions and 63 deletions

View File

@ -0,0 +1,36 @@
---
- name: Set database facts
set_fact:
mount_map:
mariadb: /var/lib/mysql
when: db is defined
- name: "Create {{ item.type }} database"
no_log: true
shell: "
dokku
{{ item.type }}:create
{{ app }}
--password {{ item.passwd }}
--root-password {{ item.root_passwd }}
"
args:
creates: "/var/lib/dokku/services/{{ item.type }}/{{ app }}"
with_items: "{{ db }}"
when: db is defined
- name: "Link {{ item.type }} database to application"
dokku_service_link:
app: "{{ app }}"
name: "{{ app }}"
service: "{{ item.type }}"
with_items: "{{ db }}"
when: db is defined
- name: "Specify {{ item.type }} volume mounts"
dokku_storage:
app: "{{ app }}"
mounts:
- "/var/lib/dokku/services/{{ item.type }}/{{ app }}:{{ mount_map[item.type] }}"
with_items: "{{ db }}"
when: db is defined

View File

@ -0,0 +1,8 @@
---
- name: "Configure {{ domain }} dedicated domain"
dokku_domains:
app: "{{ app }}"
domains:
- "{{ domain }}"
state: present
when: domain is defined

View File

@ -0,0 +1,7 @@
---
- name: Configure the app environment
dokku_config:
app: "{{ app }}"
restart: false
config: "{{ env }}"
when: env is defined

View File

@ -0,0 +1,17 @@
---
- name: Create volume mount directories
become: true
file:
path: "{{ item }}"
state: directory
owner: dokku
group: dokku
with_items: "{{ mounts }}"
when: mounts is defined
- name: Attach volume mounts
dokku_storage:
app: "{{ app }}"
mounts: "{{ item }}"
with_items: "{{ mounts }}"
when: mounts is defined

View File

@ -0,0 +1,9 @@
---
- hosts: all
gather_facts: false
tasks:
- include: ../commonlib/vars.yml
- include: ./lib/domain.yml
- include: ./lib/database.yml
- include: ./lib/volumes.yml
- include: ./lib/env.yml