Versions Compared

Key

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

...

JSON Viewer
width600
height700
{
  "requestInfo": {
    "transactionId": "e576c75e-7536-4145-a1c0-d60b65bb1bb8",
    "requestId": "de4f04e3-0a65-470b-9d07-8ea6c2fb3e10",
    "callbackUrl": "https://wiki.onap.org:5000/callbackUrl/",
    "sourceId": "SO",
    "requestType": "create",
    "numSolutions": "100",
    "optimizers": [
      "placement"
    ],
    "timeout": 1200
  },
  "placementInfo": {
    "requestParameters": {
      "sourceDestinationVfModuleId": "e85d0c57-e518-4dae-b185-75bf649e52f8"
    },
    "subscriberInfo": {
      "globalSubscriberId": "dbc2c763-6383-42d6-880a-b7d5c5bc84d9",
      "subscriberName": "oof-so-chm"
    },
    "placementDemands": [
      {
        "resourceModuleName": "DtDestination",
        "serviceResourceId": "vFW-XX",
        "resourceModelInfo": {
          "modelInvariantId": "b50a101d-dbe3-41b1-a04b-3c44b0ec9d94",
          "modelVersionId": "d23ad900-9920-49da-94e3-78c76cbdf331",
          "modelName": "VfwSnkDtVf..base_vfw..module-0",
          "modelType": "resource",
          "modelVersion": "1.0"
        },
        "excludedCandidates": [
          {
            "identifierType": "vfModuleId",
            "identifiers": [
              "2b88bda7-95d4-4e26-92b7-fab087a1b609"
            ]
          }
        ]
      },
      {
        "resourceModuleName": "DtAnchor",
        "serviceResourceId": "vPGN-XX",
        "resourceModelInfo": {
          "modelInvariantId": "344e26f1-ff29-4570-98fd-2f607b79e609",
          "modelVersionId": "a8ad1d21-5e9d-4a91-b155-19c5ce5fbe17",
          "modelName": "VfwPkgDtVf..base_vpkg..module-0",
          "modelType": "resource",
          "modelVersion": "1.0"
        }
      }
    ]
  }
}
     

POLICY - OOF :

Code Block
languagejs
titlePOLICY OOF
{
    "service": "affinityPolicy",
    "policyName": "TD-vPGN-AP-DP-Affinity",
    "description": "Affinity policy for  vPGN Anchor and destination point",
    "templateVersion": "1702.03",
    "version": "oofDublin",
    "priority": "5",
    "riskType": "test",
    "riskLevel": "2",
    "guard": "False",
    "content": {
        "identity": "affinity_TD_vPGN",
        "policyScope": ["vPGN", "TD"
        ],
        "affinityProperties": {
            "qualifier": "same",
            "category": "region"
        },
        "policyType": "affinityPolicy",
        "resources": [
            "vPGN",
            "vFW-Sink"
        ],
        "applicableResources": "all"
    }
}


OOF - SO: 

OOF returns to SO structure with Anchor point and related with them destination points. Each candidate is vFModule with extra information required or for filtering or for traffic configuration. For each destination point there is only one anchor point - both have to be located in the same cloud region. OOF firstly selects destinationPoints base on vFModule model name and by belonging to the same virtual service instance.  Then such candidates are filtered on required or excluded candidate basis. Anchor candidates are filtered by the same criteria with such difference that for whole group of destination points that come from the same cloud region only one anchor point is selected - the response should refelct this relation and proposed response is a structure where under each anchor point candidate there are all selected destinations from the same region.

...