Use "SystemController" when requesting default strategy config

Previously, retrieving the default strategy configuration required
using "RegionOne" as the subcloud_ref. Since the concept of "RegionOne"
will be removed in the future, and the system controller will only have
a UUID region and the "SystemController" region, this commit updates
references from "RegionOne" to "SystemController" when requesting the
default strategy configuration.

Test Plan:
01. PASS - Run 'dcmanager strategy-config update' using different
    region names: "RegionOne", "SystemController", and without
    specifying a region name. Verify that the default options are
    modified accordingly.
02. PASS - Run the previous test but using 'dcmanager strategy-config
    show' instead.

Depends-On: https://review.opendev.org/c/starlingx/distcloud/+/945580

Story: 2011312
Task: 51862

Change-Id: I371fd2550b521943da93c3817c35785bde470cd6
Signed-off-by: Gustavo Herzmann <gustavo.herzmann@windriver.com>
This commit is contained in:
Gustavo Herzmann 2025-03-26 09:49:50 -03:00
parent 59d2f380f7
commit 47c902ab33
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Copyright (c) 2017 Ericsson AB.
# Copyright (c) 2017, 2019, 2021, 2024 Wind River Systems, Inc.
# Copyright (c) 2017, 2019, 2021, 2024-2025 Wind River Systems, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@ -20,7 +20,7 @@ import json
from dcmanagerclient.api import base
from dcmanagerclient.api.base import get_json
DEFAULT_REGION_NAME = "RegionOne"
DEFAULT_REGION_NAME = "SystemController"
class SwUpdateOptions(base.Resource):

View File

@ -1,5 +1,5 @@
# Copyright (c) 2017 Ericsson AB.
# Copyright (c) 2017-2021, 2024 Wind River Systems, Inc.
# Copyright (c) 2017-2021, 2024-2025 Wind River Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -19,7 +19,7 @@ from osc_lib.command import command
from dcmanagerclient import exceptions
from dcmanagerclient.commands.v1 import base
DEFAULT_REGION_NAME = "RegionOne"
DEFAULT_REGION_NAME = "SystemController"
def options_detail_format(sw_update_options=None):