Specify multiple NtpServers by default

Chrony needs to have multiple servers for the initial sync as it won't
retry a dns lookup when we run waitsync.

Change-Id: Id0418f5c17402b5c4fdfad350204907b3f39034c
Closes-Bug: #1806521
This commit is contained in:
Alex Schultz 2018-12-10 13:26:12 -07:00
parent 491fd80ac4
commit a57fc1f9af
1 changed files with 2 additions and 1 deletions

View File

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