Files
fedora-infra_ansible/playbooks/groups/copr-keygen.yml
2018-08-27 09:06:27 +00:00

48 lines
1.3 KiB
YAML

- name: check/create instance
hosts: copr-keygen-dev:copr-keygen-stg:copr-keygen
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:
- import_tasks: "{{ tasks_path }}/persistent_cloud.yml"
- name: gather facts
setup:
check_mode: no
ignore_errors: True
register: facts
- name: install python2 and dnf stuff
raw: dnf -y install python-dnf libselinux-python yum
when: facts is failed
- name: cloud basic setup
hosts: copr-keygen-dev:copr-keygen-stg:copr-keygen
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
tasks:
- import_tasks: "{{ tasks_path }}/cloud_setup_basic.yml"
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
- name: set hostname (required by some services, at least postfix need it)
hostname: name="{{copr_hostbase}}.cloud.fedoraproject.org"
- name: provision instance
hosts: copr-keygen-dev:copr-keygen-stg:copr-keygen
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:
- base
- copr/keygen
- nagios_client