| Summary: | rabbitmq-server version will not allow overcloud to deploy | ||
|---|---|---|---|
| Product: | [Community] RDO | Reporter: | Donny Davis <dondavis> |
| Component: | distribution | Assignee: | Lars Kellogg-Stedman <lars> |
| Status: | CLOSED INSUFFICIENT_DATA | QA Contact: | Shai Revivo <srevivo> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | Mitaka | CC: | chris.brown, markmc, srevivo |
| Target Milestone: | --- | ||
| Target Release: | trunk | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-06-22 15:35:26 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: | |
|
Description
Donny Davis
2016-11-23 14:48:43 UTC
I suspect the openstack-puppet modules will need to be updated to work with the latest version of rabbitmq-server.
WORKAROUND
#create a firstboot config file
mkdir -p templates/firstboot/
cat << EOF >> templates/firstboot/firstboot-config.yaml
heat_template_version: 2014-10-16
resources:
userdata:
type: OS::Heat::MultipartMime
properties:
parts:
- config: {get_resource: repo_config}
repo_config:
type: OS::Heat::SoftwareConfig
properties:
config: |
#!/bin/bash
yum -y remove rabbitmq-server
yum -y install http://mirror.centos.org/centos/7/cloud/x86_64/openstack-mitaka/common/rabbitmq-server-3.3.5-17.el7.noarch.rpm
outputs:
OS::stack_id:
value: {get_resource: userdata}
EOF
cat << EOF >> templates/firstboot-environment.yaml
resource_registry:
OS::TripleO::NodeUserData: /home/stack/templates/firstboot/firstboot-config.yaml
EOF
#add this template to the deployment
openstack overcloud deploy --templates \
-e /home/stack/templates/firstboot-environment.yaml \
--control-scale 3 \
--compute-scale 9 \
--ceph-storage-scale 0 \
--control-flavor control \
--compute-flavor compute \
--neutron-network-type vxlan \
--neutron-tunnel-type vxlan \
--ntp-server time-a.nist.gov
I am not sure of the implications of using an older version of rabbitmq-server, so implement this workaround at your own risk.
Sorry you didn't get a response to this. I can't replicate this and as this is against an EOL product I'm closing as such but please re-open if still a problem with current packages. |