
This commit removes legacy load and upgrade functionality that's being replaced by USM. It also modifies the prestage systemcontroller upgrade check to block prestage if there's a software deployment in-progress. This commit also removes the check that prevents prestaging if any uploaded release is not 'deployed'. The prestaging playbook is already responsible for this logic. Test Plan: 1. PASS - Run subcloud prestaging and verify that it completes successfully; 2. PASS - Start the deployment of a software release and attempt to prestage a subcloud, verify that it fails due to the ongoing deployment; 3. PASS - On a 24.09 system controller, upload a 24.09.01 patch and attempt to prestage a subcloud for software deploy using the parameter --release 24.09 and verify that the prestage operation is allowed even if the 24.09.01 release is in the 'available' state; 4. PASS - Upload a device image using the "system --os-region-name SystemController device-image-upload" command and verify that the image is uploaded to the "/opt/dc-vault/device_images" directory. 5. PASS - Remove the device image and verify that it gets removed from the "/opt/dc-vault/device_images" directory. Story: 2010676 Task: 50921 Change-Id: I5155b12995d60969cfa2b8d4624c4d8a82b7dfd2 Signed-off-by: Gustavo Herzmann <gustavo.herzmann@windriver.com>
158 lines
4.3 KiB
Python
158 lines
4.3 KiB
Python
# Copyright 2015 Huawei Technologies Co., Ltd.
|
|
# Copyright 2015 Ericsson AB.
|
|
# Copyright (c) 2020-2024 Wind River Systems, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
DC Orchestrator base exception handling.
|
|
"""
|
|
|
|
from oslo_utils import excutils
|
|
|
|
from dcorch.common.i18n import _
|
|
|
|
|
|
class DCCommonException(Exception):
|
|
"""Base Common Driver Exception.
|
|
|
|
To correctly use this class, inherit from it and define
|
|
a 'message' property. That message will get printf'd
|
|
with the keyword arguments provided to the constructor.
|
|
"""
|
|
|
|
message = _("An unknown exception occurred.")
|
|
|
|
def __init__(self, **kwargs):
|
|
try:
|
|
super(DCCommonException, self).__init__(self.message % kwargs)
|
|
self.msg = self.message % kwargs
|
|
except Exception:
|
|
with excutils.save_and_reraise_exception() as ctxt:
|
|
if not self.use_fatal_exceptions():
|
|
ctxt.reraise = False
|
|
# at least get the core message out if something happened
|
|
super(DCCommonException, self).__init__(self.message)
|
|
|
|
def use_fatal_exceptions(self):
|
|
return False
|
|
|
|
|
|
class NotFound(DCCommonException):
|
|
pass
|
|
|
|
|
|
class Forbidden(DCCommonException):
|
|
message = _("Requested API is forbidden")
|
|
|
|
|
|
class Conflict(DCCommonException):
|
|
pass
|
|
|
|
|
|
class ServiceUnavailable(DCCommonException):
|
|
message = _("The service is unavailable")
|
|
|
|
|
|
class InvalidInputError(DCCommonException):
|
|
message = _("An invalid value was provided")
|
|
|
|
|
|
class InternalError(DCCommonException):
|
|
message = _("Error when performing operation")
|
|
|
|
|
|
class ProjectNotFound(NotFound):
|
|
message = _("Project %(project_id)s doesn't exist")
|
|
|
|
|
|
class OAMAddressesNotFound(NotFound):
|
|
message = _("OAM Addresses Not Found")
|
|
|
|
|
|
class CertificateNotFound(NotFound):
|
|
message = _(
|
|
"Certificate in region=%(region_name)s with signature %(signature)s not found"
|
|
)
|
|
|
|
|
|
class LoadNotInVault(NotFound):
|
|
message = _("Load at path %(path)s not found")
|
|
|
|
|
|
class PlaybookExecutionFailed(DCCommonException):
|
|
message = _("Playbook execution failed, command=%(playbook_cmd)s")
|
|
|
|
|
|
class PlaybookExecutionTimeout(PlaybookExecutionFailed):
|
|
message = _(
|
|
"Playbook execution failed [TIMEOUT (%(timeout)s)], command=%(playbook_cmd)s"
|
|
)
|
|
|
|
|
|
class ImageNotInLocalRegistry(NotFound):
|
|
message = _(
|
|
"Image %(image_name)s:%(image_tag)s not found in the local registry. "
|
|
"Please check with command: system registry-image-list or "
|
|
"system registry-image-tags %(image_name)s"
|
|
)
|
|
|
|
|
|
class ApiException(DCCommonException):
|
|
message = _("%(endpoint)s failed with status code: %(rc)d")
|
|
|
|
|
|
class SoftwareDataException(DCCommonException):
|
|
message = _("%(endpoint)s failed with data error: %(error)s")
|
|
|
|
|
|
class SystemPeerNotFound(NotFound):
|
|
message = _("System Peer %(system_peer)s not found")
|
|
|
|
|
|
class SubcloudNotFound(NotFound):
|
|
message = _("Subcloud %(subcloud_ref)s not found")
|
|
|
|
|
|
class SubcloudPeerGroupNotFound(NotFound):
|
|
message = _("Subcloud Peer Group %(peer_group_ref)s not found")
|
|
|
|
|
|
class PeerGroupAssociationNotFound(NotFound):
|
|
message = _("Peer Group Association %(association_id)s not found")
|
|
|
|
|
|
class SubcloudPeerGroupDeleteFailedAssociated(DCCommonException):
|
|
message = _(
|
|
"Subcloud Peer Group %(peer_group_ref)s delete failed "
|
|
"cause it is associated with a system peer."
|
|
)
|
|
|
|
|
|
class RvmcException(Exception):
|
|
def __init__(self, message=None):
|
|
super(RvmcException, self).__init__(message)
|
|
|
|
|
|
class RvmcExit(DCCommonException):
|
|
message = _("Rvmc failed with status code: %(rc)d")
|
|
|
|
|
|
class EnrollInitExecutionFailed(DCCommonException):
|
|
message = _("Subcloud enroll init failed. %(reason)s")
|
|
|
|
|
|
class VIMClientException(Exception):
|
|
message = _("An error occurred in the VIM client.")
|