tacker/samples/mistral/workflows/create_vnfd.yaml
Shaik Apsar d55db757db Implement tacker workflows
1. std.create_vnf for VNF creation.
2. std.create_vnfd for VNFD creation.
3. std.delete_vnf for VNF deletion.
4. std.delete_vnfd for VNFD deletion.

Change-Id: I2c16c771d468db58728218fcf94154796e955ebb
Implements: blueprint tacker-workflows
2016-08-14 17:06:44 -04:00

23 lines
383 B
YAML

---
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 %>