Update default value for ntp servers

As we've switched to containerized undercloud, the ntp settings are more
important (and required).  If this is unset, we're actually falling back
to the defauls in the ntp configuration in THT so this patch just
exposes the default correctly in the configuration file.

Change-Id: I98c4d0c3cee2a745e0e5326e209ad91db22ebff1
Closes-Bug: #1793500
This commit is contained in:
Alex Schultz 2018-09-20 08:54:05 -06:00 committed by Sorin Sbarnea
parent 6b0f54c07a
commit 2f02c6503f
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class UndercloudConfig(StandaloneConfig):
'node.'),
),
cfg.ListOpt('undercloud_ntp_servers',
default=[],
default=['pool.ntp.org'],
help=_('List of ntp servers to use.')),
cfg.StrOpt('overcloud_domain_name',
default='localdomain',