46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
- name: check/create instance
|
|
hosts: grafana.cloud.fedoraproject.org
|
|
gather_facts: False
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- /srv/private/ansible/vars.yml
|
|
- /srv/web/infra/ansible/vars/fedora-cloud.yml
|
|
- /srv/private/ansible/files/openstack/passwords.yml
|
|
|
|
tasks:
|
|
- include: "{{ tasks_path }}/persistent_cloud.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
- name: setup all the things
|
|
hosts: grafana.cloud.fedoraproject.org
|
|
gather_facts: True
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- /srv/private/ansible/vars.yml
|
|
- /srv/private/ansible/files/openstack/passwords.yml
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
roles:
|
|
- base
|
|
- rkhunter
|
|
- mod_wsgi
|
|
#- graphite/graphite
|
|
#- graphite/statsd
|
|
#- graphite/fedmsg2statsd
|
|
- graphite/grafana
|
|
|
|
tasks:
|
|
- include: "{{ tasks_path }}/yumrepos.yml"
|
|
#- include: "{{ tasks_path }}/2fa_client.yml"
|
|
- include: "{{ tasks_path }}/motd.yml"
|
|
|
|
handlers:
|
|
- include: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
pre_tasks:
|
|
- include: "{{ tasks_path }}/cloud_setup_basic.yml"
|
|
- name: set hostname (required by some services, at least postfix need it)
|
|
hostname: name="{{inventory_hostname}}"
|