diff --git a/playbooks/groups/undercloud.yml b/playbooks/groups/undercloud.yml deleted file mode 100644 index d709159c14..0000000000 --- a/playbooks/groups/undercloud.yml +++ /dev/null @@ -1,61 +0,0 @@ ---- -# create a new taskotron dev server -# NOTE: make sure there is room/space for this server on the vmhost -# NOTE: most of these vars_path come from group_vars/mirrorlist or from hostvars - -- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=ci-cc-rdu01.fedoraproject.org" - -- name: make the box be real - hosts: ci - 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: base, tags: ['base'] } - - { role: rkhunter, tags: ['rkhunter'] } - - { role: nagios_client, tags: ['nagios_client'] } - - { role: hosts, tags: ['hosts']} - - { role: fas_client, tags: ['fas_client'] } - - { role: collectd/base, tags: ['collectd_base'] } - - { role: dnf-automatic, tags: ['dnfautomatic'] } - - { role: sudo, tags: ['sudo'] } - - { role: openvpn/client, - when: deployment_type == "prod", tags: ['openvpn_client'] } - - postgresql_server - - apache - - pre_tasks: - - import_tasks: "{{ tasks_path }}/yumrepos.yml" - - - tasks: - # this is how you include other task lists - - import_tasks: "{{ tasks_path }}/2fa_client.yml" - - import_tasks: "{{ tasks_path }}/motd.yml" - - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml" - -- name: configure resultsdb production - hosts: ci - 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: taskotron/resultsdb-backend, tags: ['resultsdb-be'] } - - { role: taskotron/resultsdb-frontend, tags: ['resultsdb-fe'] } - - { role: taskotron/execdb, tags: ['execdb'] } - - { role: ci_resultsdb, tags: ['ci_resultsdb'] } - - handlers: - - import_tasks: "{{ handlers_path }}/restart_services.yml"