blob: b97ffc7eb270c2040b91f6abee6ea73fce8255a9 [file] [log] [blame]
Srikanth Vavilapallia7ae6512017-02-13 02:29:21 +00001---
2tosca_definitions_version: tosca_simple_yaml_1_0
3
4description: Have the XOS container mount the monitoringservice volume
5
6imports:
7 - custom_types/xos.yaml
8
9topology_template:
10 node_templates:
11
12 xos:
13 type: tosca.nodes.XOS
14
15 /opt/xos_services/monitoring:
16 type: tosca.nodes.XOSVolume
17 properties:
18 host_path: "{{ cord_dir }}/orchestration/xos_services/monitoring"
19 read_only: True
20 requirements:
21 - xos:
22 node: xos
23 relationship: tosca.relationships.UsedByXOS
24