Use master node as NTP and DNS server for upgrade scenarios

We are expecting issues in time sync procedure after reverting the
snapshots when nodes are in isolation. Switching ntp and dns servers
removes snapshot-reverting artifacts.

Change-Id: Ia1e6302ab145bb1b5d5a9eec22b84505840427a2
Closes-bug:1620616
This commit is contained in:
Vladimir Khlyunev 2016-09-07 16:03:38 +03:00
parent e2ebe34aec
commit b3fddcce5c
1 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,9 @@ class UpgradeCephHA(DataDrivenUpgradeBase):
'images_ceph': True,
'objects_ceph': True,
'ephemeral_ceph': True,
'osd_pool_size': '3'
'osd_pool_size': '3',
'ntp_list': self.env.get_admin_node_ip(),
'dns_list': self.env.get_admin_node_ip()
}
cluster_settings.update(self.cluster_creds)