Skip to content
Snippets Groups Projects
Commit 2c9cf6bb authored by Manuel Franceschini's avatar Manuel Franceschini
Browse files

Add 2.2->2.3 cluster upgrade function


Signed-off-by: default avatarManuel Franceschini <livewire@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent 100a75a7
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ import os.path
import sys
import optparse
import logging
import socket
from ganeti import constants
from ganeti import serializer
......@@ -70,6 +71,16 @@ def SetupLogging():
root_logger.addHandler(stderr_handler)
def Cluster22To23(cluster):
"""Upgrades the cluster object from 2.2 to 2.3.
"""
logging.info("Upgrading the cluster object")
if "primary_ip_family" not in cluster:
# Add primary ip family to config
cluster["primary_ip_family"] = socket.AF_INET
def main():
"""Main program.
......@@ -150,6 +161,8 @@ def main():
elif config_major == 2 and config_minor == 2:
logging.info("No changes necessary")
# TODO: For Ganeti 2.3 uncomment the following line
# Cluster22To23(config_data["cluster"])
else:
raise Error("Configuration version %d.%d.%d not supported by this tool" %
......
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