blob: bd6f5c8ebaee119af6c2af325bb53d14ea6e9ee5 [file] [log] [blame]
tosca_definitions_version: tosca_simple_yaml_1_0
imports:
- custom_types/xos.yaml
description: flat network config, generated by platform-install
topology_template:
node_templates:
# site, fully created in deployment.yaml
{{ site_name }}:
type: tosca.nodes.Site
# flat network
flat_template:
type: tosca.nodes.NetworkTemplate
properties:
visibility: private
translation: none
vtn_kind: FLAT
flat_network:
type: tosca.nodes.network.Network
properties:
ip_version: 4
cidr: 103.0.0.0/24
requirements:
- network_template:
node: flat_template
relationship: tosca.relationships.UsesNetworkTemplate
- owner:
node: {{ site_name }}_flat
relationship: tosca.relationships.MemberOfSlice
{{ site_name }}_flat:
description: This slice exists solely to own the flat network
type: tosca.nodes.Slice
properties:
network: noauto
requirements:
- site:
node: {{ site_name }}
relationship: tosca.relationships.MemberOfSite