vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / tests / resources / service-templates / tosca-simple-1.0 / node-cellar / types / nodejs.yaml
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 imports:
17   - os.yaml
18
19 node_types:
20
21   nodejs.Server:
22     description: >-
23       Node.js server application.
24     derived_from: tosca.nodes.WebServer
25     artifacts:
26       nodejs:
27         description: >-
28           Node.js application package.
29         type: os.Archive
30         file: https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x64.tar.xz
31         deploy_path: /opt/nodejs
32     capabilities:
33       data_endpoint: # @override
34         type: tosca.capabilities.Endpoint
35         properties:
36           port:
37             type: tosca.datatypes.network.PortDef
38             default: 8080
39           url_path:
40             type: string
41             default: /
42       admin_endpoint: # @override
43         type: tosca.capabilities.Endpoint.Admin
44         properties:
45           port:
46             type: tosca.datatypes.network.PortDef
47             default: 8080
48           url_path:
49             type: string
50             default: /admin
51       host: # @override
52         type: tosca.capabilities.Container
53         valid_source_types: [ nodejs.Application ]
54         occurrences: [ 0, 1 ]
55
56   nodejs.Application:
57     derived_from: tosca.nodes.WebApplication
58     capabilities:
59       app_endpoint: # @override
60         type: tosca.capabilities.Endpoint
61         properties:
62           port:
63             type: tosca.datatypes.network.PortDef
64             default: 8080
65     requirements:
66       - host: # @override
67           capability: tosca.capabilities.Container
68           node: nodejs.Server
69           relationship: tosca.relationships.HostedOn