6b28afd6cf
Change-Id: I46d83f4c2e198bf80ccdb4ee98047a17c386e213 Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
76 lines
2.7 KiB
YAML
76 lines
2.7 KiB
YAML
---
|
|
# Copyright 2017, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
## RabbitMQ options
|
|
rabbitmq_host_group: "rabbitmq_all"
|
|
rabbitmq_port: "{{ (rabbitmq_use_ssl | bool) | ternary(5671, 5672) }}"
|
|
|
|
rabbitmq_use_ssl: true
|
|
rabbitmq_servers: >-
|
|
{{
|
|
groups[rabbitmq_host_group]
|
|
| map('extract', hostvars, 'management_address')
|
|
| list | join(',')
|
|
}}
|
|
|
|
# If you do not want to use quorum queues, set rabbitmq_queue_replication to false
|
|
rabbitmq_queue_replication: true
|
|
|
|
rabbitmq_policies:
|
|
- name: CQv2
|
|
pattern: '.*'
|
|
priority: 0
|
|
tags:
|
|
queue-version: 2
|
|
state: >-
|
|
{{
|
|
((oslomsg_rabbit_quorum_queues | default(true) or not rabbitmq_queue_replication) and rabbitmq_install_method | default('') != 'distro'
|
|
) | ternary('present', 'absent')
|
|
}}
|
|
# The following is an example of an additional policy which applies to fanout/stream queues only
|
|
# By default, each stream uses RabbitMQ's 500MB segment size, and no messages will be discarded
|
|
# until that size is reached. This may result in undesirable disk usage.
|
|
# If using this policy, it must be applied BEFORE any stream queues are created.
|
|
# See also https://bugs.launchpad.net/oslo.messaging/+bug/2089845 and https://www.rabbitmq.com/docs/streams#retention
|
|
# - name: CQv2F
|
|
# pattern: '^.*_fanout'
|
|
# priority: 1
|
|
# tags:
|
|
# queue-version: 2
|
|
# stream-max-segment-size-bytes: 1000000
|
|
# state: >-
|
|
# {{
|
|
# ((oslomsg_rabbit_quorum_queues | default(true) or not rabbitmq_queue_replication) and rabbitmq_install_method | default('') != 'distro'
|
|
# ) | ternary('present', 'absent')
|
|
# }}
|
|
|
|
## Galera options
|
|
galera_client_package_state: "{{ package_state }}"
|
|
galera_address: "{{ internal_lb_vip_address }}"
|
|
galera_root_user: "admin"
|
|
|
|
# Disable SSL for CentOS distro path due to https://bugzilla.redhat.com/show_bug.cgi?id=2074555
|
|
galera_use_ssl: "{{ not (ansible_facts['os_family'] | lower == 'redhat' and install_method == 'distro') }}"
|
|
|
|
## Memcached options
|
|
memcached_port: 11211
|
|
memcached_servers: >-
|
|
{{
|
|
(groups['memcached'] | map('extract', hostvars, 'management_address') | list)
|
|
| map('regex_replace', '(.+)' ,'\1:' ~ memcached_port)
|
|
| list
|
|
| join(',')
|
|
}}
|