
This change adds the capability to rename the subcloud after bootstrap or during subcloud rehome operation. Added a field in the database to separate the region name from the subcloud name. The region name determines the subcloud reference in the Openstack core, through which it is possible to access the endpoints of a given subcloud. Since the region name cannot be changed, this commit adds the ability to maintain a unique region name based on the UUID format, and allows subcloud renaming when necessary without any endpoint impact. The region is randomly generated to configure the subcloud when it is created and only applies to future subclouds. For those systems that have existing subclouds, the region will be the same as on day 0, that is, region will keep the same name as the subcloud, but subclouds can be renamed. This topic involves changes to dcmanager, dcmanager-client and GUI. To ensure the region name reference needed by the cert-monitor, a mechanism to determine if the request is coming from the cert-monitor has been created. Usage for subcloud rename: dcmanager subcloud update <subcloud-name> --name <new-name> Usage for subcloud rehoming: dcmanager subcloud add --name <subcloud-name> --migrate ... Note: Upgrade test from StarlingX 8 -> 9 for this commit is deferred until upgrade functionality in master is restored. Any issue found during upgrade test will be addressed in a separate commit Test Plan: PASS: Run dcmanager subcloud passing subcommands: - add/delete/migrate/list/show/show --detail - errors/manage/unmanage/reinstall/reconfig - update/deploy PASS: Run dcmanager subcloud add supplying --name parameter and validate the operation is not allowed PASS: Run dcmanager supplying subcommands: - kube/patch/prestage strategies PASS: Run dcmanager to apply patch and remove it PASS: Run dcmanager subcloud-backup: - create/delete/restore/show/upload PASS: Run subcloud-group: - add/delete/list/list-subclouds/show/update PASS: Run dcmanager subcloud strategy for: - patch/kubernetes/firmware PASS: Run dcmanager subcloud update command passing --name parameter supplying the following values: - current subcloud name (not changed) - different existing subcloud name PASS: Run dcmanager to migrate a subcloud passing --name parameter supplying a new subcloud name PASS: Run dcmanager to migrate a subcloud without --name parameter PASS: Run dcmanager to migrate a subcloud passing --name parameter supplying a new subcloud name and different subcloud name in bootstrap file PASS: Test dcmanager API response using cURL command line to validate new region name field PASS: Run full DC sanity and regression Story: 2010788 Task: 48217 Signed-off-by: Cristian Mondo <cristian.mondo@windriver.com> Change-Id: Id04f42504b8e325d9ec3880c240fe4a06e3a20b7
278 lines
9.5 KiB
Python
278 lines
9.5 KiB
Python
# Copyright (c) 2015 Ericsson AB
|
|
# Copyright (c) 2017-2023 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.
|
|
#
|
|
"""
|
|
SQLAlchemy models for dcmanager data.
|
|
"""
|
|
|
|
import datetime
|
|
import json
|
|
|
|
from oslo_db.sqlalchemy import models
|
|
|
|
from sqlalchemy.orm import backref
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy.orm import session as orm_session
|
|
|
|
from sqlalchemy import Boolean
|
|
from sqlalchemy import Column
|
|
from sqlalchemy import DateTime
|
|
from sqlalchemy import ForeignKey
|
|
from sqlalchemy import Integer
|
|
from sqlalchemy import String
|
|
from sqlalchemy import Text
|
|
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
from sqlalchemy.types import TypeDecorator
|
|
from sqlalchemy.types import VARCHAR
|
|
|
|
|
|
# from dcmanager.common import consts
|
|
|
|
BASE = declarative_base()
|
|
|
|
|
|
def get_session():
|
|
from dcmanager.db.sqlalchemy import api as db_api
|
|
|
|
return db_api.get_session()
|
|
|
|
|
|
class JSONEncodedDict(TypeDecorator):
|
|
"""Represents an immutable structure as a json-encoded string."""
|
|
|
|
impl = VARCHAR
|
|
|
|
def process_bind_param(self, value, dialect):
|
|
if value is not None:
|
|
value = json.dumps(value)
|
|
return value
|
|
|
|
def process_result_value(self, value, dialect):
|
|
if value is not None:
|
|
value = json.loads(value)
|
|
return value
|
|
|
|
|
|
class DCManagerBase(models.ModelBase,
|
|
models.SoftDeleteMixin,
|
|
models.TimestampMixin):
|
|
"""Base class for DC Manager Models."""
|
|
|
|
# __table_args__ = {'mysql_engine': 'InnoDB'}
|
|
|
|
def expire(self, session=None, attrs=None):
|
|
if not session:
|
|
session = orm_session.Session.object_session(self)
|
|
if not session:
|
|
session = get_session()
|
|
session.expire(self, attrs)
|
|
|
|
def refresh(self, session=None, attrs=None):
|
|
"""Refresh this object."""
|
|
if not session:
|
|
session = orm_session.Session.object_session(self)
|
|
if not session:
|
|
session = get_session()
|
|
session.refresh(self, attrs)
|
|
|
|
def delete(self, session=None):
|
|
"""Delete this object."""
|
|
if not session:
|
|
session = orm_session.Session.object_session(self)
|
|
if not session:
|
|
session = get_session()
|
|
session.begin()
|
|
session.delete(self)
|
|
session.commit()
|
|
|
|
|
|
class SystemPeer(BASE, DCManagerBase):
|
|
"""Represents a system peer"""
|
|
|
|
__tablename__ = 'system_peer'
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True, nullable=False)
|
|
peer_uuid = Column(String(36), unique=True)
|
|
peer_name = Column(String(255), unique=True)
|
|
manager_endpoint = Column(String(255))
|
|
manager_username = Column(String(255))
|
|
manager_password = Column(String(255))
|
|
peer_controller_gateway_ip = Column(String(255))
|
|
administrative_state = Column(String(255))
|
|
heartbeat_interval = Column(Integer)
|
|
heartbeat_failure_threshold = Column(Integer)
|
|
heartbeat_failure_policy = Column(String(255))
|
|
heartbeat_maintenance_timeout = Column(Integer)
|
|
|
|
|
|
class SubcloudGroup(BASE, DCManagerBase):
|
|
"""Represents a subcloud group"""
|
|
|
|
__tablename__ = 'subcloud_group'
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True, nullable=False)
|
|
name = Column(String(255), unique=True)
|
|
description = Column(String(255))
|
|
update_apply_type = Column(String(255))
|
|
max_parallel_subclouds = Column(Integer)
|
|
|
|
|
|
class Subcloud(BASE, DCManagerBase):
|
|
"""Represents a subcloud"""
|
|
|
|
__tablename__ = 'subclouds'
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
name = Column(String(255), unique=True)
|
|
description = Column(String(255))
|
|
location = Column(String(255))
|
|
software_version = Column(String(255))
|
|
management_state = Column(String(255))
|
|
availability_status = Column(String(255))
|
|
data_install = Column(String())
|
|
deploy_status = Column(String(255))
|
|
backup_status = Column(String(255))
|
|
backup_datetime = Column(DateTime(timezone=False))
|
|
error_description = Column(String(2048))
|
|
region_name = Column(String(255), unique=True)
|
|
data_upgrade = Column(String())
|
|
management_subnet = Column(String(255))
|
|
management_gateway_ip = Column(String(255))
|
|
management_start_ip = Column(String(255), unique=True)
|
|
management_end_ip = Column(String(255), unique=True)
|
|
openstack_installed = Column(Boolean, nullable=False, default=False)
|
|
systemcontroller_gateway_ip = Column(String(255))
|
|
audit_fail_count = Column(Integer)
|
|
first_identity_sync_complete = Column(Boolean, default=False)
|
|
rehome_data = Column(Text())
|
|
|
|
# multiple subclouds can be in a particular group
|
|
group_id = Column(Integer,
|
|
ForeignKey('subcloud_group.id'))
|
|
group = relationship(SubcloudGroup,
|
|
backref=backref('subcloud'))
|
|
|
|
|
|
class SubcloudAudits(BASE, DCManagerBase):
|
|
"""Represents the various audits for a subcloud"""
|
|
|
|
__tablename__ = 'subcloud_audits'
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
subcloud_id = Column(Integer,
|
|
ForeignKey('subclouds.id', ondelete='CASCADE'),
|
|
unique=True)
|
|
audit_started_at = Column(DateTime(timezone=False), default=datetime.datetime.min)
|
|
audit_finished_at = Column(DateTime(timezone=False), default=datetime.datetime.min)
|
|
state_update_requested = Column(Boolean, nullable=False, default=False)
|
|
patch_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
load_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
firmware_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
kubernetes_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
kube_rootca_update_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
spare_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
spare2_audit_requested = Column(Boolean, nullable=False, default=False)
|
|
reserved = Column(Text)
|
|
|
|
|
|
class SubcloudStatus(BASE, DCManagerBase):
|
|
"""Represents the status of an endpoint in a subcloud"""
|
|
|
|
__tablename__ = "subcloud_status"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
subcloud_id = Column(Integer,
|
|
ForeignKey('subclouds.id', ondelete='CASCADE'))
|
|
endpoint_type = Column(String(255))
|
|
sync_status = Column(String(255))
|
|
|
|
|
|
class SwUpdateStrategy(BASE, DCManagerBase):
|
|
"""Represents a software update for subclouds"""
|
|
|
|
__tablename__ = "sw_update_strategy"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
type = Column(String(255), unique=True)
|
|
subcloud_apply_type = Column(String(255))
|
|
max_parallel_subclouds = Column(Integer)
|
|
stop_on_failure = Column(Boolean)
|
|
state = Column(String(255))
|
|
extra_args = Column(JSONEncodedDict)
|
|
|
|
|
|
class SwUpdateOpts(BASE, DCManagerBase):
|
|
"""Represents software update options for a subcloud"""
|
|
|
|
__tablename__ = "sw_update_opts"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
subcloud_id = Column(Integer,
|
|
ForeignKey('subclouds.id', ondelete='CASCADE'))
|
|
|
|
storage_apply_type = Column(String(255))
|
|
worker_apply_type = Column(String(255))
|
|
max_parallel_workers = Column(Integer)
|
|
alarm_restriction_type = Column(String(255))
|
|
default_instance_action = Column(String(255))
|
|
|
|
|
|
class SwUpdateOptsDefault(BASE, DCManagerBase):
|
|
"""Represents default software update options for subclouds"""
|
|
|
|
__tablename__ = "sw_update_opts_default"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
|
|
subcloud_id = Column(Integer)
|
|
storage_apply_type = Column(String(255))
|
|
worker_apply_type = Column(String(255))
|
|
max_parallel_workers = Column(Integer)
|
|
alarm_restriction_type = Column(String(255))
|
|
default_instance_action = Column(String(255))
|
|
|
|
|
|
class StrategyStep(BASE, DCManagerBase):
|
|
"""Represents a step for patching or upgrading subclouds"""
|
|
|
|
__tablename__ = "strategy_steps"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
subcloud_id = Column(Integer,
|
|
ForeignKey('subclouds.id', ondelete='CASCADE'),
|
|
unique=True)
|
|
stage = Column(Integer)
|
|
state = Column(String(255))
|
|
details = Column(String(255))
|
|
started_at = Column(DateTime)
|
|
finished_at = Column(DateTime)
|
|
subcloud = relationship('Subcloud', backref=backref("strategy_steps",
|
|
cascade="all,delete"))
|
|
|
|
|
|
class SubcloudAlarmSummary(BASE, DCManagerBase):
|
|
"""Represents a Distributed Cloud subcloud alarm aggregate"""
|
|
__tablename__ = 'subcloud_alarms'
|
|
id = Column(Integer, primary_key=True, nullable=False, autoincrement=True)
|
|
uuid = Column(String(36), unique=True)
|
|
name = Column('name', String(255), unique=True)
|
|
critical_alarms = Column('critical_alarms', Integer)
|
|
major_alarms = Column('major_alarms', Integer)
|
|
minor_alarms = Column('minor_alarms', Integer)
|
|
warnings = Column('warnings', Integer)
|
|
cloud_status = Column('cloud_status', String(64))
|