| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| description: Adds volume to make the cord branding config file available |
| |
| imports: |
| - custom_types/xos.yaml |
| |
| topology_template: |
| node_templates: |
| xos: |
| type: tosca.nodes.XOS |
| properties: |
| no-create: True |
| no-delete: True |
| no-update: True |
| |
| /opt/xos/xos_configuration/xos_cord_config: |
| type: tosca.nodes.XOSVolume |
| properties: |
| host_path: { path_join: [ SELF, CONFIG_DIR, ../cord-pod/xos_cord_config, ENV_VAR ] } |
| read_only: false |
| requirements: |
| - xos: |
| node: xos |
| relationship: tosca.relationships.UsedByXOS |