Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

DistributeTrafficCheck

This command runs a VNF health check check (post- or pre-check) for distribute traffic specifically and returns the result.

Target URL/restconf/operations/appc-provider-lcm:distribute-traffic-health-check
ActionDIstributeTrafficHealthCheckDistributeTrafficCheck
Action-IdentifiersVnf-id
Payload ParametersSee below
Revision HistoryUnchanged in this release


Request Payload Parameters:
ParameterDescriptionRequired?Example
configuration-parametersA 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 CDTNoYes“payload”"payload": "{\"configuration-parameters\":{\"distribution_config_file_name\":\"/opt/onap/ccsdk/Playbooks/dt/config", "playbook":-vpkg-1-config.json\",\"distribution_config_file_content\":\"{...}\",\"playbook\":\"ansible_vfw_distributetraffic@0distributetraffic@0.00.yml\",\"node_list\":\"[vpkgvfw-1]\", \"is_post_check\": True}}"


Exemplary CDT template for Ansible protocol:

{
         "PlaybookName": ${playbook},
  
       "NodeList": ${node_list},
         "EnvParameters": {
           "IsPostCheck": ${is_post_check},
            "ConfigFileName": "${distribution_config_file_name}"
     },
   }
       },
       "FileParameters": {
           ${distribution_config_file} : ${distribution_config_file_content}
       },
       "Timeout": 3600

}

EnvParameters includes protocol specific parameters, here with name of configuration file having additional parameters for Ansible playbook or Chef cookbook. Distribute Traffic config file can have such parameters like traffic destinations, distribution weights or rollback strategy.

...

. 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 (PreCheck) or for the one that was already performed (PostCheck). EnvParameters has two mandatory parameters: "IsPostCheck" and the second one that 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: Traffic Distribution

DistributeTrafficCheck Response

The response does not include any payload parameters.

Success: A successful distribute check returns a success status code 400 after all traffic has been distributed.when pre- or post- check conditions are satisfied

Success: A successful distribute check returns a success status code 401 when pre- or post- check conditions are not satisfiedFailure: A failed distribute returns a failure code 401 and the failure message from the Ansible or Chef server in the response payload block.