Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame^] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
2 | |||||
3 | topology_template: | ||||
4 | node_templates: | ||||
5 | my_server: | ||||
6 | type: tosca.nodes.Compute | ||||
7 | capabilities: | ||||
8 | # Host container properties | ||||
9 | host: | ||||
10 | properties: | ||||
11 | num_cpus: 1 | ||||
12 | disk_size: 10 GB | ||||
13 | mem_size: 4096 MB | ||||
14 | # Guest Operating System properties | ||||
15 | os: | ||||
16 | properties: | ||||
17 | # host Operating System image properties | ||||
18 | architecture: x86_64 | ||||
19 | type: linux | ||||
20 | distribution: rhel | ||||
21 | version: 6.5 |