blob: f54874b699041f93820f1cc5e7fb9813a9f14318 [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:
Zack Williamsc989f262017-05-11 13:02:59 -070018 host_path: "{{ head_cord_dir }}/orchestration/xos_services/monitoring"
Srikanth Vavilapallia7ae6512017-02-13 02:29:21 +000019 read_only: True
20 requirements:
21 - xos:
22 node: xos
23 relationship: tosca.relationships.UsedByXOS
24