summaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2018-03-04 14:53:33 +0200
committerMichael Lando <ml636r@att.com>2018-03-07 13:19:05 +0000
commita5445100050e49e83f73424198d73cd72d672a4d (patch)
treecacf4df817df31be23e4e790d1dda857bdae061e /asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml
parent51157f92c21976cba4914c378aaa3cba49826931 (diff)
Sync Integ to Master
Change-Id: I71e3acc26fa612127756ac04073a522b9cc6cd74 Issue-ID: SDC-977 Signed-off-by: Gitelman, Tal (tg851x) <tg851x@intl.att.com>
Diffstat (limited to 'asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml')
-rw-r--r--asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml77
1 files changed, 0 insertions, 77 deletions
diff --git a/asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml b/asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml
deleted file mode 100644
index 3a972a81e0..0000000000
--- a/asdc-tests/src/test/resources/CI/components/normativeTypes/compute/normative-types-compute.yml
+++ /dev/null
@@ -1,77 +0,0 @@
-tosca_definitions_version: tosca_simple_yaml_1_0_0_wd03
-
-template_name: tosca-normative-types-compute
-template_author: TOSCA TC
-template_version: 1.0.0.wd03-SNAPSHOT
-
-description: Contains the normative types definition.
-imports:
- - "tosca-normative-types-root:1.0.0.wd03-SNAPSHOT"
-
-node_types:
- # Infrastructure components
- tosca.nodes.Compute:
- derived_from: tosca.nodes.Root
- description: >
- Represents a real or virtual machine or ‘server’. Informations specified on the Compute
- node will be used to find the machine that fits the given requirements in the cloud
- available machines. If no sizing informations are specified the cloud’s provider default
- machine will be used. It is strongly recommended to specify the required cpus and memory
- at least.
- tags:
- icon: /images/compute.png
- properties:
- num_cpus:
- type: integer
- required: false
- constraints:
- - greater_than: 0
- description: Number of (actual or virtual) CPUs associated with the Compute node.
- mem_size:
- type: integer
- required: false
- constraints:
- - greater_than: 0
- description: Size of memory, in Megabytes (MB), available to applications running on the Compute node.
- disk_size:
- type: integer
- required: false
- constraints:
- - greater_than: 0
- description: Size of the local disk, in Gigabytes (GB), available to applications running on the Compute node.
- os_arch:
- type: string
- constraints:
- - valid_values: ["x86_32", "x86_64"]
- description: The host Operating System (OS) architecture.
- os_type:
- type: string
- constraints:
- - valid_values: ["linux", "aix", "mac os", "windows"]
- description: The host Operating System (OS) type.
- os_distribution:
- type: string
- required: false
- description: The host Operating System (OS) distribution.
- os_version:
- type: string
- required: false
- description: The host Operating System version.
- attributes:
- ip_address:
- type: string
- description: >
- The primary IP address assigned by the cloud provider that applications may use to access the Compute node.
- Note: This is used by the platform provider to convey the primary address used to access the compute node. Future working drafts will address implementations that support floating or multiple IP addresses.
- requirements:
- network:
- type: tosca.capabilities.Connectivity
- lower_bound: 0
- upper_bound: unbounded
- capabilities:
- host:
- type: tosca.capabilities.Container
- properties:
- valid_node_types: [tosca.nodes.SoftwareComponent]
- attach: tosca.capabilities.Attachment
- scalable: tosca.capabilities.Scalable