blob: 6e96e5dca2a5157a02ef9db0856eed3d59fd7852 [file] [log] [blame]
seshukm4acb5562019-04-17 19:47:50 +05301.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
3.. Copyright 2018 Huawei Technologies Co., Ltd.
4
5Building Block Understanding
6============================
7
Sithara Nambiar8bdb8bb2020-07-31 19:00:26 +05308UNDERSTANDING BUILDING BLOCKS USING MACRO FLOW
9----------------------------------------------
10
11
12
13There are basically 2 flows - macro , a la carte.
14
15In a la carte we manually will initiate each step for a process.
16
17In macro , the whole flow happens at a single click - like if we want to create a service, the flow will itself look whether there are vnfs, pnfs or networks in the service and it will be created and activated in the flow also.
18
19Thus these independent tasks like if vnf is present, then assign create and activate vnf are all taken up as individual building blocks and are only called on need basis.
20
21
22Each and every request will reach to the api handler first.
23
24API HANDLER( ServiceInstances.java )
25------------------------------------
26
27
28
29# 1. Rest call reaching SO Api handler with the input json - According to the below path it is mapped to the createServiceInstance function in ServiceInstances file.
30
31curl -v -H "Content-Type: application/json" -X POST --data @serviceinstance.json -u mso_admin:password1$ http://localhost:8080/onap/so/infra/serviceInstantiation/v7/serviceInstances.
32
33# 2. Herein a unique requestid is generated corresponding to every request, and is checked whether that particular requestid exists in request db (Happens in createServiceInstance in ServiceInstances).
34
35 a. http://request-db-adapter:8083/infraActiveRequests/requestid (GET), which will return a 404 if not exists.
36
37 b. CreateInstance is set to the action variable. Here the request scope is set to service from the inputjson - modelType.
38
39# 3. Running local validations on input json.
40
41# 4. create InfraActiveRequests, to store request details in request db adapter and as a payload to bpmn.
42
43 a. A new InfraActiveRequests object is created. And all the necessary information from the input is set to it.
44
45 b. Retrieving productFamilyName from the input json to put into requests db. http://aai/servicedesigncreation/services/service/{productfamilyid} (GET), which will return a 404 if not exists in aai. If service exists, then that service's serviceDescritiption is set as productfamilyName.
46
47 c. http://aai/cloudinfrastructure/cloudregions/cloudregion/cloudowner/{lcpCloudRegionId}/tenants/tenant/{tenantId} (GET), checks for whether the particular cloud configuration exists in aai, if not exists returns 404. If we are able to get, then the tenant's name derived from aai is set as tenantName.
48
49 d. serviceInstanceNamee is derived from requestInfo.instanceName and is set.
50
51 e. Request json is also set as RequestBody of InfraActiveRequests.
52
53# 5. Checks fro whether duplicate name exists.
54
55 a. version v[integer] is converted to the particular integer and stored.
56
57 b. Checks whether instance name already exists in with a POST request in http://request-db-adapter:8083/infraActiveRequests/checkInstanceNameDuplicate, with the data { instanceIdmap = null, instanceName = {instanceName} , instanceservice = service } . It checks for the current progress and if in progress it throws the particular status.
58
59# 6. Gets the orchestration url from the recipe table.
60
61 a. Checks whether the service already exists in catalogdb http://catalog-db-adapter:8082/service/{modelNameVersionId} (GET).
62
63 b. Checks the service recipe table with the modelNameVersionId and the action to be performed http://catalog-db-adapter:8082/serviceRecipe/search/findFirstByServiceModelUUIDAndAction?serviceModelUUID={modelNameVersionId}&action=createInstance . Returns a 404 if no recipe exists with the corresponding id.
64
65 c. As recipe corresponding to this doesn't exist, we try to get with a default value. This flow comes under generic resource flow so the default value is GR-API-DEFAULT. First we get service with this value http://catalog-db-adapter:8082/service/search/findFirstByModelNameOrderByModelVersionDesc?modelName=GR-API-DEFAULT (GET). It returns a service with modelUUID as d88da85c-d9e8-4f73-b837-3a72a431622b, and further can be used to get the recipe.
66
67 d. http://catalog-db-adapter:8082/serviceRecipe/search/findFirstByServiceModelUUIDAndAction?serviceModelUUID=d88da85c-d9e8-4f73-b837-3a72a431622b&action=createInstance (GET), gives a recipe which has a parameter "orchestrationUri" as "/mso/async/services/WorkflowActionBB".
68
69# 7. Updates the infraActiveRequests with the current request.
70 a. http://request-db-adapter:8083/infraActiveRequests/ (POST) with the data formed. And a 201 created response is received.
71
72# 8. Call the bpmn with a post call on orchestrationUri. The data to bpmn is prepared having parameters like
73 a. bpmnRequest - formed from input request.
74
75 b. vfModuleId, pnfCorrelationId, networkId, configurationId, vfModuleType, serviceInstanceId , serviceType are updated if present in the input json or else set to empty string.
76
77 c. apiVersion , requestId, aLaCarte = false (def), recipeTimeout = 180(def), requestAction= createInstance are all updated accordingly.
78
79 d. requestUri - v7/serviceInstances ,which is formed from the request url.
80
81
82# 9. A sync response is obtained on reaching bpmn like {"requestReferences":{"requestId":"c45702f7-3f08-4081-bc98-2f9f18b81607","instanceId":"cadca18f-9bff-44be-8910-ad29d342e91f","requestSelfLink":"http://159.138.57.166:30277/orchestrationRequests/v7/c45702f7-3f08-4081-bc98-2f9f18b81607"}}.
83
84
85
86
87
88
89BPMN
90-----
91
92
93Hits WorkflowActionBB.bpmn
94--------------------------
95
96.. image:: ../images/workflow.png
97
98
99# 1. RetrieveBBExecutionList - implemented in selectExecutionList in WorkflowAction.java
100
101a. resourcetype, resourceid are formed from matching the requestUri to a regex pattern matcher [pattern=[vV]\d+.*?(?:(?:/(?<type>vnfs|vfModules|networks|networkCollections|volumeGroups|serviceInstances|instanceGroups)(?:/(?<id>[^/]+))?)(?:/(?<action>[^/]+))?(?:/resume)?)] .
102
103b. Checks whether there is a service subscription with service instance name as {instanceName} correspoding to the customer in aai https://aai.onap:8443/aai/v19/business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances?depth=2&resultIndex=0&resultSize=1&service-instance-name={instanceName}. Returns 404 not found, if it doesnt exists then the id of that particular instance is taken and given as both the resourceid and serviceinstance id. If not present then a random value is generated, and is assigned same to both.
104
105c. Checks whether there is a service of the particular serviceInstanceId exists in aai. https://aai.onap:8443/aai/v19/nodes/service-instances/service-instance/{serviceInstanceId} , returns not found if it doesnt exist. If service with corresponding instance name already exists , then flowsToExecute is got by quering the requestdbadapter with the earlier request id. If not present, then only orchestrationflows are got, and later from that the flowsToExecute are found out.
106
107d. Get the particular service from catalogdb . http://so-catalog-db-adapter.onap:8082/service/{modelNameVersionId} (GET). Be sure that the service with this particular modelNameVersionId exists in catalogdb, because based on the services (like whether pnf, or vnf, or networkcollection) present in that particular service, which all bbs to execute are decided.
108
109e. This being a service, "service" is added to the resource list. And is checked upon for other resources like vnf and network, eg:
110
111 http://so-catalog-db-adapter.onap:8082/service/{modelNameVersionId}/vnfCustomizations (GET)
112 http://so-catalog-db-adapter.onap:8082/service/{modelNameVersionId}/collectionResourceCustomizations (GET)
113 http://so-catalog-db-adapter.onap:8082/service/{modelNameVersionId}/networkCustomizations (GET)
114 And depending on the reources in the service, the resources found is updated like
115 Found :Service - 1 Vnf - 0 Pnf - 0 VfModule - 0 VolumeGroup - 0 Network - 0 VirtualLink - 0 NetworkCollection - 0 Configuration - 0 InstanceGroup - 0
116
117f. Then the orchestration flows are get from the orchestration_flow_table depending on the cloudowner and request scope: http://so-catalog-db-adapter.onap:8082/northbound_request_ref_lookup/search/findOneByActionAndRequestScopeAndIsAlacarteAndCloudOwnerAndServiceType action=createInstance&requestScope=Service&isALaCarte=false&cloudOwner={CloudOwner}&serviceType=%2A (GET) Here if present, then the orchestration flows are returned or else with default cloud owner, we try again
118
119http://so-catalog-db-adapter.onap:8082/northbound_request_ref_lookup/search/findOneByActionAndRequestScopeAndIsAlacarteAndCloudOwnerAndServiceType?action=createInstance&requestScope=Service&isALaCarte=false&cloudOwner=DEFAULT&serviceType=%2A (GET)
120Here in northBoundRequest is returned which has the parameter orchestrationFlowList, that contains the link that will return the orchestration flows.
121
122"orchestrationFlowList" : { "href" : "http://so-catalog-db-adapter.onap:8082/northbound_request_ref_lookup/101/orchestrationFlowList"}
123
124Now we do a get on the orchestration flow link to get the set of orchestartion flows required
125http://so-catalog-db-adapter.onap:8082/northbound_request_ref_lookup/101/orchestrationFlowList.
126Here a set of 20 orchestration flows are returned under the action of Service-Macro-Create, each with a sequence no assigned sequentially in the given order
127AssignServiceInstanceBB,
128
129CreateNetworkCollectionBB,
130
131AssignNetworkBB,
132
133AssignVnfBB,
134
135AssignVolumeGroupBB,
136
137AssignVfModuleBB,
138
139ConfigAssignVnfBB,
140
141AssignPnfBB,
142
143WaitForPnfReadyBB,
144
145ActivatePnfBB,
146
147CreateNetworkBB,
148
149ActivateNetworkBB,
150
151CreateVolumeGroupBB,
152
153ActivateVolumeGroupBB,
154
155CreateVfModuleBB,
156
157ActivateVfModuleBB,
158
159ConfigDeployVnfBB,
160
161ActivateVnfBB,
162
163ActivateNetworkCollectionBB,
164
165ActivateServiceInstanceBB.
166
167
168.. image:: ../images/flowchart.png
169
170
171g. Flows to execute is determined by iterating through all the orchestartion flows and matching it with the found resources. It is merely a contains matching. In this particular as service was the only resource : List of BuildingBlocks to execute:AssignServiceInstanceBB, ActivateServiceInstanceBB.
172
173h. processing data is added to the requestdbadapter. Here the data is post to the requestdb as two different building blocks http://so-request-db-adapter.onap:8083/requestProcessingData.
174
175i. The already stored request details in request db is ammended like "lastModifiedBy" : "CamundaBPMN" , and status to in_progress with a put request.
176
177
178# 2. sendSyncAck - This was used to give an acknowledgement , with status code as 200, and requestId and resourceId is sent as content.
179
180
181# 3. Prevalidate the workflow
182
183
184# 4. SelectBB - implemented in selectBBin WorkflowActionBBTasks
185This is used to select the building block from the flows to execute depending on the sequence order.
186
187 a. Depending on the current sequence , the building block is selected from the flows to execute.
188
189 b. Execution variable, that is passed between the different building blocks as the payload is ammended as:
190
191 execution.setVariable("buildingBlock", buildingblockselected).
192
193 c. current sequence is incremented by 1, and updated in execution variable.
194
195 d. Depending on whether currentSequence is greater than flowsToExecute.size(), COMPLETED variable is either set to true or false.
196
197
198# 5. updateFlowStatistics - implemented in updateFlowStatistics in WorkflowActionBBTasks
199a. Depending on the current sequence no, the completed bb and next bb is got from the flows to execute. And these are mentioned in a statusMessage.
200b. Percentage progress is got from the total no of bbs
201c. These are ammended to the already present request in the request db
202
203# 6. Execute BB - calls the ExecuteBuildingBlock.bpmn
204
205-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
206
207Hits ExecuteBuildingBlock.bpmn
208------------------------------
209
210.. image:: ../images/ExecuteBuildingBlock.png
211
212# 1. BBInputSetup - implemented in execute in BBInputSetup
213Here a generalbuildingblock is formed from executingbuildingblock after certain updations and validations.
214
215 a. lookupKeyMap is formed from the input , and a map is formed with serviceInstanceId, networkID, vnfID, pnfID, vfmoduleID, volumegroupID, configurationID, instancegroupID as the keys.
216
217 b. Depending on whether a la carte or macro , different flows are called. getGBBMacro is called in here.
218
219 c. In getGBBMacro , a valid customer is got with service subscription.(getCustomerAndServiceSubscription)
220
221 First a customer is got by get request on https://aai.onap:8443/aai/v19/business/customers/customer/{globalSubscriberId}
222
223 After that ServiceSubscription is got by doing a get request
224 https://aai.onap:8443/aai/v19/business/customers/customer/{globalSubscriberId}/service-subscriptions/service-subscription/service
225
226 If, the above request doesnt give any , then ServiceSubscription is fetched by first creating uri keys
227 https://aai.onap:8443/aai/v19/nodes/service-instances/service-instance/{resourceId}?format=pathed.
228 Then ServiceSubscription is got from the globalSubscriberId and the uri keys
229
230'Note': a valid customer and a corresponding ServiceSubscription must be present in the aai, for setting up the customer to gbuildingblock
231
232 d. project and owningEntity is updated from the input
233
234 e. service is got from the catalog db either by ModelVersionId or by ModelVersion and ModelInvariantId.
235
236 f. ServiceInstance is created from the above parameters, and this ServiceInstance is used in the preparation of general building block.
237
238 g. Depending on whether the current executing block name contains either of the network, or configuration, or network collection. A new instance of the corresponding type is created and is updated to the general building block (Happens in getGBBMacroNoUserParamsCreate)
239
240 h. This general building block is set to the gBuildingBlockExecution and gBBInput parameter of execution.
241
242
243# 2. StatusPolicy - implemented in validateOrchestrationStatus in OrchestrationStatusValidator. Input being gBuildingBlockExecution
244 a. orchestrationStatus is obtained after checking the resource type. We had updated the orchestrationStatus in the above step when a new service instance was created.
245 b. OrchestrationStatusStateTransitionDirective is got by doing a get call to the catlog db with the url as findOneByResourceTypeAndOrchestrationStatusAndTargetAction
246http://so-catalog-db-adapter.onap:8082/orchestrationStatusStateTransitionDirective/search/findOneByResourceTypeAndOrchestrationStatusAndTargetAction?resourceType=SERVICE&orchestrationStatus=PRECREATED&targetAction=ASSIGN
247 c. orchestrationStatusValidationResult parameter is set to execution variable from the OrchestrationStatusStateTransitionDirective.getFlowDirective() "flowDirective" : "CONTINUE"
248
249# 3. Prevalidate the gBuildingBlockExecution
250
251# 4. BB To Execute: Depending on which building block is to be executed, that particular bpmn is called .In this case, AssignServiceInstanceBB is called
252
253-------------------------------------------------------------------------------------------------------------------------
254
255Hits AssignServiceInstanceBB.bpmn
256---------------------------------
257
258.. image:: ../images/AssignServiceInstanceBB.png
259
260# 1. AAI create service subscription - implemented in createServiceSubscription of createAAITasks
261This method is used for creating and subscribing the service in A&AI
262
263 a. Customer is got from the general building block that was updated above
264
265 b. Here a serviceSubscriptionURI is formed by taking in the globalSubscriberId and the serviceType
266
267 c. If a service subscription for the particular customer doesnt exist in AAI, then a new subscription is created by taking in the serviceSubscriptionURI
268
269GET performed on uri:https://aai.onap:8443/aai/v19/business/customers/customer/slice1/service-subscriptions/service-subscription/service?
270{"results":[{"service-subscription":1}]}
271
272# 2. AAI create service instance - implemented in createServiceInstance of createAAITasks
273This method is used for creating the service instance in A&AI
274
275 a. Customer is got from the general building block that was updated above
276
277 b. A serviceInstanceURI is formed by taking in the globalSubscriberId, the serviceType and the service instance id
278
279 c. If the service instance in the particular path doesnt exist in AAI , then a new service instance is created by using the serviceInstanceURI
280
281GET to:https://aai.onap:8443/aai/v19/business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84?
282response: {"requestError":{"serviceException":{"messageId":"SVC3001","text":"Resource not found for %1 using id %2 (msg=%3) (ec=%4)","variables":["GET","business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84","Node Not Found:No Node of type service-instance found at: business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84","ERR.5.4.6114"]}}}
283
284Sending HTTP PUT to:https://aai.onap:8443/aai/v19/business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84
285with req body : {"service-instance-id":"2b955def-e536-40ee-84cb-3f06e3cc6d84","service-instance-name":"DEMO_123456","model-invariant-id":"944862ae-bb65-4429-8330-a6c9170d6672","model-version-id":"d88da85c-d9e8-4f73-b837-3a72a431622b","orchestration-status":"Inventoried"}
286
287# 3. AAI create project - implemented in createProject of createAAITasks
288This method is used for creation of the project A&AI. Here too it checks whether a project with a {projectName} exist in AAI . If not it creates one, and connects it to the service instance identified by the serviceInstanceId
289Sending HTTP PUT to:https://aai.onap:8443/aai/v19/business/projects/project/name%20of%20proj/relationship-list/relationship
290with req body: {"related-link":"/business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84"}
291
292# 4. AAI create owning entity - implemented in createOwningEntity of createAAITasks
293
294 a. OwningEntityId and OwningEntityName is extracted from the OwningEntity given in the input json
295
296 b. If both of them are null, then an exception is raised.
297
298 c. If only OwningEntityId is null, then whether the OwningEntityName is present in AAI is checked. If present then OwningEntityId is set by quering the OwningEntity from AAI. And then connect it to the service instance. If not present in the aai then a random id is generated and assigned to OwningEntityId. Then Owning entity is first created and then connected to the service instance
299
300 d. Depending on whether the owning entity is already present or not, either createOwningEntityandConnectServiceInstance is called, or connectOwningEntityandServiceInstanceis called.
301
302Sending HTTP PUT to:https://aai.onap:8443/aai/v19/business/owning-entities/owning-entity/owningEntityIdof%20owningEntity/relationship-list/relationship
303req body: {"related-link":"/business/customers/customer/slice1/service-subscriptions/service-subscription/service/service-instances/service-instance/2b955def-e536-40ee-84cb-3f06e3cc6d84"}
304
305# 5. SDNC Create Assign Request - implemented in assignServiceInstance of SDNCAssignTasks
306
307 a. Here first the requestContext, serviceInstance, customer are obtained from the general building block
308
309 b. Then a payload for the assignServiceInstance of the sdnc is formed by passing in the above parameters to the assignServiceInstance in sdncSIResources.
310
311 c. A new sdnc request is formed with the above thing as payload
312
313 d. This sdnc request is assigned to the SDNCRequest parameter of the execution variable
314
315.. code-block:: bash
316
317 {"input":{
318 "request-information" : {
319 "request-action" : "CreateServiceInstance",
320 "source" : "MSO",
321 "request-id" : "139636cd-4b69-4c3a-9e67-fed2c283baee"
322
323 },
324 "sdnc-request-header" : {
325
326 "svc-request-id" : "9bfe8cb0-bb8b-4dca-949d-2f2b51011b54",
327 "svc-action" : "assign"
328
329 },
330 "service-information" : {
331
332 "onap-model-information" : {
333 "model-name" : "GR-API-DEFAULT",
334 "model-version" : "1.0",
335 "model-uuid" : "d88da85c-d9e8-4f73-b837-3a72a431622b",
336 "model-invariant-uuid" : "944862ae-bb65-4429-8330-a6c9170d6672"
337
338 },
339 "subscription-service-type" : "service",
340 "service-id" : "2b955def-e536-40ee-84cb-3f06e3cc6d84",
341 "global-customer-id" : {global_customerid},
342 "service-instance-id" : "2b955def-e536-40ee-84cb-3f06e3cc6d84"
343
344 },
345 "service-request-input" : {
346
347 "service-input-parameters" : {
348 "param" : [ {
349 "name" : "some name",
350 "value" : "some value"
351
352 } ]
353
354 },
355 "service-instance-name" : {instance_name}
356 }
357 }}
358
359# 6. It calls another bpmn file - SDNCHandler.bpmn
360
361 a. Setup callback variables - Here mainly the correlator variable and the sdnc timeout variable is set
362
363 b. callSDNC - Here post call to sdnc client is done with the above prepared payload. And then isSDNCCompleted is set to the execution variable
364
365Both the above tasks are implemented in SDNCRequestTasks.
366http://sdnc-oam.onap:8282/restconf/operations/GENERIC-RESOURCE-API:service-topology-operation/
367
368# 7. AAI Update (svc instance)- implemented in th updateOrchestrationStatusAssignedService in AAIUpdateTasks
369 BPMN access method to update the status of Service to Assigned in AAI.
370 Here serviceInstance is obtained , then its orchestration status is changed to assigned and is updated in the AAI
371
372--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
373
374Reaches back to ExecuteBuildingBlock.bpmn
375
376# 5. Post validate the generic building block
377
378# 6. Set Handling Code To Success - implemented in setHandlingStatusSuccess in ExecuteBuildingBlockRainyDay
379handling code is set to success for the execution variable
380
381-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
382
383Reaches back to WorkflowActionBB.bpmn
384
385# 7. postProcessingExecuteBB
386If the building block excuted is ActivateVfModuleBB, then a postProcessingExecuteBBActivateVfModule needs to be executed
387
388Then again it is looped back to selectBB through a checkRetryStatus block.
389This block comes into play only if the handlingCode is retry, and the retry count is lesser than the maximum allowed no of retries, then the current sequence is again reduced by 1 , so that the same block is executed again.Request in the requestdb is updated with a setRetryStatusMessage, keeping an eye on the no of retries executed.
390
391
392And in this particular example ActivateServiceInstanceBB.bpmn is called next in the sequence.
393Here updateOrchestrationStatusActiveService is called, which is BPMN access method to update status of Service to Active in AAI. Here orchestrationStatus is set to active for the particular service instance and is updated in the AAI .
394
395# 8. updateRequestStatusToComplete is called if the "complete" flag is true
396 a. Here first the request is got from the requestDbclient http://request-db-adapter:8083/infraActiveRequests/requestid
397
398 b. Then a status message is formed as "Macro-" + resourceName + "-" + action + " request was executed correctly."
399
400 This status message is updated in the request as well as is set to finalStatusMessage of the execution variable
401
402 c. Other request parameters are updated
403
404 request.setEndTime(endTime);
405
406 request.setFlowStatus("Successfully completed all Building Blocks");
407
408 request.setProgress(Long.valueOf(100));
409
410 request.setRequestStatus("COMPLETE");
411
412 request.setLastModifiedBy("CamundaBPMN");
413
414 d. This new request parameters are updated by a put request to the requestDbclient
415
416
417
418
419Flow ends
420----------
421
422If there are other resources present along with the service : Eg :- Volumegroup.( These BBs wil be specifically called )
423
4241) AssignVolumeGroupBB :
425
426 a. genericvnfid and volumegroupid is obtained from the execution block.
427 b. volumegroup orchestrationstatus is set to assigned
428 c. a volume group of the above details is created in aai
429 d. connect volumegroup to this genericvnf
430 e. cloud configuration is got, and then the volumegroup is linked to tenant
431
432
433
4342) createVolumeGroupBB :
435
436 a. get the vf details according to Vf module id from sdnc.
437 b. vfmodulequeriedfromsdnc is set to the executionvariable.
438 c. createVolumeGroupRequest is formed with getCloudRegion, serviceinstance, genericVnf, volumegroup, sdncVfModuleQueryResponse.
439 d. calls vnfadapter, which in turn calls openstackadaptertask.
440 e. update heattask in the volumegroup and which is ammended in the aai.
441 f. orchestrationstatus for the volume group is set to created.
442
443
4443) ActivateVolumeGroupBB :
445
446 orchestrationstatus for the volume group is ammended to active.
447