blob: fea233a6e68c83bda84a7d57a463cd3fd6c3c9d6 [file] [log] [blame]
Andy Baviera40e82b2018-05-07 17:00:36 -07001{{/* vim: set filetype=mustache: */}}
2{{/*
3Copyright 2018-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16*/}}
17{{- define "vspgwu.serviceTosca" -}}
18tosca_definitions_version: tosca_simple_yaml_1_0
19
20imports:
21 - custom_types/vspgwuservice.yaml
22 - custom_types/vspgwuvendor.yaml
23 - custom_types/flavor.yaml
24 - custom_types/image.yaml
25
26description: Configures the vSPGWU service
27
28topology_template:
29 node_templates:
30
31 service#vspgwu:
32 type: tosca.nodes.VSPGWUService
33 properties:
34 name: vspgwu
35 public_key: {{ .publicKey | quote }}
36 private_key_fn: /opt/xos/services/vspgwu/keys/id_rsa
37
38 intel_vspgwu:
39 type: tosca.nodes.VSPGWUVendor
40 properties:
41 name: intel_vspgwu_{{ .vnfImageVersion }}
42 requirements:
43 - image:
44 node: image_spgwu
45 relationship: tosca.relationships.BelongsToOne
46 - flavor:
47 node: {{ .vnfImageFlavor }}
48 relationship: tosca.relationships.BelongsToOne
49
50 image_spgwu:
51 type: tosca.nodes.Image
52 properties:
53 name: image_spgwu_{{ .vnfImageVersion }}
54 disk_format: QCOW2
55 container_format: BARE
56 path: {{ .vnfImageURL }}
57
58 {{ .vnfImageFlavor }}:
59 type: tosca.nodes.Flavor
60 properties:
61 name: {{ .vnfImageFlavor }}
62{{- end -}}