Add upgrade script for subcloud phase deploy

For subcloud phase deploy story (2010756), the previous deploy_status
for the subcloud configuration step were replaced. If a subcloud in
a failed deploy state remained after an upgrade, it was not possible
to re-run the deploy config step. This commit changes the deploy
status of subclouds from 'deploy-prep-failed' to 'pre-config-failed'
and from 'deploy-failed' to 'config-failed', allowing the user to run
'dcmanager subcloud deploy config'.

Test plan:
  - PASS: Upgrade a system controller from STX-8 to master and verify
          the data-migration step runs successfully on controller-1
          and the subclouds deploy_status were updated from
          'deploy-prep-failed' to 'pre-config-failed' and
          'deploy-failed' to 'config-failed'. Verify that other
          subclouds with different deploy_status remain untouched.

Notes about the tests:
  - There was a mismatch on dcmanager db migrate scripts between the
    developers ISOs used for the test. The STX-8 had a migrate_version
    of 15, but the last script on master was 16, and said script was
    already applied on STX-8. For testing, the migrate_version on
    dcmanager db was updated with:
      psql -x -d dcmanager -c "update migrate_version set version=16"
  - The hieradata file (/opt/platform/puppet/23.09/hieradata/)
    from hosts was updated to use the hostname instead of management
    ip. To be able to unlock controller-1, it was necessary to rename
    said file from "controller-1.yaml" to "<mgmt_ip>.yaml".
  - Post unlock, controller-1 transitioned to unlock-disabled-failed
    and software.log showed an rsync error because of
    "Unknown module: 'software'". As the migrate script was already
    executed successfully, the test ended here. The error was:
      command: rsync -acv --delete rsync://controller/software/
               /opt/software/
      sync error: error starting client-server protocol (code 5)
                  at main.c(1817) [Receiver=3.2.3]

Story: 2010756
Task: 49402

Change-Id: Id9b43a6d087f1fba4132f24340ad368f01daac5d
Signed-off-by: Victor Romano <victor.gluzromano@windriver.com>
This commit is contained in:
Victor Romano 2024-01-12 11:48:43 -03:00
parent 4f4cc4c847
commit ade017ce68
1 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,93 @@
#!/usr/bin/env python
# Copyright (c) 2024 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
# This script will update the deploy status of subclouds
# from 'deploy-prep-failed' to 'pre-config-failed'
# and 'deploy-failed' to 'config-failed', allowing the
# user to run deploy config step of subcloud deployment
# after the deprecation of subcloud reconfig and the old
# deploy status.
import sys
from dcmanager.common import consts as dcmanager_consts
import psycopg2
from controllerconfig.common import log
LOG = log.get_logger(__name__)
DEPLOY_STATUS_MAP = {
dcmanager_consts.DEPLOY_STATE_DEPLOY_PREP_FAILED:
dcmanager_consts.DEPLOY_STATE_PRE_CONFIG_FAILED,
dcmanager_consts.DEPLOY_STATE_DEPLOY_FAILED:
dcmanager_consts.DEPLOY_STATE_CONFIG_FAILED
}
def main():
action = None
from_release = None
to_release = None
arg = 1
while arg < len(sys.argv):
if arg == 1:
from_release = sys.argv[arg]
elif arg == 2:
to_release = sys.argv[arg]
elif arg == 3:
action = sys.argv[arg]
elif arg == 4:
# postgres_port = sys.argv[arg]
pass
else:
print("Invalid option %s." % sys.argv[arg])
return 1
arg += 1
log.configure()
LOG.info(
"%s invoked from_release = %s to_release = %s action = %s"
% (sys.argv[0], from_release, to_release, action)
)
res = 0
if action == 'migrate' and from_release == '22.12':
try:
conn = psycopg2.connect("dbname=dcmanager user=postgres")
do_update_deploy_status(conn)
except psycopg2.OperationalError:
# Since neither tsconfig or /etc/platform/platform.conf have
# the distributedcloud role at this stage, try to connect to
# the dcmanager db, and consider to not be a systemcontroller
# if the database doesn't exist
LOG.info("Not a systemcontroller, nothing to do")
res = 0
except Exception as e:
LOG.exception("Error: {}".format(e))
res = 1
return res
def do_update_deploy_status(conn):
for old_deploy_status, new_deploy_status in DEPLOY_STATUS_MAP.items():
query = (
f"UPDATE subclouds SET deploy_status='{new_deploy_status}'"
f"WHERE deploy_status='{old_deploy_status}';"
)
LOG.info(
f"Update deploy_status from {old_deploy_status} to "
f"{new_deploy_status}"
)
do_update_query(conn, query)
def do_update_query(conn, query):
with conn.cursor() as cur:
cur.execute(query)
conn.commit()
if __name__ == "__main__":
sys.exit(main())