{"id":708,"sha1":"f066babce1e6046c7237a34fc0e8eeafa69970db","playbook":{"id":4,"items":{"plays":32,"tasks":1505,"results":1497,"hosts":12,"files":487,"records":0},"arguments":{"version":null,"verbosity":0,"private_key_file":null,"remote_user":null,"connection":"openstack.osa.ssh","timeout":null,"ssh_common_args":null,"sftp_extra_args":null,"scp_extra_args":null,"ssh_extra_args":null,"ask_pass":false,"connection_password_file":null,"force_handlers":true,"flush_cache":false,"become":false,"become_method":"sudo","become_user":null,"become_ask_pass":false,"become_password_file":null,"tags":["all"],"skip_tags":[],"check":false,"diff":false,"inventory":["/home/zuul/src/opendev.org/openstack/openstack-ansible/inventory/dynamic_inventory.py","/home/zuul/src/opendev.org/openstack/openstack-ansible/inventory/inventory.ini","/etc/openstack_deploy/inventory.ini"],"listhosts":false,"subset":null,"extra_vars":"Not saved by ARA as configured by 'ignored_arguments'","vault_ids":[],"ask_vault_pass":false,"vault_password_files":[],"forks":4,"module_path":null,"syntax":false,"listtasks":false,"listtags":false,"step":false,"start_at_task":null,"args":["setup-openstack.yml"]},"labels":[{"id":1,"name":"check:False"},{"id":2,"name":"tags:all"}],"started":"2025-12-08T13:57:07.871967Z","ended":"2025-12-08T14:21:54.049657Z","duration":"00:24:46.177690","name":null,"ansible_version":"2.18.6","client_version":"1.7.4","python_version":"3.12.11","server_version":"1.7.4","status":"failed","path":"/home/zuul/src/opendev.org/openstack/openstack-ansible/playbooks/setup-openstack.yml","controller":"aio1.openstack.local","user":"root"},"content":"---\n- name: Include check_running_cluster.yml\n  ansible.builtin.include_tasks: check_running_cluster.yml\n\n# We do not want to run these checks on initial deployment (`socket.rc == 0`)\n- name: Set_fact handler_mon_status\n  ansible.builtin.set_fact:\n    handler_mon_status: \"{{ 0 in (mon_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_mon_container_stat.get('rc') == 0 and ceph_mon_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(mon_group_name, [])\n\n- name: Set_fact handler_osd_status\n  ansible.builtin.set_fact:\n    handler_osd_status: \"{{ 0 in (osd_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_osd_container_stat.get('rc') == 0 and ceph_osd_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(osd_group_name, [])\n\n- name: Set_fact handler_mds_status\n  ansible.builtin.set_fact:\n    handler_mds_status: \"{{ 0 in (mds_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_mds_container_stat.get('rc') == 0 and ceph_mds_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(mds_group_name, [])\n\n- name: Set_fact handler_rgw_status\n  ansible.builtin.set_fact:\n    handler_rgw_status: \"{{ 0 in (rgw_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_rgw_container_stat.get('rc') == 0 and ceph_rgw_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(rgw_group_name, [])\n\n- name: Set_fact handler_nfs_status\n  ansible.builtin.set_fact:\n    handler_nfs_status: \"{{ (nfs_process.get('rc') == 0) if not containerized_deployment | bool else (ceph_nfs_container_stat.get('rc') == 0 and ceph_nfs_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(nfs_group_name, [])\n\n- name: Set_fact handler_rbd_status\n  ansible.builtin.set_fact:\n    handler_rbd_mirror_status: \"{{ 0 in (rbd_mirror_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_rbd_mirror_container_stat.get('rc') == 0 and ceph_rbd_mirror_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(rbdmirror_group_name, [])\n\n- name: Set_fact handler_mgr_status\n  ansible.builtin.set_fact:\n    handler_mgr_status: \"{{ 0 in (mgr_socket.results | map(attribute='rc') | list) if not containerized_deployment | bool else (ceph_mgr_container_stat.get('rc') == 0 and ceph_mgr_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when: inventory_hostname in groups.get(mgr_group_name, [])\n\n- name: Set_fact handler_crash_status\n  ansible.builtin.set_fact:\n    handler_crash_status: \"{{ crash_process.get('rc') == 0 if not containerized_deployment | bool else (ceph_crash_container_stat.get('rc') == 0 and ceph_crash_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when:\n    - inventory_hostname in groups.get(mon_group_name, [])\n      or inventory_hostname in groups.get(mgr_group_name, [])\n      or inventory_hostname in groups.get(osd_group_name, [])\n      or inventory_hostname in groups.get(mds_group_name, [])\n      or inventory_hostname in groups.get(rgw_group_name, [])\n      or inventory_hostname in groups.get(rbdmirror_group_name, [])\n\n- name: Set_fact handler_exporter_status\n  ansible.builtin.set_fact:\n    handler_exporter_status: \"{{ exporter_process.get('rc') == 0 if not containerized_deployment | bool else (ceph_exporter_container_stat.get('rc') == 0 and ceph_exporter_container_stat.get('stdout_lines', []) | length != 0) }}\"\n  when:\n    - inventory_hostname in groups.get(mon_group_name, [])\n      or inventory_hostname in groups.get(mgr_group_name, [])\n      or inventory_hostname in groups.get(osd_group_name, [])\n      or inventory_hostname in groups.get(mds_group_name, [])\n      or inventory_hostname in groups.get(rgw_group_name, [])\n      or inventory_hostname in groups.get(rbdmirror_group_name, [])\n","created":"2025-12-08T13:57:22.297032Z","updated":"2025-12-08T13:57:22.297044Z","path":"/etc/ansible/roles/ceph-ansible/roles/ceph-handler/tasks/main.yml"}