From 4785bc1a2217bb5e4f4b593369e90e1057a62665 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Fri, 2 Jul 2021 14:42:06 +0100 Subject: Add ONAP standard Control Loop Element types The Policy, DCAE, HTTP, Kubernetes, and CDS Control Loop Elements run on participants delivered with and packaged with ONAP. These TOSCA files define the properties for Control Loop Elements on these participants as TOSCA node types. Developers who wish to run Control Loop Elements on these participants write a TOSCA Topology Template, which uses the Control Loop Element Node Types defined in these files. These Node type definitions should be preloaded into the Runtime database, which will be done in a future review. Issue-ID: POLICY-3341 Change-Id: Icc565bdfa1a59e1c1c551f13c48348ee6a8a4e27 Signed-off-by: liamfallon --- .../tosca/DcaeControlLoopElementType.yaml | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 common/src/main/resources/tosca/DcaeControlLoopElementType.yaml (limited to 'common/src/main/resources/tosca/DcaeControlLoopElementType.yaml') diff --git a/common/src/main/resources/tosca/DcaeControlLoopElementType.yaml b/common/src/main/resources/tosca/DcaeControlLoopElementType.yaml new file mode 100644 index 000000000..654a09470 --- /dev/null +++ b/common/src/main/resources/tosca/DcaeControlLoopElementType.yaml @@ -0,0 +1,49 @@ +# ============LICENSE_START======================================================= +# Copyright (C) 2021 Nordix Foundation. +# ================================================================================ +# 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. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= +tosca_definitions_version: tosca_simple_yaml_1_3 + +data_types: + org.onap.datatypes.policy.clamp.controlloop.DCAEControlLoopElementConsulInfo: + version: 1.0.0 + derived_from: tosca.datatypes.Root + properties: + consulUrl: + name: consulUrl + type: string + typeVersion: 0.0.0 + description: Consul url for this entry + required: true + consulBody: + name: consulBody + type: string + typeVersion: 0.0.0 + description: Body of Consul entry + required: true +node_types: + org.onap.policy.clamp.controlloop.DCAEMicroserviceControlLoopElement: + version: 1.0.1 + derived_from: org.onap.policy.clamp.controlloop.ControlLoopElement + properties: + dcaeBlueprint: + type: string + required: true + consulInfo: + type: list + required: false + entry_schema: + type: org.onap.datatypes.policy.clamp.controlloop.DCAEControlLoopElementConsulInfo -- cgit 1.2.3-korg