Soften the rabbitmq version pin

With version 5.7.4 the rabbitmq cookbook should be working for us again.
However, we also learned that with the upcoming 6.x version of the
cookbook only versions >= 3.7.x of rabbitmq will be supported, which
isn't available as distro version at least for Ubuntu LTS releases yet.
So we change this pin into a soft match, allowing for updates within the
5.x stable branch, but blocking 6.x.

Add patch version bump for stable cherry-pick.

Change-Id: Id647f10fd5d4b69b441c4f8de8c325ec0032d9ea
(cherry picked from commit 818851f790)
This commit is contained in:
Jens Harbott 2019-03-21 10:29:26 +00:00
parent 7600e531b7
commit e15aa2fe32
1 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@ maintainer 'openstack-chef'
maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0'
description 'Provides the shared messaging configuration for Chef for OpenStack.'
version '17.0.1'
version '17.0.2'
recipe 'server', 'Installs and configures server packages for messaging queue used by the deployment.'
recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via the server recipe'
@ -13,8 +13,7 @@ recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via th
end
depends 'openstack-common', '>= 17.0.0'
# Note(frickler): Workaround for https://github.com/rabbitmq/chef-cookbook/issues/508
depends 'rabbitmq', '5.7.0'
depends 'rabbitmq', '~> 5.7'
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)
source_url 'https://github.com/openstack/cookbook-openstack-ops-messaging' if respond_to?(:source_url)