Tacker: ETSI MANO NFV Orchestrator / VNF Manager. See https://wiki.openstack.org/wiki/Tacker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
383 B
22 lines
383 B
--- |
|
version: '2.0' |
|
|
|
std.create_vnfd: |
|
type: direct |
|
|
|
description: | |
|
Create a VNFD. |
|
|
|
input: |
|
- body |
|
output: |
|
vnfd_id: <% $.vnfd_id %> |
|
|
|
tasks: |
|
create_vnfd: |
|
description: Request to create a VNFD. |
|
action: tacker.create_vnfd body=<% $.body %> |
|
input: |
|
body: <% $.body %> |
|
publish: |
|
vnfd_id: <% task(create_vnfd).result.vnfd.id %>
|
|
|