Merge "RabbitMQ: It adds HA and ttl policy for notificaitons queues"
This commit is contained in:
commit
332a3da005
@ -809,6 +809,21 @@ conf:
|
|||||||
class: oslo_log.formatters.ContextFormatter
|
class: oslo_log.formatters.ContextFormatter
|
||||||
formatter_default:
|
formatter_default:
|
||||||
format: "%(message)s"
|
format: "%(message)s"
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "cinder"
|
||||||
|
name: "ha_ttl_cinder"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
|
|
||||||
backends:
|
backends:
|
||||||
# Those options will be written to backends.conf as-is.
|
# Those options will be written to backends.conf as-is.
|
||||||
rbd1:
|
rbd1:
|
||||||
|
@ -360,6 +360,20 @@ conf:
|
|||||||
project_domain_name = {{ .Values.endpoints.identity.auth.glance.project_domain_name }}
|
project_domain_name = {{ .Values.endpoints.identity.auth.glance.project_domain_name }}
|
||||||
auth_version = 3
|
auth_version = 3
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "glance"
|
||||||
|
name: "ha_ttl_glance"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
|
|
||||||
network:
|
network:
|
||||||
api:
|
api:
|
||||||
|
@ -526,6 +526,21 @@ conf:
|
|||||||
formatter_default:
|
formatter_default:
|
||||||
format: "%(message)s"
|
format: "%(message)s"
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "heat"
|
||||||
|
name: "ha_ttl_heat"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
|
|
||||||
network:
|
network:
|
||||||
api:
|
api:
|
||||||
ingress:
|
ingress:
|
||||||
|
@ -589,6 +589,20 @@ conf:
|
|||||||
identity:update_domain_config: rule:admin_required
|
identity:update_domain_config: rule:admin_required
|
||||||
identity:delete_domain_config: rule:admin_required
|
identity:delete_domain_config: rule:admin_required
|
||||||
identity:get_domain_config_default: rule:admin_required
|
identity:get_domain_config_default: rule:admin_required
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "keystone"
|
||||||
|
name: "ha_ttl_keystone"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
rally_tests:
|
rally_tests:
|
||||||
run_tempest: false
|
run_tempest: false
|
||||||
tests:
|
tests:
|
||||||
|
@ -1605,6 +1605,21 @@ conf:
|
|||||||
enabled: true
|
enabled: true
|
||||||
backend: dogpile.cache.memcached
|
backend: dogpile.cache.memcached
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "neutron"
|
||||||
|
name: "ha_ttl_neutron"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
|
|
||||||
# Names of secrets used by bootstrap and environmental checks
|
# Names of secrets used by bootstrap and environmental checks
|
||||||
secrets:
|
secrets:
|
||||||
identity:
|
identity:
|
||||||
|
@ -1161,6 +1161,20 @@ conf:
|
|||||||
class: oslo_log.formatters.ContextFormatter
|
class: oslo_log.formatters.ContextFormatter
|
||||||
formatter_default:
|
formatter_default:
|
||||||
format: "%(message)s"
|
format: "%(message)s"
|
||||||
|
rabbitmq:
|
||||||
|
#NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones
|
||||||
|
policies:
|
||||||
|
- vhost: "nova"
|
||||||
|
name: "ha_ttl_nova"
|
||||||
|
definition:
|
||||||
|
#mirror messges to other nodes in rmq cluster
|
||||||
|
ha-mode: "all"
|
||||||
|
ha-sync-mode: "automatic"
|
||||||
|
#70s
|
||||||
|
message-ttl: 70000
|
||||||
|
priority: 0
|
||||||
|
apply-to: all
|
||||||
|
pattern: '(notifications)\.'
|
||||||
|
|
||||||
# Names of secrets used by bootstrap and environmental checks
|
# Names of secrets used by bootstrap and environmental checks
|
||||||
secrets:
|
secrets:
|
||||||
|
Loading…
Reference in New Issue
Block a user