Aodh: Use the new coordination class

... instead of the deprecated coordination_url parameter.

Depends-on: https://review.opendev.org/c/openstack/puppet-aodh/+/792001
Change-Id: Id5083bd782f0e8ae79df51038b6ac2db37222e06
This commit is contained in:
Takashi Kajinami 2021-10-19 22:55:06 +09:00
parent 13d35f6f2f
commit c6987fae6d
1 changed files with 3 additions and 2 deletions

View File

@ -33,9 +33,10 @@ class packstack::aodh ()
auth_url => hiera('CONFIG_KEYSTONE_PUBLIC_URL_VERSIONLESS'),
region_name => hiera('CONFIG_KEYSTONE_REGION'),
}
class { 'aodh::evaluator':
coordination_url => $coordination_url,
class { 'aodh::coordination':
backend_url => $coordination_url,
}
class { 'aodh::evaluator': }
class { 'aodh::notifier': }
class { 'aodh::listener': }
class { 'aodh::client': }