Skip to content
Snippets Groups Projects
Commit 054596f0 authored by Iustin Pop's avatar Iustin Pop
Browse files

Replicate the node list in ssconf

This patch adds node_list in the list of replicated values from
ConfigWriter.

Reviewed-by: imsnah
parent 93384844
No related branches found
No related tags found
No related merge requests found
...@@ -867,11 +867,22 @@ class ConfigWriter: ...@@ -867,11 +867,22 @@ class ConfigWriter:
self._last_cluster_serial = self._config_data.cluster.serial_no self._last_cluster_serial = self._config_data.cluster.serial_no
def _UnlockedGetSsconfValues(self): def _UnlockedGetSsconfValues(self):
"""Return the values needed by ssconf.
@rtype: dict
@return: a dictionary with keys the ssconf names and values their
associated value
"""
node_list = "\n".join(utils.NiceSort(self._UnlockedGetNodeList()))
cluster = self._config_data.cluster
return { return {
"cluster_name": self._config_data.cluster.cluster_name, constants.SS_CLUSTER_NAME: cluster.cluster_name,
"master_ip": self._config_data.cluster.master_ip, constants.SS_FILE_STORAGE_DIR: cluster.file_storage_dir,
"master_netdev": self._config_data.cluster.master_netdev, constants.SS_MASTER_IP: cluster.master_ip,
"master_node": self._config_data.cluster.master_node, constants.SS_MASTER_NETDEV: cluster.master_netdev,
constants.SS_MASTER_NODE: cluster.master_node,
constants.SS_NODE_LIST: node_list,
} }
@locking.ssynchronized(_config_lock) @locking.ssynchronized(_config_lock)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment