Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 1 | {{/* vim: set filetype=mustache: */}} |
| 2 | {{/* |
| 3 | Copyright 2018-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | */}} |
| 17 | {{- define "vmme.serviceTosca" -}} |
| 18 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 19 | |
| 20 | imports: |
| 21 | - custom_types/vmmeservice.yaml |
| 22 | - custom_types/vmmevendor.yaml |
| 23 | - custom_types/flavor.yaml |
| 24 | - custom_types/image.yaml |
| 25 | |
| 26 | description: Configures the vMME service |
| 27 | |
| 28 | topology_template: |
| 29 | node_templates: |
| 30 | |
| 31 | service#vmme: |
| 32 | type: tosca.nodes.VMMEService |
| 33 | properties: |
| 34 | name: vmme |
| 35 | public_key: {{ .publicKey | quote }} |
| 36 | private_key_fn: /opt/xos/services/vmme/keys/id_rsa |
| 37 | |
| 38 | sprint_mme: |
| 39 | type: tosca.nodes.VMMEVendor |
| 40 | properties: |
| 41 | name: sprint_mme_{{ .vnfImageVersion }} |
| 42 | requirements: |
| 43 | - image: |
| 44 | node: image_mme |
| 45 | relationship: tosca.relationships.BelongsToOne |
| 46 | - flavor: |
| 47 | node: {{ .vnfImageFlavor }} |
| 48 | relationship: tosca.relationships.BelongsToOne |
| 49 | |
| 50 | image_mme: |
| 51 | type: tosca.nodes.Image |
| 52 | properties: |
| 53 | name: image_mme_{{ .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 -}} |