Bug 1783210
| Summary: | Non-pcmk version of cinder backup missing --ipc host | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Pablo Caruana <pcaruana> |
| Component: | openstack-tripleo-heat-templates | Assignee: | Pablo Caruana <pcaruana> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Tzach Shefi <tshefi> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 13.0 (Queens) | CC: | abishop, cschwede, fiezzi, gcharot, gfidente, jamsmith, jvisser, ltoscano, mburns, pgrist, pweeks, tshefi |
| Target Milestone: | z12 | Keywords: | TestOnly, Triaged, ZStream |
| Target Release: | 13.0 (Queens) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | openstack-tripleo-heat-templates-8.4.1-49.el7ost | Doc Type: | Bug Fix |
| Doc Text: |
This update puts the correct ipc:host setting in the non-pacemaker template version of the cinder-backup container.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2020-04-06 10:37:17 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 1666804 | ||
|
Comment 2
Luigi Toscano
2020-01-30 14:59:33 UTC
Is there an upstream patch? There should be for this to be ON_DEV. According to our records, this should be resolved by openstack-tripleo-heat-templates-8.4.1-51.el7ost. This build is available now. Verified on:
openstack-tripleo-heat-templates-8.4.1-51.el7ost.noarch
I happened to also have a prefixed-in deployment on hand
On it we can confirm the "broken" before fixed state, were IPC/mode isn't enabled:
[root@controller-0 ~]# docker inspect cinder_backup | grep -i ipc
"IpcMode": "",
Now retest on a fresh deployment, fixed-in included
Installed OC with none Pacemaker backup docker, using:
[stack@undercloud-0 ~]$ cat /usr/share/openstack-tripleo-heat-templates/environments/cinder-backup.yaml
resource_registry:
# OS::TripleO::Services::CinderBackup: ../docker/services/pacemaker/cinder-backup.yaml
# For non-pcmk managed implementation
OS::TripleO::Services::CinderBackup: ../docker/services/cinder-backup.yaml
Tested cinder backup docker post overcloud deploy:
[root@controller-0 ~]# docker inspect cinder_backup | grep Ipc
"IpcMode": "host",
As expected ipc host setting is preset enabled on a none pacemaker cinder backup template and it's resulting docker.
Good to verify both pre/post fix comply with expectations.
|