blob: 7026333a15a1362459e97464958a9b9800fe1fe2 [file] [log] [blame]
tosca_definitions_version: tosca_simple_yaml_1_0
imports:
- custom_types/xos.yaml
description: network for S1MME interface
topology_template:
node_templates:
# site, fully created in deployment.yaml
{{ site_name }}:
type: tosca.nodes.Site
# s1mme network
s1mme_template:
type: tosca.nodes.NetworkTemplate
properties:
visibility: private
translation: none
vtn_kind: PRIVATE
s1mme_network:
type: tosca.nodes.network.Network
properties:
ip_version: 4
cidr: 116.0.0.0/24
requirements:
- network_template:
node: s1mme_template
relationship: tosca.relationships.UsesNetworkTemplate
- owner:
node: {{ site_name }}_s1mme
relationship: tosca.relationships.MemberOfSlice
{{ site_name }}_s1mme:
description: This slice exists solely to own the private network
type: tosca.nodes.Slice
properties:
network: noauto
requirements:
- site:
node: {{ site_name }}
relationship: tosca.relationships.MemberOfSite