120 lines
3.4 KiB
YAML
120 lines
3.4 KiB
YAML
- name: push packages out to frontend
|
|
hosts: odcs_frontend:odcs_frontend_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
vars:
|
|
testing: False
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- name: clean all metadata
|
|
command: dnf clean all
|
|
check_mode: no
|
|
- name: update odcs and pungi packages from main repo
|
|
package: name={{item}} state=latest
|
|
when: not testing
|
|
with_items:
|
|
- odcs
|
|
- pungi
|
|
- libmodulemd
|
|
|
|
- name: push packages out to backend
|
|
hosts: odcs_backend:odcs_backend_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
vars:
|
|
testing: False
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- name: clean all metadata
|
|
command: dnf clean all
|
|
check_mode: no
|
|
- name: update odcs and pungi packages from main repo
|
|
package: name={{item}} state=latest
|
|
when: not testing
|
|
with_items:
|
|
- odcs
|
|
- odcs-client
|
|
- pungi
|
|
- libmodulemd
|
|
|
|
- name: verify the frontend and stop it
|
|
hosts: odcs_frontend:odcs_frontend_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
pre_tasks:
|
|
- name: tell nagios to shush w.r.t. the frontend
|
|
nagios: action=downtime minutes=15 service=host host={{ inventory_hostname_short }}{{ env_suffix }}
|
|
delegate_to: noc01.iad2.fedoraproject.org
|
|
ignore_errors: true
|
|
|
|
roles:
|
|
- odcs/base
|
|
- odcs/frontend
|
|
|
|
post_tasks:
|
|
- service: name="httpd" state=stopped
|
|
- service: name="odcs-celery-beat" state=stopped
|
|
|
|
- name: verify the backend, stop it, and then upgrade the db
|
|
hosts: odcs_backend:odcs_backend_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
vars:
|
|
odcs_migrate_db: True
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
pre_tasks:
|
|
- name: tell nagios to shush w.r.t. the backend
|
|
nagios: action=downtime minutes=15 service=host host={{ inventory_hostname_short }}{{ env_suffix }}
|
|
delegate_to: noc01.iad2.fedoraproject.org
|
|
ignore_errors: true
|
|
|
|
roles:
|
|
- odcs/base
|
|
- odcs/backend
|
|
|
|
post_tasks:
|
|
- name: tell nagios to unshush w.r.t. the backend
|
|
nagios: action=unsilence service=host host={{ inventory_hostname_short }}{{ env_suffix }}
|
|
delegate_to: noc01.iad2.fedoraproject.org
|
|
ignore_errors: true
|
|
|
|
- name: restart the frontend
|
|
hosts: odcs_frontend:odcs_frontend_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- service: name="httpd" state=started
|
|
- service: name="odcs-celery-beat" state=started
|
|
|
|
post_tasks:
|
|
- name: tell nagios to unshush w.r.t. the frontend
|
|
nagios: action=unsilence service=host host={{ inventory_hostname_short }}{{ env_suffix }}
|
|
delegate_to: noc01.iad2.fedoraproject.org
|
|
ignore_errors: true
|