ansible/playbooks/groups/nuancier.yml

129 lines
3.2 KiB
YAML
Raw Normal View History

# create a new nuancier server
# NOTE: should be used with --limit most of the time
# NOTE: make sure there is room/space for this server on the vmhost
# NOTE: most of these vars_path come from group_vars/nuancier* or from hostvars
2017-10-15 19:54:19 +00:00
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=nuancier:nuancier-stg"
- name: make the box be real
hosts: nuancier:nuancier-stg
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
2014-01-06 18:22:18 +00:00
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- base
- rkhunter
- nagios_client
- hosts
- fas_client
- collectd/base
- sudo
- { role: openvpn/client,
when: env != "staging" }
- mod_wsgi
tasks:
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
- import_tasks: "{{ tasks_path }}/2fa_client.yml"
- import_tasks: "{{ tasks_path }}/motd.yml"
handlers:
2017-10-15 20:33:11 +00:00
- import_tasks: "{{ handlers_path }}/restart_services.yml"
- name: set up fedmsg
hosts: nuancier:nuancier-stg
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
2014-01-06 18:22:18 +00:00
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
2014-03-14 15:47:11 +00:00
- fedmsg/base
handlers:
2017-10-15 20:33:11 +00:00
- import_tasks: "{{ handlers_path }}/restart_services.yml"
- name: set up gluster on stg
hosts: nuancier-stg
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
2014-02-07 21:41:47 +00:00
roles:
- role: gluster/server
2014-02-07 21:48:53 +00:00
name: gluster
2014-02-07 21:42:33 +00:00
username: "{{ nuancier_gluster_username }}"
password: "{{ nuancier_gluster_password }}"
2014-02-07 21:41:47 +00:00
owner: root
group: root
datadir: /srv/glusterfs/nuancier-stg
2014-02-07 21:41:47 +00:00
- role: gluster/client
2014-02-07 21:48:53 +00:00
name: gluster
servers:
2014-02-07 21:41:47 +00:00
- nuancier01.stg.phx2.fedoraproject.org
- nuancier02.stg.phx2.fedoraproject.org
username: "{{ nuancier_gluster_username }}"
password: "{{ nuancier_gluster_password }}"
owner: apache
group: root
mountdir: /var/cache/nuancier
- name: set up gluster on prod
hosts: nuancier
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- role: gluster/server
name: gluster
username: "{{ nuancier_gluster_username }}"
password: "{{ nuancier_gluster_password }}"
owner: root
group: root
datadir: /srv/glusterfs/nuancier
- role: gluster/client
name: gluster
servers:
2014-02-26 08:46:32 +01:00
- nuancier01.phx2.fedoraproject.org
- nuancier02.phx2.fedoraproject.org
2014-02-07 21:42:33 +00:00
username: "{{ nuancier_gluster_username }}"
password: "{{ nuancier_gluster_password }}"
2014-02-07 21:41:47 +00:00
owner: apache
group: root
mountdir: /var/cache/nuancier
- name: deploy nuancier itself
hosts: nuancier:nuancier-stg
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- "{{ vars_path }}/{{ ansible_distribution }}.yml"
roles:
- nuancier
2013-09-20 18:09:04 +00:00
handlers:
2017-10-15 20:33:11 +00:00
- import_tasks: "{{ handlers_path }}/restart_services.yml"