c3b1c08a57
Adding shared across tenants and protected from modifictaion resources support. Implemented for clusters, cluster templates, node group templates, data sources, job executions, jobs, job binaries and job binary internals. Changes: * Added validation checks to service.validations.acl * Changed validation schema's to support "is_public" and "is_protected" fields * Added validation of "is_protected" field for update(scale/cancel) and delete methods of corresponding resources * Extended get and list methods outputs with "is_public" resources * Added unit tests for "is_public" and "is_protected" resources Change-Id: I1a3cb14b8de70256e6aa27312dde341e85fc376c Partially-Implements: blueprint shared-protected-resources
117 lines
3.1 KiB
Python
117 lines
3.1 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.
|
|
|
|
import copy
|
|
|
|
from sahara.service.validations import shares
|
|
|
|
NODE_GROUP_TEMPLATE_SCHEMA = {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 50,
|
|
"format": "valid_name_hostname",
|
|
},
|
|
"flavor_id": {
|
|
'type': 'flavor',
|
|
},
|
|
"plugin_name": {
|
|
"type": "string",
|
|
},
|
|
"hadoop_version": {
|
|
"type": "string",
|
|
},
|
|
"node_processes": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"image_id": {
|
|
"type": ["string", "null"],
|
|
"format": "uuid",
|
|
},
|
|
"node_configs": {
|
|
"type": ["configs", "null"],
|
|
},
|
|
"volumes_per_node": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
},
|
|
"volumes_size": {
|
|
"type": ["integer", "null"],
|
|
"minimum": 1,
|
|
},
|
|
"volume_type": {
|
|
"type": ["string", "null"],
|
|
},
|
|
"volumes_availability_zone": {
|
|
"type": ["string", "null"],
|
|
},
|
|
"volume_mount_prefix": {
|
|
"type": ["string", "null"],
|
|
"format": "posix_path",
|
|
},
|
|
"description": {
|
|
"type": ["string", "null"],
|
|
},
|
|
"floating_ip_pool": {
|
|
"type": ["string", "null"],
|
|
},
|
|
"security_groups": {
|
|
"type": ["array", "null"],
|
|
"items": {"type": "string"}
|
|
},
|
|
"auto_security_group": {
|
|
"type": ["boolean", "null"],
|
|
},
|
|
"availability_zone": {
|
|
"type": ["string", "null"],
|
|
},
|
|
"is_proxy_gateway": {
|
|
"type": ["boolean", "null"],
|
|
},
|
|
"volume_local_to_instance": {
|
|
"type": ["boolean", "null"]
|
|
},
|
|
"shares": copy.deepcopy(shares.SHARE_SCHEMA),
|
|
"use_autoconfig": {
|
|
"type": ["boolean", "null"]
|
|
},
|
|
"is_public": {
|
|
"type": ["boolean", "null"],
|
|
},
|
|
"is_protected": {
|
|
"type": ["boolean", "null"],
|
|
}
|
|
},
|
|
"additionalProperties": False,
|
|
"required": [
|
|
"name",
|
|
"flavor_id",
|
|
"plugin_name",
|
|
"hadoop_version",
|
|
"node_processes",
|
|
]
|
|
}
|
|
|
|
# For an update we do not require any fields but we want the given
|
|
# fields to be validated
|
|
NODE_GROUP_TEMPLATE_UPDATE_SCHEMA = copy.copy(NODE_GROUP_TEMPLATE_SCHEMA)
|
|
NODE_GROUP_TEMPLATE_UPDATE_SCHEMA["required"] = []
|