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
(cherry picked from commit b3fddcce5c)
This commit is contained in:
Vladimir Khlyunev 2016-09-07 16:03:38 +03:00
parent 0886d46f48
commit 3e74524ba8
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)