fuel-web/nailgun/nailgun/objects/cluster.py

1052 lines
36 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2013 Mirantis, Inc.
#
# 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.
"""
Cluster-related objects and collections
"""
import copy
from distutils.version import StrictVersion
import six
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql as psql
import yaml
from nailgun import consts
from nailgun.db import db
from nailgun.db.sqlalchemy import models
from nailgun.errors import errors
from nailgun.extensions import fire_callback_on_cluster_delete
from nailgun.extensions import fire_callback_on_node_collection_delete
from nailgun.logger import logger
from nailgun.objects import NailgunCollection
from nailgun.objects import NailgunObject
from nailgun.objects import Release
from nailgun.objects.serializers.cluster import ClusterSerializer
from nailgun.orchestrator import graph_configuration
from nailgun.plugins.manager import PluginManager
from nailgun.settings import settings
from nailgun.utils import AttributesGenerator
from nailgun.utils import dict_merge
from nailgun.utils import traverse
class Attributes(NailgunObject):
"""Cluster attributes object."""
#: SQLAlchemy model for Cluster attributes
model = models.Attributes
@classmethod
def generate_fields(cls, instance):
"""Generate field values for Cluster attributes using generators.
:param instance: Attributes instance
:returns: None
"""
instance.generated = traverse(
instance.generated or {},
AttributesGenerator,
{
'cluster': instance.cluster,
'settings': settings,
}
)
# TODO(ikalnitsky):
#
# Think about traversing "editable" attributes. It might be very
# useful to generate default values for editable attribute at
# cluster creation time.
@classmethod
def merged_attrs(cls, instance):
"""Generates merged dict of attributes
Result includes generated Cluster attributes recursively updated
by new values from editable attributes
:param instance: Attributes instance
:returns: dict of merged attributes
"""
return dict_merge(
instance.generated,
instance.editable
)
@classmethod
def merged_attrs_values(cls, instance):
"""Transforms raw dict of attributes into dict of facts
Raw dict is taken from :func:`merged_attrs`
The result of this function is a dict of facts that wil be sent to
orchestrator
:param instance: Attributes instance
:returns: dict of merged attributes
"""
attrs = cls.merged_attrs(instance)
for group_attrs in attrs.itervalues():
for attr, value in group_attrs.iteritems():
if isinstance(value, dict) and 'value' in value:
group_attrs[attr] = value['value']
if 'common' in attrs:
attrs.update(attrs.pop('common'))
if 'additional_components' in attrs:
for comp, enabled in attrs['additional_components'].iteritems():
if isinstance(enabled, bool):
attrs.setdefault(comp, {}).update({
"enabled": enabled
})
attrs.pop('additional_components')
return attrs
class Cluster(NailgunObject):
"""Cluster object."""
#: SQLAlchemy model for Cluster
model = models.Cluster
#: Serializer for Cluster
serializer = ClusterSerializer
@classmethod
def create(cls, data):
"""Create Cluster instance with specified parameters in DB.
This includes:
* creating Cluster attributes and generating default values \
(see :func:`create_attributes`)
* creating NetworkGroups for Cluster
* adding default pending changes (see :func:`add_pending_changes`)
* if "nodes" are specified in data then they are added to Cluster \
(see :func:`update_nodes`)
:param data: dictionary of key-value pairs as object fields
:returns: Cluster instance
"""
# TODO(enchantner): fix this temporary hack in clients
if "release_id" not in data:
release_id = data.pop("release", None)
data["release_id"] = release_id
assign_nodes = data.pop("nodes", [])
data["fuel_version"] = settings.VERSION["release"]
new_cluster = super(Cluster, cls).create(data)
cls.create_default_group(new_cluster)
cls.create_attributes(new_cluster)
cls.create_vmware_attributes(new_cluster)
cls.create_default_extensions(new_cluster)
try:
cls.get_network_manager(new_cluster).\
create_network_groups_and_config(new_cluster, data)
cls.add_pending_changes(new_cluster, "attributes")
cls.add_pending_changes(new_cluster, "networks")
cls.add_pending_changes(new_cluster, "vmware_attributes")
if assign_nodes:
cls.update_nodes(new_cluster, assign_nodes)
except (
errors.OutOfVLANs,
errors.OutOfIPs,
errors.NoSuitableCIDR,
errors.InvalidNetworkPool
) as exc:
db().delete(new_cluster)
raise errors.CannotCreate(exc.message)
db().flush()
return new_cluster
@classmethod
def delete(cls, instance):
node_ids = [
_id for (_id,) in
db().query(models.Node.id).
filter_by(cluster_id=instance.id).
order_by(models.Node.id)]
fire_callback_on_node_collection_delete(node_ids)
fire_callback_on_cluster_delete(instance)
super(Cluster, cls).delete(instance)
@classmethod
def get_default_kernel_params(cls, instance):
kernel_params = instance.attributes.editable.get("kernel_params")
if kernel_params and kernel_params.get("kernel"):
return kernel_params.get("kernel").get("value")
@classmethod
def create_attributes(cls, instance):
"""Create attributes for Cluster instance, generate their values
(see :func:`Attributes.generate_fields`)
:param instance: Cluster instance
:returns: None
"""
attributes = Attributes.create(
{
"editable": cls.get_default_editable_attributes(instance),
"generated": instance.release.attributes_metadata.get(
"generated"
),
"cluster_id": instance.id
}
)
Attributes.generate_fields(attributes)
db().flush()
return attributes
@classmethod
def create_default_extensions(cls, instance):
"""Sets default extensions list from release model
:param instance: Cluster instance
:returns: None
"""
instance.extensions = instance.release.extensions
db().flush()
@classmethod
def get_default_editable_attributes(cls, instance):
"""Get editable attributes from release metadata
:param instance: Cluster instance
:returns: Dict object
"""
editable = instance.release.attributes_metadata.get("editable")
# when attributes created we need to understand whether should plugin
# be applied for created cluster
plugin_attrs = PluginManager.get_plugin_attributes(instance)
editable = dict(plugin_attrs, **editable)
editable = traverse(editable, AttributesGenerator, {
'cluster': instance,
'settings': settings,
})
return editable
@classmethod
def get_attributes(cls, instance):
"""Get attributes for current Cluster instance
:param instance: Cluster instance
:returns: Attributes instance
"""
return db().query(models.Attributes).filter(
models.Attributes.cluster_id == instance.id
).first()
@classmethod
def update_attributes(cls, instance, data):
PluginManager.process_cluster_attributes(instance, data['editable'])
for key, value in data.iteritems():
setattr(instance.attributes, key, value)
cls.add_pending_changes(instance, "attributes")
db().flush()
@classmethod
def patch_attributes(cls, instance, data):
PluginManager.process_cluster_attributes(instance, data['editable'])
instance.attributes.editable = dict_merge(
instance.attributes.editable, data['editable'])
cls.add_pending_changes(instance, "attributes")
db().flush()
@classmethod
def get_editable_attributes(cls, instance):
attrs = cls.get_attributes(instance)
editable = attrs.editable
return {'editable': editable}
@classmethod
def get_updated_editable_attributes(cls, instance, data):
"""Same as get_editable_attributes but also merges given data.
:param instance: Cluster object
:param data: dict
:return: dict
"""
return {'editable': dict_merge(
cls.get_editable_attributes(instance)['editable'],
data.get('editable', {})
)}
@classmethod
def get_network_manager(cls, instance=None):
"""Get network manager for Cluster instance.
If instance is None then the default NetworkManager is returned
:param instance: Cluster instance
:returns: NetworkManager/NovaNetworkManager/NeutronManager
"""
if not instance:
from nailgun.network.manager import NetworkManager
return NetworkManager
ver = instance.release.environment_version
if instance.net_provider == 'neutron':
if StrictVersion(ver) >= StrictVersion('7.0'):
from nailgun.network.neutron import NeutronManager70
return NeutronManager70
from nailgun.network.neutron import NeutronManager
return NeutronManager
else:
if StrictVersion(ver) >= StrictVersion('7.0'):
from nailgun.network.nova_network import NovaNetworkManager70
return NovaNetworkManager70
from nailgun.network.nova_network import NovaNetworkManager
return NovaNetworkManager
@classmethod
def add_pending_changes(cls, instance, changes_type, node_id=None):
"""Add pending changes for current Cluster.
If node_id is specified then links created changes with node.
:param instance: Cluster instance
:param changes_type: name of changes to add
:param node_id: node id for changes
:returns: None
"""
logger.debug(
u"New pending changes in environment {0}: {1}{2}".format(
instance.id,
changes_type,
u" node_id={0}".format(node_id) if node_id else u""
)
)
# TODO(enchantner): check if node belongs to cluster
ex_chs = db().query(models.ClusterChanges).filter_by(
cluster=instance,
name=changes_type
)
if not node_id:
ex_chs = ex_chs.first()
else:
ex_chs = ex_chs.filter_by(node_id=node_id).first()
# do nothing if changes with the same name already pending
if ex_chs:
return
ch = models.ClusterChanges(
cluster_id=instance.id,
name=changes_type
)
if node_id:
ch.node_id = node_id
db().add(ch)
db().flush()
@classmethod
def get_nodes_not_for_deletion(cls, cluster):
"""All clusters nodes except nodes for deletion."""
return db().query(models.Node).filter_by(
cluster=cluster, pending_deletion=False).order_by(models.Node.id)
@classmethod
def clear_pending_changes(cls, instance, node_id=None):
"""Clear pending changes for current Cluster.
If node_id is specified then only clears changes connected
to this node.
:param instance: Cluster instance
:param node_id: node id for changes
:returns: None
"""
logger.debug(
u"Removing pending changes in environment {0}{1}".format(
instance.id,
u" where node_id={0}".format(node_id) if node_id else u""
)
)
chs = db().query(models.ClusterChanges).filter_by(
cluster_id=instance.id
)
if node_id:
chs = chs.filter_by(node_id=node_id)
map(db().delete, chs.all())
db().flush()
@classmethod
def update(cls, instance, data):
"""Update Cluster object instance with specified parameters in DB
If "nodes" are specified in data then they will replace existing ones
(see :func:`update_nodes`)
:param instance: Cluster instance
:param data: dictionary of key-value pairs as object fields
:returns: Cluster instance
"""
# fuel_version cannot be changed
data.pop("fuel_version", None)
nodes = data.pop("nodes", None)
changes = data.pop("changes", None)
super(Cluster, cls).update(instance, data)
if nodes is not None:
cls.update_nodes(instance, nodes)
if changes is not None:
cls.update_changes(instance, changes)
return instance
@classmethod
def update_nodes(cls, instance, nodes_ids):
"""Update Cluster nodes by specified node IDs
Nodes with specified IDs will replace existing ones in Cluster
:param instance: Cluster instance
:param nodes_ids: list of nodes ids
:returns: None
"""
# TODO(NAME): sepatate nodes
# for deletion and addition by set().
new_nodes = []
if nodes_ids:
new_nodes = db().query(models.Node).filter(
models.Node.id.in_(nodes_ids)
)
nodes_to_remove = [n for n in instance.nodes
if n not in new_nodes]
nodes_to_add = [n for n in new_nodes
if n not in instance.nodes]
for node in nodes_to_add:
if not node.online:
raise errors.NodeOffline(
u"Cannot add offline node "
u"'{0}' to environment".format(node.id)
)
# we should reset hostname to default value to guarantee
# hostnames uniqueness for nodes outside clusters
from nailgun.objects import Node
for node in nodes_to_remove:
node.hostname = Node.default_slave_name(node)
map(instance.nodes.remove, nodes_to_remove)
map(instance.nodes.append, nodes_to_add)
net_manager = cls.get_network_manager(instance)
map(
net_manager.clear_assigned_networks,
nodes_to_remove
)
map(
net_manager.clear_bond_configuration,
nodes_to_remove
)
cls.replace_provisioning_info_on_nodes(instance, [], nodes_to_remove)
cls.replace_deployment_info_on_nodes(instance, [], nodes_to_remove)
from nailgun.objects import NodeCollection
NodeCollection.reset_network_template(nodes_to_remove)
map(
net_manager.assign_networks_by_default,
nodes_to_add
)
cls.update_nodes_network_template(instance, nodes_to_add)
db().flush()
@classmethod
def update_changes(cls, instance, changes):
instance.changes_list = [
models.ClusterChanges(**change) for change in changes
]
db().flush()
@classmethod
def get_ifaces_for_network_in_cluster(cls, instance, net):
"""Method for receiving node_id:iface pairs for all nodes in cluster
:param instance: Cluster instance
:param net: Nailgun specific network name
:type net: str
:returns: List of node_id, iface pairs for all nodes in cluster.
"""
nics_db = db().query(
models.NodeNICInterface.node_id,
models.NodeNICInterface.name
).filter(
models.NodeNICInterface.node.has(cluster_id=instance.id),
models.NodeNICInterface.assigned_networks_list.any(name=net)
)
bonds_db = db().query(
models.NodeBondInterface.node_id,
models.NodeBondInterface.name
).filter(
models.NodeBondInterface.node.has(cluster_id=instance.id),
models.NodeBondInterface.assigned_networks_list.any(name=net)
)
return nics_db.union(bonds_db)
@classmethod
def replace_provisioning_info_on_nodes(cls, instance, data, nodes):
for node in nodes:
node_data = next((n for n in data if node.uid == n.get('uid')), {})
node.replaced_provisioning_info = node_data
@classmethod
def replace_deployment_info_on_nodes(cls, instance, data, nodes):
for node in instance.nodes:
node_data = [n for n in data if node.uid == n.get('uid')]
node.replaced_deployment_info = node_data
@classmethod
def replace_provisioning_info(cls, instance, data):
received_nodes = data.pop('nodes', [])
instance.is_customized = True
instance.replaced_provisioning_info = data
cls.replace_provisioning_info_on_nodes(
instance, received_nodes, instance.nodes)
return cls.get_provisioning_info(instance)
@classmethod
def replace_deployment_info(cls, instance, data):
instance.is_customized = True
cls.replace_deployment_info_on_nodes(instance, data, instance.nodes)
return cls.get_deployment_info(instance)
@classmethod
def get_provisioning_info(cls, instance):
data = {}
if instance.replaced_provisioning_info:
data.update(instance.replaced_provisioning_info)
nodes = []
for node in instance.nodes:
if node.replaced_provisioning_info:
nodes.append(node.replaced_provisioning_info)
if data:
data['nodes'] = nodes
return data
@classmethod
def get_deployment_info(cls, instance):
data = []
for node in instance.nodes:
if node.replaced_deployment_info:
data.extend(node.replaced_deployment_info)
return data
@classmethod
def get_creds(cls, instance):
return instance.attributes.editable['access']
@classmethod
def should_assign_public_to_all_nodes(cls, instance):
"""Check if Public network is to be assigned to all nodes in cluster
:param instance: cluster instance
:returns: True when Public network is to be assigned to all nodes
"""
if instance.net_provider == \
consts.CLUSTER_NET_PROVIDERS.nova_network:
return True
assignment = instance.attributes.editable.get(
'public_network_assignment')
if not assignment or assignment['assign_to_all_nodes']['value']:
return True
return False
@classmethod
def neutron_dvr_enabled(cls, instance):
neutron_attrs = instance.attributes.editable.get(
'neutron_advanced_configuration')
if neutron_attrs:
return neutron_attrs['neutron_dvr']['value']
else:
return False
@classmethod
def get_roles(cls, instance):
"""Returns a dictionary of node roles available for deployment.
:param instance: cluster instance
:returns: a dictionary of roles metadata
"""
available_roles = copy.deepcopy(instance.release.roles_metadata)
available_roles.update(
PluginManager.get_plugins_node_roles(instance))
return available_roles
@classmethod
def set_primary_role(cls, instance, nodes, role_name):
"""Method for assigning primary attribute for specific role.
- verify that there is no primary attribute of specific role
assigned to cluster nodes with this role in role list
or pending role list, and this node is not marked for deletion
- if there is no primary role assigned, filter nodes which have current
role in roles or pending_roles
- if there is nodes with ready state - they should have higher priority
- if role was in primary_role_list - change primary attribute
for that association, same for role_list, this is required
because deployment_serializer used by cli to generate deployment info
:param instance: Cluster db objects
:param nodes: list of Node db objects
:param role_name: string with known role name
"""
if role_name not in cls.get_roles(instance):
logger.warning(
'Trying to assign primary for non-existing role %s', role_name)
return
node = cls.get_primary_node(instance, role_name)
if not node:
# get nodes with a given role name which are not going to be
# removed
filtered_nodes = []
for node in nodes:
if (not node.pending_deletion and (
role_name in set(node.roles + node.pending_roles))):
filtered_nodes.append(node)
filtered_nodes = sorted(filtered_nodes, key=lambda node: node.id)
if filtered_nodes:
primary_node = next((
node for node in filtered_nodes
if node.status == consts.NODE_STATUSES.ready),
filtered_nodes[0])
primary_node.primary_roles = list(primary_node.primary_roles)
primary_node.primary_roles.append(role_name)
db().flush()
@classmethod
def set_primary_roles(cls, instance, nodes):
"""Assignment of all primary attribute for all roles that requires it.
This method is idempotent
To mark role as primary add has_primary: true attribute to release
:param instance: Cluster db object
:param nodes: list of Node db objects
"""
if not instance.is_ha_mode:
return
roles_metadata = cls.get_roles(instance)
for role, meta in six.iteritems(roles_metadata):
if meta.get('has_primary'):
cls.set_primary_role(instance, nodes, role)
@classmethod
def get_nodes_by_role(cls, instance, role_name):
"""Get nodes related to some specific role
:param instance: cluster db object
:type: python object
:param role_name: node role name
:type: string
"""
if role_name not in cls.get_roles(instance):
logger.warning("%s role doesn't exist", role_name)
return []
nodes = db().query(models.Node).filter_by(
cluster_id=instance.id
).filter(sa.or_(
models.Node.roles.any(role_name),
models.Node.pending_roles.any(role_name)
)).all()
return nodes
@classmethod
def get_primary_node(cls, instance, role_name):
"""Get primary node for role_name
If primary node is not found None will be returned
Pending roles and roles are used in search
:param instance: cluster db object
:type: python object
:param role_name: node role name
:type: string
:returns: node db object or None
"""
logger.debug("Getting primary node for role: %s", role_name)
if role_name not in cls.get_roles(instance):
logger.debug("Role not found: %s", role_name)
return None
primary_node = db().query(models.Node).filter_by(
pending_deletion=False,
cluster_id=instance.id
).filter(
models.Node.primary_roles.any(role_name)
).first()
if primary_node is None:
logger.debug("Not found primary node for role: %s", role_name)
else:
logger.debug("Found primary node: %s for role: %s",
primary_node.id, role_name)
return primary_node
@classmethod
def get_controllers_group_id(cls, instance):
return cls.get_controllers_node_group(instance).id
@classmethod
def get_controllers_node_group(cls, instance):
return cls.get_node_group(instance, ['controller'])
@classmethod
def get_node_group(cls, instance, noderoles):
"""Returns a node group for a given node roles.
If a given node roles have different node groups, the error
will be raised, so it's mandatory to have them the same
node group.
:param instance: a Cluster instance
:param noderoles: a list of node roles
:returns: a common NodeGroup instance
"""
psql_noderoles = sa.cast(
psql.array(noderoles),
psql.ARRAY(sa.String(consts.ROLE_NAME_MAX_SIZE)))
nodegroups = db().query(models.NodeGroup).join(models.Node).filter(
models.Node.cluster_id == instance.id,
False == models.Node.pending_deletion
).filter(sa.or_(
models.Node.roles.overlap(psql_noderoles),
models.Node.pending_roles.overlap(psql_noderoles)
)).all()
# NOTE(ikalnitsky):
# The 'nodegroups' may be an empty list only in case when there's
# no nodes with a given 'noderoles' in the cluster. I think we
# should reconsider this behaviour, and propogate some error up
# above, because returning default node group doesn't look like
# a right choice here.
if not nodegroups:
return cls.get_default_group(instance)
if len(nodegroups) > 1:
raise errors.CanNotFindCommonNodeGroup(
'Node roles [{0}] has more than one common node group'.format(
', '.join(noderoles)))
return nodegroups[0]
@classmethod
def get_bond_interfaces_for_all_nodes(cls, instance, networks=None):
bond_interfaces_query = db().query(models.NodeBondInterface).\
join(models.Node).filter(models.Node.cluster_id == instance.id)
if networks:
bond_interfaces_query = bond_interfaces_query.join(
models.NodeBondInterface.assigned_networks_list,
aliased=True).filter(models.NetworkGroup.id.in_(networks))
return bond_interfaces_query.all()
@classmethod
def get_nic_interfaces_for_all_nodes(cls, instance, networks=None):
nic_interfaces_query = db().query(models.NodeNICInterface).\
join(models.Node).filter(models.Node.cluster_id == instance.id)
if networks:
nic_interfaces_query = nic_interfaces_query.join(
models.NodeNICInterface.assigned_networks_list, aliased=True).\
filter(models.NetworkGroup.id.in_(networks))
return nic_interfaces_query.all()
@classmethod
def get_default_group(cls, instance):
return [g for g in instance.node_groups
if g.name == consts.NODE_GROUPS.default][0]
@classmethod
def create_default_group(cls, instance):
node_group = models.NodeGroup(name=consts.NODE_GROUPS.default)
instance.node_groups.append(node_group)
db.add(node_group)
db().flush()
return node_group
@classmethod
def get_deployment_tasks(cls, instance):
"""Return deployment graph for cluster based on cluster attributes
- if there is deployment_graph defined by user - use it instead of
defined
- if instance assigned for patching - return custom patching graph
- else return default for release and enabled plugins
deployment graph
"""
if instance.deployment_tasks:
return instance.deployment_tasks
elif instance.pending_release_id:
return yaml.load(graph_configuration.PATCHING)
else:
release_deployment_tasks = \
Release.get_deployment_tasks(instance.release)
plugin_deployment_tasks = \
PluginManager.get_plugins_deployment_tasks(instance)
return release_deployment_tasks + plugin_deployment_tasks
@classmethod
def get_volumes_metadata(cls, instance):
"""Return proper volumes metadata for cluster
Metadata consists of general volumes metadata from release
and volumes metadata from plugins which are releated to this cluster
:param instance: Cluster DB instance
:returns: dict -- object with merged volumes metadata
"""
volumes_metadata = copy.deepcopy(instance.release.volumes_metadata)
plugin_volumes = PluginManager.get_volumes_metadata(instance)
volumes_metadata['volumes_roles_mapping'].update(
plugin_volumes['volumes_roles_mapping'])
volumes_metadata['volumes'].extend(plugin_volumes['volumes'])
return volumes_metadata
@classmethod
def create_vmware_attributes(cls, instance):
"""Store VmwareAttributes instance into DB."""
vmware_metadata = instance.release.vmware_attributes_metadata
if vmware_metadata:
return VmwareAttributes.create(
{
"editable": vmware_metadata.get("editable"),
"cluster_id": instance.id
}
)
return None
@classmethod
def get_create_data(cls, instance):
"""Return common parameters cluster was created with.
This method is compatible with :func:`create` and used to create
a new cluster with the same settings including the network
configuration.
:returns: a dict of key-value pairs as a cluster create data
"""
data = {
"name": instance.name,
"mode": instance.mode,
"net_provider": instance.net_provider,
"release_id": instance.release.id,
}
data.update(cls.get_network_manager(instance).
get_network_config_create_data(instance))
return data
@classmethod
def get_vmware_attributes(cls, instance):
"""Get VmwareAttributes instance from DB.
Now we have relation with cluster 1:1.
"""
return db().query(models.VmwareAttributes).filter(
models.VmwareAttributes.cluster_id == instance.id
).first()
@classmethod
def get_default_vmware_attributes(cls, instance):
"""Get metadata from release with empty value section."""
editable = instance.release.vmware_attributes_metadata.get("editable")
editable = traverse(editable, AttributesGenerator, {
'cluster': instance,
'settings': settings,
})
return editable
@classmethod
def update_vmware_attributes(cls, instance, data):
"""Update Vmware attributes.
Actually we allways update only value section in editable.
"""
metadata = instance.vmware_attributes.editable['metadata']
value = data.get('editable', {}).get('value')
vmware_attr = {
'metadata': metadata,
'value': value
}
setattr(instance.vmware_attributes, 'editable', vmware_attr)
cls.add_pending_changes(instance, "vmware_attributes")
db().flush()
vmware_attr.pop('metadata')
return vmware_attr
@classmethod
def is_vmware_enabled(cls, instance):
"""Check if current cluster supports vmware configuration."""
attributes = cls.get_attributes(instance).editable
return attributes.get('common', {}).get('use_vcenter', {}).get('value')
@staticmethod
def adjust_nodes_lists_on_controller_removing(instance, nodes_to_delete,
nodes_to_deploy):
"""Adds controllers to nodes_to_deploy if deleting other controllers
:param instance: instance of SqlAlchemy cluster
:param nodes_to_delete: list of nodes to be deleted
:param nodes_to_deploy: list of nodes to be deployed
:return:
"""
if instance is None:
return
controllers_ids_to_delete = set([n.id for n in nodes_to_delete
if 'controller' in n.all_roles])
if controllers_ids_to_delete:
ids_to_deploy = set([n.id for n in nodes_to_deploy])
controllers_to_deploy = set(
filter(lambda n: (n.id not in controllers_ids_to_delete
and n.id not in ids_to_deploy
and 'controller' in n.all_roles),
instance.nodes))
nodes_to_deploy.extend(controllers_to_deploy)
@classmethod
def get_repo_urls(self, instance):
repos = instance.attributes.editable['repo_setup']['repos']['value']
return tuple(set([r['uri'] for r in repos]))
@classmethod
def get_nodes_to_spawn_vms(cls, instance):
nodes = []
for node in cls.get_nodes_by_role(instance,
consts.VIRTUAL_NODE_TYPES.virt):
for vm in node.attributes.vms_conf:
if not vm.get('created'):
nodes.append(node)
return nodes
@classmethod
def mark_vms_as_created(cls, instance):
nodes = cls.get_nodes_by_role(instance, consts.VIRTUAL_NODE_TYPES.virt)
for node in nodes:
vms_conf = copy.deepcopy(node.attributes.vms_conf)
for vm in vms_conf:
if not vm.get('created'):
vm['created'] = True
node.attributes.vms_conf = vms_conf
db().flush()
@classmethod
def get_network_roles(cls, instance):
"""Method for receiving network roles for particular cluster
:param instance: nailgun.db.sqlalchemy.models.Cluster instance
:returns: List of network roles' descriptions
"""
return (instance.release.network_roles_metadata +
PluginManager.get_network_roles(instance))
@classmethod
def set_network_template(cls, instance, template):
instance.network_config.configuration_template = template
cls.update_nodes_network_template(instance, instance.nodes)
db().flush()
if template is None:
net_manager = cls.get_network_manager(instance)
for node in instance.nodes:
net_manager.clear_bond_configuration(node)
net_manager.assign_networks_by_default(node)
@classmethod
def update_nodes_network_template(cls, instance, nodes):
from nailgun.objects import Node
template = instance.network_config.configuration_template
for node in nodes:
Node.apply_network_template(node, template)
@classmethod
def get_nodes_ids(cls, instance):
return [x[0] for x in db().query(models.Node.id).filter(
models.Node.cluster_id == instance.id).all()]
@classmethod
def get_assigned_roles(cls, instance):
"""Get list of all roles currently assigned to nodes in cluster
:param instance: nailgun.db.sqlalchemy.models.Cluster instance
:returns: List of node roles currently assigned
"""
pending_roles = db().query(
sa.func.unnest(models.Node.pending_roles)
).filter_by(
cluster_id=instance.id
).distinct().all()
pending_roles = [pr[0] for pr in pending_roles]
roles = db().query(
sa.func.unnest(models.Node.roles)
).filter_by(
cluster_id=instance.id
).distinct().all()
roles = [r[0] for r in roles]
return set(pending_roles + roles)
@classmethod
def is_network_modification_locked(cls, instance):
"""Checks whether network settings can be modified or deleted.
The result depends on the current status of cluster.
"""
allowed = [consts.CLUSTER_STATUSES.new,
consts.CLUSTER_STATUSES.stopped,
consts.CLUSTER_STATUSES.operational,
consts.CLUSTER_STATUSES.error]
return instance.status not in allowed
class ClusterCollection(NailgunCollection):
"""Cluster collection."""
#: Single Cluster object class
single = Cluster
class VmwareAttributes(NailgunObject):
model = models.VmwareAttributes