41 lines
961 B
YAML
41 lines
961 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Load variables
|
||
|
include_vars:
|
||
|
dir: "{{ dokku_lib_root }}/data/ansible/alerta/vars/"
|
||
|
extensions:
|
||
|
- yml
|
||
|
|
||
|
- name: Set HTTP 80 port proxy
|
||
|
dokku_ports:
|
||
|
app: alerta
|
||
|
mappings:
|
||
|
- "http:80:{{ http_port }}"
|
||
|
state: present
|
||
|
|
||
|
- name: Setup LE certificates
|
||
|
shell: dokku letsencrypt alerta
|
||
|
args:
|
||
|
creates: /home/dokku/alerta/letsencrypt/certs
|
||
|
|
||
|
- name: Setup LE certificates renew cron job
|
||
|
shell: dokku letsencrypt:cron-job --add
|
||
|
args:
|
||
|
creates: /home/dokku/alerta/letsencrypt/cron-job
|
||
|
|
||
|
- name: Remove automatically configured ports
|
||
|
dokku_ports:
|
||
|
app: alerta
|
||
|
mappings:
|
||
|
- "http:8080:8080"
|
||
|
state: absent
|
||
|
|
||
|
- name: Set HTTP 443 port
|
||
|
dokku_ports:
|
||
|
app: alerta
|
||
|
mappings:
|
||
|
- "https:443:{{ http_port }}"
|
||
|
state: present
|