blob: c08aa56addb54301487456a8b0cd2b133d82f0ef [file] [log] [blame]
{{/* vim: set filetype=mustache: */}}
{{/*
Copyright 2018-present Open Networking Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- define "sdncontroller.serviceTosca" -}}
tosca_definitions_version: tosca_simple_yaml_1_0
imports:
- custom_types/sdncontrollerservice.yaml
- custom_types/sdncontrollervendor.yaml
- custom_types/image.yaml
- custom_types/flavor.yaml
description: Configures the sdncontroller service
topology_template:
node_templates:
service#sdncontroller:
type: tosca.nodes.SDNControllerService
properties:
name: sdncontroller
public_key: {{ .publicKey | quote }}
private_key_fn: /opt/xos/services/sdncontroller/keys/id_rsa
intel_sdncontroller:
type: tosca.nodes.SDNControllerVendor
properties:
name: intel_sdncontroller_{{ .vnfImageVersion }}
requirements:
- image:
node: image_sdncontroller
relationship: tosca.relationships.BelongsToOne
- flavor:
node: {{ .vnfImageFlavor }}
relationship: tosca.relationships.BelongsToOne
# This is a placeholder image right now...
image_sdncontroller:
type: tosca.nodes.Image
properties:
name: image_sdncontroller_{{ .vnfImageVersion }}
disk_format: QCOW2
container_format: BARE
path: {{ .vnfImageURL }}
{{ .vnfImageFlavor }}:
type: tosca.nodes.Flavor
properties:
name: {{ .vnfImageFlavor }}
{{- end -}}