36fc84bed3
Adding ability to edit clusters (only description and name at this moment)in order to change their public/protected attributes later APIImpact PATCH /v1.1/{tenant_id}/clusters/{cluster_id} Partially implements:: blueprint api-for-objects-update Change-Id: I7b86362e4db576ba5cdb20dff1ae904497a1852a
104 lines
3.8 KiB
Python
104 lines
3.8 KiB
Python
# Copyright (c) 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.
|
|
|
|
from oslo_config import cfg
|
|
|
|
import sahara.exceptions as ex
|
|
from sahara.i18n import _
|
|
import sahara.service.api as api
|
|
import sahara.service.validations.base as b
|
|
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
def check_cluster_create(data, **kwargs):
|
|
b.check_cluster_unique_name(data['name'])
|
|
_check_cluster_create(data)
|
|
|
|
|
|
def check_multiple_clusters_create(data, **kwargs):
|
|
_check_cluster_create(data)
|
|
for counter in range(data['count']):
|
|
cluster_name = api.get_multiple_cluster_name(data['count'],
|
|
data['name'],
|
|
counter + 1)
|
|
b.check_cluster_unique_name(cluster_name)
|
|
|
|
|
|
def _check_cluster_create(data):
|
|
b.check_plugin_name_exists(data['plugin_name'])
|
|
b.check_plugin_supports_version(data['plugin_name'],
|
|
data['hadoop_version'])
|
|
if data.get('cluster_template_id'):
|
|
ct_id = data['cluster_template_id']
|
|
b.check_cluster_template_exists(ct_id)
|
|
if not data.get('node_groups'):
|
|
b.check_node_groups_in_cluster_templates(data['name'],
|
|
data['plugin_name'],
|
|
data['hadoop_version'],
|
|
ct_id)
|
|
|
|
if data.get('user_keypair_id'):
|
|
b.check_keypair_exists(data['user_keypair_id'])
|
|
|
|
default_image_id = _get_cluster_field(data, 'default_image_id')
|
|
if default_image_id:
|
|
b.check_image_registered(default_image_id)
|
|
b.check_required_image_tags(data['plugin_name'],
|
|
data['hadoop_version'],
|
|
default_image_id)
|
|
else:
|
|
raise ex.NotFoundException('default_image_id',
|
|
_("'%s' field is not found"))
|
|
|
|
b.check_all_configurations(data)
|
|
|
|
if data.get('anti_affinity'):
|
|
b.check_node_processes(data['plugin_name'], data['hadoop_version'],
|
|
data['anti_affinity'])
|
|
|
|
if data.get('node_groups'):
|
|
proxy_gateway_used = len([ng for ng in data['node_groups'] if
|
|
ng.get('is_proxy_gateway', False)]) > 0
|
|
b.check_network_config(data['node_groups'], proxy_gateway_used)
|
|
b.check_cluster_hostnames_lengths(data['name'], data['node_groups'])
|
|
|
|
neutron_net_id = _get_cluster_field(data, 'neutron_management_network')
|
|
if neutron_net_id:
|
|
if not CONF.use_neutron:
|
|
raise ex.InvalidReferenceException(
|
|
_("'neutron_management_network' field can't be used "
|
|
"with 'use_neutron=False'"))
|
|
b.check_network_exists(neutron_net_id)
|
|
else:
|
|
if CONF.use_neutron:
|
|
raise ex.NotFoundException('neutron_management_network',
|
|
_("'%s' field is not found"))
|
|
|
|
|
|
def _get_cluster_field(cluster, field):
|
|
if cluster.get(field):
|
|
return cluster[field]
|
|
|
|
if cluster.get('cluster_template_id'):
|
|
cluster_template = api.get_cluster_template(
|
|
id=cluster['cluster_template_id'])
|
|
|
|
if cluster_template.get(field):
|
|
return cluster_template[field]
|
|
|
|
return None
|