Back to bug 1792320
| Who | When | What | Removed | Added |
|---|---|---|---|---|
| Yuri Obshansky | 2020-01-17 14:29:53 UTC | CC | yobshans | |
| Guillaume Abrioux | 2020-01-17 14:52:20 UTC | Status | NEW | ASSIGNED |
| Guillaume Abrioux | 2020-01-17 14:53:24 UTC | Target Release | 5.* | 4.0 |
| Vasishta | 2020-01-21 05:25:56 UTC | Severity | unspecified | medium |
| Guillaume Abrioux | 2020-01-22 16:59:56 UTC | CC | vashastr | |
| Guillaume Abrioux | 2020-01-22 17:32:40 UTC | Status | ASSIGNED | POST |
| Tejas | 2020-01-22 17:58:50 UTC | CC | tchandra | |
| Ken Dreyer (Red Hat) | 2020-01-23 00:33:30 UTC | Status | POST | MODIFIED |
| CC | kdreyer | |||
| Fixed In Version | ceph-ansible-4.0.11-1.el8cp, ceph-ansible-4.0.11-1.el7cp | |||
| errata-xmlrpc | 2020-01-23 00:34:01 UTC | Status | MODIFIED | ON_QA |
| Vasishta | 2020-01-23 05:39:07 UTC | Keywords | Regression | |
| Vasishta | 2020-01-23 14:24:56 UTC | Status | ON_QA | ASSIGNED |
| Severity | medium | urgent | ||
| Vasishta | 2020-01-23 14:28:31 UTC | CC | gabrioux | |
| Flags | needinfo?(gabrioux) | |||
| Guillaume Abrioux | 2020-01-23 15:03:56 UTC | Link ID | Github ceph/ceph-ansible/pull/4980 | |
| Flags | needinfo?(gabrioux) | |||
| Giulio Fidente | 2020-01-23 16:17:07 UTC | CC | gfidente | |
| Blocks | 1760354 | |||
| Dependent Products | Red Hat OpenStack | |||
| Nathan Weinberg | 2020-01-23 16:21:05 UTC | CC | nweinber | |
| Guillaume Abrioux | 2020-01-23 17:38:08 UTC | Status | ASSIGNED | POST |
| Ken Dreyer (Red Hat) | 2020-01-23 17:44:26 UTC | Status | POST | MODIFIED |
| Fixed In Version | ceph-ansible-4.0.11-1.el8cp, ceph-ansible-4.0.11-1.el7cp | ceph-ansible-4.0.12-1.el8cp, ceph-ansible-4.0.12-1.el7cp | ||
| Ken Dreyer (Red Hat) | 2020-01-23 20:50:18 UTC | Status | MODIFIED | ON_QA |
| Sunil Kumar Nagaraju | 2020-01-24 13:42:57 UTC | Status | ON_QA | VERIFIED |
| CC | sunnagar | |||
| Yuri Obshansky | 2020-01-24 23:59:40 UTC | Status | VERIFIED | NEW |
| Francesco Pantano | 2020-01-27 10:36:03 UTC | CC | fpantano | |
| Guillaume Abrioux | 2020-01-27 12:11:45 UTC | Flags | needinfo?(yobshans) | |
| Yuri Obshansky | 2020-01-27 12:17:46 UTC | Flags | needinfo?(yobshans) | |
| Yogev Rabl | 2020-01-27 14:16:02 UTC | Status | NEW | ASSIGNED |
| CC | yrabl | |||
| John Fulton | 2020-01-27 15:35:13 UTC | Link ID | Github ceph/ceph-ansible/pull/4988/commits/c3c3b6d3e2f5c934ed93ac14d15394bb4a7c37c6 | |
| Paul Grist | 2020-01-27 15:53:43 UTC | CC | pgrist | |
| Federico Lucifredi | 2020-01-27 20:17:14 UTC | CC | flucifre | |
| Flags | needinfo?(johfulto) needinfo?(pgrist) | |||
| Paul Grist | 2020-01-27 20:24:09 UTC | CC | gcharot, jvisser | |
| Flags | needinfo?(johfulto) needinfo?(pgrist) | needinfo?(gcharot) | ||
| Federico Lucifredi | 2020-01-27 21:20:54 UTC | Version | 4.0 | 4.1 |
| Flags | needinfo?(gcharot) | |||
| Federico Lucifredi | 2020-01-27 21:26:00 UTC | Target Milestone | rc | --- |
| RHEL Program Management | 2020-01-27 21:26:05 UTC | Target Milestone | --- | rc |
| Guillaume Abrioux | 2020-01-28 08:22:49 UTC | Target Release | 4.0 | 4.1 |
| CC | tserlin | |||
| Status | ASSIGNED | NEW | ||
| Status | NEW | ASSIGNED | ||
| Status | ASSIGNED | POST | ||
| Bara Ancincova | 2020-01-28 08:50:23 UTC | Blocks | 1730176 | |
| Docs Contact | bancinco | |||
| Doc Text | The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat Openstack Platform 16 and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. | |||
| Doc Type | If docs needed, set a value | Known Issue | ||
| Flags | needinfo?(gabrioux) | |||
| Bara Ancincova | 2020-01-28 08:56:38 UTC | Doc Text | The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat Openstack Platform 16 and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. | .{product} installation on Red Hat OpenStack Platform fails The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16 and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. |
| Guillaume Abrioux | 2020-01-28 09:12:04 UTC | Flags | needinfo?(gabrioux) | |
| Pasi Karkkainen | 2020-01-28 09:45:39 UTC | CC | pasik | |
| Erin Donnelly | 2020-01-28 20:45:22 UTC | CC | edonnell | |
| Doc Text | .{product} installation on Red Hat OpenStack Platform fails The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16 and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. | .{product} installation on Red Hat OpenStack Platform fails The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. |
||
| Yaniv Kaul | 2020-02-19 16:46:34 UTC | Priority | unspecified | medium |
| errata-xmlrpc | 2020-03-17 01:07:00 UTC | Status | POST | MODIFIED |
| Fixed In Version | ceph-ansible-4.0.12-1.el8cp, ceph-ansible-4.0.12-1.el7cp | ceph-ansible-4.0.13-1.el8cp, ceph-ansible-4.0.13-1.el7cp | ||
| Status | MODIFIED | ON_QA | ||
| Karen Norteman | 2020-03-31 18:58:47 UTC | CC | knortema | |
| Blocks | 1816167 | |||
| Karen Norteman | 2020-04-14 15:12:08 UTC | Flags | needinfo?(gabrioux) | |
| Ameena Suhani S H | 2020-04-17 06:27:57 UTC | CC | amsyedha | |
| Flags | needinfo?(johfulto) | |||
| John Fulton | 2020-04-17 18:16:02 UTC | Flags | needinfo?(johfulto) | |
| Ameena Suhani S H | 2020-04-19 19:24:20 UTC | Status | ON_QA | VERIFIED |
| Guillaume Abrioux | 2020-04-21 13:06:31 UTC | CC | bancinco | |
| Flags | needinfo?(gabrioux) | needinfo?(bancinco) | ||
| Karen Norteman | 2020-04-21 18:05:56 UTC | Doc Text | .{product} installation on Red Hat OpenStack Platform fails The `ceph-ansible` utility becomes unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returns an error similar to the following one: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. |
| Doc Type | Known Issue | Bug Fix | ||
| Guillaume Abrioux | 2020-04-22 06:59:17 UTC | Doc Text | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- To work around this issue, update the following part of the `handler_osds.yml` file, located in the `ceph-ansible/roles/ceph-handler/tasks/` directory: ---- - name: unset noup flag command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- To: ---- - name: unset noup flag command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup" delegate_to: "{{ groups[mon_group_name][0] }}" changed_when: False ---- And start the installation process again. | Cause: ceph-ansible reads the value of the fact `container_exec_cmd` from the wrong host in handler_osds.yml Consequence: .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- Fix: ceph-ansible reads the value of `container_exec_cmd` from the right host Result: installation doesn't fail |
| Karen Norteman | 2020-04-22 15:21:46 UTC | Doc Text | Cause: ceph-ansible reads the value of the fact `container_exec_cmd` from the wrong host in handler_osds.yml Consequence: .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- Fix: ceph-ansible reads the value of `container_exec_cmd` from the right host Result: installation doesn't fail | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- This occurred because ceph-ansible read the value of the fact `container_exec_cmd` from the wrong host in handler_osds.yml With this update, ceph-ansible reads the value of `container_exec_cmd` from the correct host, and installation proceeds successfully. |
| Karen Norteman | 2020-04-22 15:22:32 UTC | Flags | needinfo?(bancinco) | needinfo+ |
| Aron Gunn | 2020-05-04 16:27:05 UTC | CC | agunn | |
| Doc Text | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} together with the Red Hat OpenStack Platform 16, and it returned an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- This occurred because ceph-ansible read the value of the fact `container_exec_cmd` from the wrong host in handler_osds.yml With this update, ceph-ansible reads the value of `container_exec_cmd` from the correct host, and installation proceeds successfully. | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} with the Red Hat OpenStack Platform 16, and it returns an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- This occurred because `ceph-ansible` reads the value of the fact `container_exec_cmd` from the wrong node in handler_osds.yml With this update, `ceph-ansible` reads the value of `container_exec_cmd` from the correct node, and the installation proceeds successfully. |
||
| errata-xmlrpc | 2020-05-19 15:12:26 UTC | Status | VERIFIED | RELEASE_PENDING |
| errata-xmlrpc | 2020-05-19 17:32:06 UTC | Status | RELEASE_PENDING | CLOSED |
| Resolution | --- | ERRATA | ||
| Last Closed | 2020-05-19 17:32:06 UTC | |||
| errata-xmlrpc | 2020-05-19 17:32:51 UTC | Link ID | Red Hat Product Errata RHSA-2020:2231 | |
| John Brier | 2020-07-09 09:58:02 UTC | CC | jbrier | |
| Doc Text | .{product} installation on Red Hat OpenStack Platform fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} with the Red Hat OpenStack Platform 16, and it returns an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- This occurred because `ceph-ansible` reads the value of the fact `container_exec_cmd` from the wrong node in handler_osds.yml With this update, `ceph-ansible` reads the value of `container_exec_cmd` from the correct node, and the installation proceeds successfully. | .{storage-product} installation on Red Hat OpenStack Platform no longer fails Previously, the `ceph-ansible` utility became unresponsive when attempting to install {product} with the Red Hat OpenStack Platform 16, and it returns an error similar to the following: ---- 'Error: unable to exec into ceph-mon-dcn1-computehci1-2: no container with name or ID ceph-mon-dcn1-computehci1-2 found: no such container' ---- This occurred because `ceph-ansible` reads the value of the fact `container_exec_cmd` from the wrong node in handler_osds.yml With this update, `ceph-ansible` reads the value of `container_exec_cmd` from the correct node, and the installation proceeds successfully. |
Back to bug 1792320