Override the replicas for ceilometer notification

The replicas for the ceilometer-notification pod should be aligned
to the number of the controllers.

Change-Id: Ifced726dccb9c2f64e0e1f9078022dff841d9419
Closes-Bug: 1835111
Signed-off-by: Angie Wang <angie.wang@windriver.com>
This commit is contained in:
Angie Wang 2019-07-11 17:16:02 -04:00
parent 01533dae4e
commit a59620454a
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ class CeilometerHelm(openstack.OpenstackBaseHelm):
def _get_pod_overrides(self):
return {
'replicas': {
'central': self._num_controllers()
'central': self._num_controllers(),
'notification': self._num_controllers()
}
}