summaryrefslogtreecommitdiffstats
path: root/javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml')
-rw-r--r--javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml45
1 files changed, 45 insertions, 0 deletions
diff --git a/javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml b/javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml
new file mode 100644
index 0000000..cbc2b24
--- /dev/null
+++ b/javatoscachecker/checker/src/test/resources/spec/examples/spec-example-11.1.12.3.yaml
@@ -0,0 +1,45 @@
+tosca_definitions_version: tosca_simple_yaml_1_0
+
+description: >
+ TOSCA simple profile with 1 server bound to an existing network
+
+metadata:
+ outcome: "success"
+
+imports:
+ - network: tosca/tosca-network-types.yaml
+
+topology_template:
+ inputs:
+ network_name:
+ type: string
+ description: Network name
+
+ node_templates:
+ my_server:
+ type: tosca.nodes.Compute
+ capabilities:
+ host:
+ properties:
+ disk_size: 10 GB
+ num_cpus: 1
+ mem_size: 4096 MB
+ os:
+ properties:
+ architecture: x86_64
+ type: Linux
+ distribution: CirrOS
+ version: 0.3.2
+
+ my_network:
+ type: tosca.nodes.network.Network
+ properties:
+ network_name: { get_input: network_name }
+
+ my_port:
+ type: tosca.nodes.network.Port
+ requirements:
+ - binding:
+ node: my_server
+ - link:
+ node: my_network