...
Parameter | Description | Required? | Example |
---|---|---|---|
configuration-parameters | A set of instance specific configuration parameters should be specified. If provided, APP-C replaces variables in the configuration template with the values supplied. The parameters are associated with request template defined with CDT | Yes | “payload”"payload": “"{ \"configuration-parameters\": { { \"PlaybookName\": \"ansible_vfw_distributetraffic_check@0.00.yml\", \"NodeList\": \"[vfw-1]\", \"EnvParameters\": { \"IsPostCheck\": true, \"ConfigurationFile\": \"distribution_config.txt\" }, "DtDestinations \"FileParameters\" : [ { "vfw_ip": „192.168.10.110", "vsink_ip": „192.168.20.240" }]}, "Timeout": 3600 } }” \"distribution_config.txt\" : \"{ \"distributionPolicy\" : \"{...}\", \"distributionPoints\" : \"{...}\" }\" }, \"Timeout\": 3600 } }" |
Exemplary CDT template for Ansible protocol:
{
"PlaybookName": ${playbook},
"NodeList": ${node_list},
"EnvParameters": {
"IsPostCheck": true,
"DtDestinations": [{
"vfw_ip": „192.168.10.110",
"vsink_ip": „192.168.20.240"
}]
},
${is_post_check},
"ConfigurationFile": ${distribution_config_file}
},
"FileParameters": {
${distribution_config_file} : ${distribution_config_file_content}
},
"Timeout": 3600
}
EnvParameters includes protocol specific parameters for Ansible playbook or Chef cookbook. Here with information if the Check is performed before or after traffic distribution (IsPostCheck) and with further information about the distribution that will be performed (for PreCheck) or for the one that was already performed (PostCheck). EnvParameters has one two mandatory parameters: "IsPostCheck" and the second one that is optional: "DtDestinations". Parameters in "DtDestinations" will depend on the VNF.folds information about name of file with configuration of traffic distrribution. FileParameters section specifies content of file that will be uploaded to Ansible server, the file will be loaded by playbook as Input parameters. This file holds information provided by the OOF in DistributeTraffic optimization Response:
DistributeTrafficCheck Response
...
Success: A successful distribute check returns a success status code 400 after all traffic has been distributed.Failure: A failed when pre- or post- check conditions are satisfied
Success: A successful distribute check returns a failure success status code 401 and the failure message from the Ansible or Chef server in the response payload block.when pre- or post- check conditions are not satisfied