diff options
author | Nagendra90287 <nagendrakumar.pal@amdocs.com> | 2020-09-04 15:44:45 +0530 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-09-07 17:30:41 +0200 |
commit | 0488953f3d34332e1611025581abf971d18895bf (patch) | |
tree | f0e632093135c9c2f88decae44bfe111a4759796 /robot/assets | |
parent | 8e871a6a34329b893128cb994d44def27abe0b6e (diff) |
Improved Policy Health Check
Issue-ID: POLICY-2817
Change-Id: I699ca39e9a739a2da64401493ad2c0a724620e60
Signed-off-by: Nagendra90287 <nagendrakumar.pal@amdocs.com>
Change-Id: I2972ea2711f621cd1d9d12ace1e83178b0ea3270
Signed-off-by: Nagendra90287 <nagendrakumar.pal@amdocs.com>
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'robot/assets')
-rw-r--r-- | robot/assets/policy/create_policy.json | 53 | ||||
-rw-r--r-- | robot/assets/policy/deploy_policy.json | 8 |
2 files changed, 61 insertions, 0 deletions
diff --git a/robot/assets/policy/create_policy.json b/robot/assets/policy/create_policy.json new file mode 100644 index 00000000..3198acac --- /dev/null +++ b/robot/assets/policy/create_policy.json @@ -0,0 +1,53 @@ +{ + "tosca_definitions_version": "tosca_simple_yaml_1_1_0", + "topology_template": { + "policies": [ + { + "operational.modifyconfig": { + "type": "onap.policies.controlloop.operational.common.Drools", + "type_version": "1.0.0", + "version": "1.0.0", + "metadata": { + "policy-id": "operational.modifyconfig" + }, + "properties": { + "id": "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a", + "timeout": 1200, + "abatement": false, + "trigger": "unique-policy-id-1-modifyConfig", + "operations": [ + { + "id": "unique-policy-id-1-modifyConfig", + "description": "Modify the packet generator", + "operation": { + "actor": "CDS", + "operation": "modify-config", + "target": { + "targetType": "VNF", + "entityIds": { + "resourceID": "37b008b9-b367-4359-93fd-74d3ce0ee1a0" + } + }, + "payload": { + "artifact_name": "vFW-CDS", + "artifact_version": "1.0.0", + "data": "{\"active-streams\": \"7\"}" + } + }, + "timeout": 300, + "retries": 0, + "success": "final_success", + "failure": "final_failure", + "failure_timeout": "final_failure_timeout", + "failure_retries": "final_failure_retries", + "failure_exception": "final_failure_exception", + "failure_guard": "final_failure_guard" + } + ], + "controllerName": "frankfurt" + } + } + } + ] + } +} diff --git a/robot/assets/policy/deploy_policy.json b/robot/assets/policy/deploy_policy.json new file mode 100644 index 00000000..d81fc07b --- /dev/null +++ b/robot/assets/policy/deploy_policy.json @@ -0,0 +1,8 @@ +{ + "policies": [ + { + "policy-id": "operational.modifyconfig", + "policy-version": "1.0.0" + } + ] +} |