monasca: change default of monasca_ntp_server

Updates the default value of 'monasca_ntp_server' from
'external_ntp_servers[0]' to '0.pool.ntp.org'.  This is due to the
removal of the 'external_ntp_servers' variable as part of the removal of
Chrony deployment.

Change-Id: I2e7538a2e95c7b8e9280eb051ee634b4313db129
This commit is contained in:
Mark Goddard 2021-10-01 14:06:10 +01:00
parent 3b22d334d6
commit 1d0171fc70
2 changed files with 8 additions and 1 deletions

View File

@ -138,7 +138,7 @@ monasca_memcached_servers: "{% for host in groups['memcached'] %}{{ 'api' | koll
monasca_elasticsearch_servers: "{% for host in groups['elasticsearch'] %}'{{ internal_protocol }}://{{ 'api' | kolla_address(host) | put_address_in_context('url') }}:{{ elasticsearch_port }}'{% if not loop.last %},{% endif %}{% endfor %}"
monasca_storm_nimbus_servers: "{% for host in groups['storm-nimbus'] %}'{{ 'api' | kolla_address(host) }}'{% if not loop.last %},{% endif %}{% endfor %}"
# NOTE(dszumski): Only one NTP server is currently supported by the Monasca Agent plugin
monasca_ntp_server: "{{ external_ntp_servers | first }}"
monasca_ntp_server: "0.pool.ntp.org"
# The default number of Kafka topic partitions. This effectively limits
# the maximum number of workers per topic, counted over all nodes in the

View File

@ -0,0 +1,7 @@
---
upgrade:
- |
Updates the default value of ``monasca_ntp_server`` from
``external_ntp_servers[0]`` to ``0.pool.ntp.org``. This is due to the
removal of the ``external_ntp_servers`` variable as part of the removal of
Chrony deployment.