blob: 5ae7fbd958aab2782e72ce965ba04d453eef8f06 [file] [log] [blame]
Pingping Linadef86c2017-01-23 22:36:46 +00001tosca_definitions_version: tosca_simple_yaml_1_0
2
Pingping Linadef86c2017-01-23 22:36:46 +00003imports:
4 - custom_types/xos.yaml
5
Pingping Lin07cb9662017-01-25 18:29:09 -08006description: deployment config, generated by platform-install
7
Pingping Linadef86c2017-01-23 22:36:46 +00008topology_template:
9 node_templates:
10
Pingping Lin07cb9662017-01-25 18:29:09 -080011# Flavors
12
Pingping Linadef86c2017-01-23 22:36:46 +000013 m1.small:
14 type: tosca.nodes.Flavor
15
16 m1.medium:
17 type: tosca.nodes.Flavor
18
19 m1.large:
20 type: tosca.nodes.Flavor
21
22 m1.xlarge:
23 type: tosca.nodes.Flavor
24
Pingping Lin07cb9662017-01-25 18:29:09 -080025
26# Deployment
Pingping Linadef86c2017-01-23 22:36:46 +000027 MyDeployment:
28 type: tosca.nodes.Deployment
29 requirements:
30 - m1.small:
Pingping Lin07cb9662017-01-25 18:29:09 -080031 node: m1.small
32 relationship: tosca.relationships.SupportsFlavor
Pingping Linadef86c2017-01-23 22:36:46 +000033
Pingping Lin07cb9662017-01-25 18:29:09 -080034 - m1.medium:
35 node: m1.medium
36 relationship: tosca.relationships.SupportsFlavor
37
38 - m1.large:
39 node: m1.large
40 relationship: tosca.relationships.SupportsFlavor
41
42 - m1.xlarge:
43 node: m1.xlarge
44 relationship: tosca.relationships.SupportsFlavor
45
46
47# Site
Pingping Linadef86c2017-01-23 22:36:46 +000048 mysite:
49 type: tosca.nodes.Site
50 properties:
51 display_name: MySite
Pingping Lin07cb9662017-01-25 18:29:09 -080052 site_url: http://mysite.opencloud.us/
53 hosts_nodes: true
Pingping Linadef86c2017-01-23 22:36:46 +000054 requirements:
Pingping Lin07cb9662017-01-25 18:29:09 -080055 - deployment:
56 node: MyDeployment
57 relationship: tosca.relationships.MemberOfDeployment
Pingping Linadef86c2017-01-23 22:36:46 +000058
Pingping Lin07cb9662017-01-25 18:29:09 -080059# Attach the Tenant view to the deployment
Pingping Linadef86c2017-01-23 22:36:46 +000060 Tenant:
61 type: tosca.nodes.DashboardView
62 properties:
63 no-create: true
64 no-delete: true
65 requirements:
66 - deployment:
67 node: MyDeployment
68 relationship: tosca.relationships.SupportsDeployment
69
Pingping Lin07cb9662017-01-25 18:29:09 -080070# XOS Users
Pingping Linadef86c2017-01-23 22:36:46 +000071 padmin@vicci.org:
72 type: tosca.nodes.User
73 properties:
Pingping Lin07cb9662017-01-25 18:29:09 -080074 password: letmein
75 firstname: PAdmin
76 lastname: VicciOrg
77 is_admin: True
Pingping Linadef86c2017-01-23 22:36:46 +000078 requirements:
Pingping Lin07cb9662017-01-25 18:29:09 -080079 - site:
80 node: mysite
81 relationship: tosca.relationships.MemberOfSite
82 - tenant_dashboard:
Pingping Linadef86c2017-01-23 22:36:46 +000083 node: Tenant
84 relationship: tosca.relationships.UsesDashboard
85