Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
#
|
2020-01-07 16:33:05 -08:00
|
|
|
# Cookbook:: openstack-common
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
# Attributes:: messaging
|
|
|
|
#
|
2021-10-13 23:28:32 -07:00
|
|
|
# Copyright:: 2012-2021, AT&T Services, Inc.
|
|
|
|
# Copyright:: 2013-2021, SUSE Linux GmbH
|
|
|
|
# Copyright:: 2013-2021, Rackspace US, Inc.
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
# The rabbitmq user's password is stored in an encrypted databag and accessed
|
|
|
|
# with openstack-common cookbook library's user_password routine. You are
|
|
|
|
# expected to create the user, pass, vhost in a wrapper rabbitmq cookbook.
|
|
|
|
#
|
|
|
|
|
2014-02-18 14:35:20 -05:00
|
|
|
# ******************** RabbitMQ Endpoint **************************************
|
2016-02-11 06:40:54 +01:00
|
|
|
%w(endpoints bind_service).each do |type|
|
|
|
|
default['openstack'][type]['mq']['host'] = '127.0.0.1'
|
|
|
|
default['openstack'][type]['mq']['port'] = '5672'
|
|
|
|
end
|
|
|
|
default['openstack']['bind_service']['mq']['interface'] = nil
|
2014-02-18 14:35:20 -05:00
|
|
|
|
2014-02-13 10:51:40 -08:00
|
|
|
###################################################################
|
|
|
|
# Services to assign mq attributes for
|
|
|
|
###################################################################
|
2020-05-23 14:21:33 -07:00
|
|
|
services =
|
|
|
|
%w(
|
|
|
|
aodh
|
|
|
|
bare_metal
|
|
|
|
baremetal
|
|
|
|
block-storage
|
|
|
|
block_storage
|
|
|
|
compute
|
|
|
|
database
|
|
|
|
dns
|
|
|
|
identity
|
|
|
|
image
|
2020-10-01 11:19:36 +02:00
|
|
|
load_balancer
|
2020-05-23 14:21:33 -07:00
|
|
|
network
|
|
|
|
orchestration
|
|
|
|
placement
|
|
|
|
telemetry
|
|
|
|
)
|
2014-02-13 10:51:40 -08:00
|
|
|
|
|
|
|
###################################################################
|
|
|
|
# Generic default attributes
|
|
|
|
###################################################################
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
default['openstack']['mq']['server_role'] = 'os-ops-messaging'
|
2015-11-24 11:54:40 +01:00
|
|
|
default['openstack']['mq']['service_type'] = 'rabbit'
|
2017-04-07 15:18:33 -07:00
|
|
|
default['openstack']['mq']['user'] = 'openstack'
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
default['openstack']['mq']['vhost'] = '/'
|
|
|
|
|
2014-05-08 21:17:06 +00:00
|
|
|
# defined in oslo/messaging/_drivers/amqp.py
|
|
|
|
default['openstack']['mq']['durable_queues'] = false
|
|
|
|
default['openstack']['mq']['auto_delete'] = false
|
|
|
|
|
2014-02-13 10:51:40 -08:00
|
|
|
###################################################################
|
2015-11-24 11:54:40 +01:00
|
|
|
# Default rabbit values (for attribute assignment below)
|
2014-02-13 10:51:40 -08:00
|
|
|
###################################################################
|
2015-01-08 11:40:12 -06:00
|
|
|
# global switch for handling rabbit ssl
|
2014-08-07 11:09:15 +08:00
|
|
|
default['openstack']['mq']['rabbitmq']['use_ssl'] = false
|
2015-03-18 14:02:02 +08:00
|
|
|
# SSL version to use (valid only if SSL enabled)
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_ssl_version'] = nil
|
2015-06-12 10:48:08 -05:00
|
|
|
# SSL key file (valid only if SSL enabled)
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_ssl_keyfile'] = nil
|
|
|
|
# SSL cert file (valid only if SSL enabled)
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_ssl_certfile'] = nil
|
|
|
|
# SSL certification authority file (valid only if SSL enabled)
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_ssl_ca_certs'] = nil
|
|
|
|
# How long to wait before reconnecting in response to an AMQP consumer cancel notification
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_reconnect_delay'] = 1.0
|
|
|
|
# How long to wait before considering a reconnect attempt to have failed.
|
|
|
|
# This value should not be longer than rpc_response_timeout
|
|
|
|
default['openstack']['mq']['rabbitmq']['kombu_reconnect_timeout'] = 60
|
2015-01-08 11:40:12 -06:00
|
|
|
# global switch for handling rabbit ha
|
|
|
|
default['openstack']['mq']['rabbitmq']['ha'] = false
|
2015-06-05 11:37:04 -05:00
|
|
|
# global switch for number of seconds after which the Rabbit broker is considered down if heartbeat's keep-alive fails (0 disable the heartbeat)
|
|
|
|
default['openstack']['mq']['rabbitmq']['heartbeat_timeout_threshold'] = 0
|
|
|
|
# global switch for how often times during the heartbeat_timeout_threshold we check the heartbeat
|
|
|
|
default['openstack']['mq']['rabbitmq']['heartbeat_rate'] = 2
|
|
|
|
|
2014-02-13 10:51:40 -08:00
|
|
|
rabbit_defaults = {
|
2015-04-07 15:41:55 +08:00
|
|
|
rabbit_max_retries: 0,
|
|
|
|
rabbit_retry_interval: 1,
|
2014-02-13 10:51:40 -08:00
|
|
|
userid: node['openstack']['mq']['user'],
|
|
|
|
vhost: node['openstack']['mq']['vhost'],
|
2014-02-18 14:35:20 -05:00
|
|
|
port: node['openstack']['endpoints']['mq']['port'],
|
|
|
|
host: node['openstack']['endpoints']['mq']['host'],
|
2015-01-08 11:40:12 -06:00
|
|
|
ha: node['openstack']['mq']['rabbitmq']['ha'],
|
2015-06-05 11:37:04 -05:00
|
|
|
heartbeat_timeout_threshold: node['openstack']['mq']['rabbitmq']['heartbeat_timeout_threshold'],
|
|
|
|
heartbeat_rate: node['openstack']['mq']['rabbitmq']['heartbeat_rate'],
|
2015-03-18 14:02:02 +08:00
|
|
|
use_ssl: node['openstack']['mq']['rabbitmq']['use_ssl'],
|
2015-06-12 10:48:08 -05:00
|
|
|
kombu_ssl_version: node['openstack']['mq']['rabbitmq']['kombu_ssl_version'],
|
|
|
|
kombu_ssl_keyfile: node['openstack']['mq']['rabbitmq']['kombu_ssl_keyfile'],
|
|
|
|
kombu_ssl_certfile: node['openstack']['mq']['rabbitmq']['kombu_ssl_certfile'],
|
|
|
|
kombu_ssl_ca_certs: node['openstack']['mq']['rabbitmq']['kombu_ssl_ca_certs'],
|
|
|
|
kombu_reconnect_delay: node['openstack']['mq']['rabbitmq']['kombu_reconnect_delay'],
|
2017-08-20 11:16:38 -04:00
|
|
|
kombu_reconnect_timeout: node['openstack']['mq']['rabbitmq']['kombu_reconnect_timeout'],
|
2014-02-13 10:51:40 -08:00
|
|
|
}
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
|
2014-02-13 10:51:40 -08:00
|
|
|
###################################################################
|
|
|
|
# Assign default mq attributes for every service
|
|
|
|
###################################################################
|
|
|
|
services.each do |svc|
|
|
|
|
default['openstack']['mq'][svc]['service_type'] = node['openstack']['mq']['service_type']
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
|
2014-05-08 21:17:06 +00:00
|
|
|
default['openstack']['mq'][svc]['durable_queues'] =
|
|
|
|
node['openstack']['mq']['durable_queues']
|
|
|
|
default['openstack']['mq'][svc]['auto_delete'] =
|
|
|
|
node['openstack']['mq']['auto_delete']
|
|
|
|
|
2015-11-24 11:54:40 +01:00
|
|
|
rabbit_defaults.each do |key, val|
|
|
|
|
default['openstack']['mq'][svc]['rabbit'][key.to_s] = val
|
2014-02-13 10:51:40 -08:00
|
|
|
end
|
Initial step to clean up db and mq attributes
Here we move db and mq attributes already present in default.rb
attributes into new files (database.rb,messaging.rb). Additionally, we
pull in rabbit/mq attributes from
openstack-{block-storage,compute,image,metering,network} while
transforming namespace from openstack.SERVICE.mq and
openstack.SERVICE.rabbit to openstack.mq.SERVICE
and openstack.mq.SERVICE.rabbit. Lastly, we copy
openstack.SERVICE.db.username attribute from
openstack-{compute,dashboard,identity,image,metering,network} while
transforming namespace to openstack.db.SERVICE.username.
Change-Id: I50c900aa2ba92ce53f4a6ad05aeabd59e701b514
Implements: blueprint clean-up-attr-for-mq-and-db
2014-01-15 15:11:58 +00:00
|
|
|
end
|