diff options
author | aleemraja <ar00500721@techmahindra.com> | 2020-07-16 21:46:19 +0530 |
---|---|---|
committer | aleemraja <ar00500721@techmahindra.com> | 2020-07-16 21:49:43 +0530 |
commit | 4dbd4fc629c4c3e8c491ed7fdd904e2ecfa4c0e0 (patch) | |
tree | 0d1c9385051b0699ab98497e0aaa744156fe6fd4 /src/main/resources | |
parent | 24e99d433cfde855e3e4ce06b6f7fb00f47dad52 (diff) |
Preparing the request payload for calling SO macro flow.
- Added JUnit Test cases and Kararte test for service catalog.
- Added test case for Execution Task for Macro Flow.
- Modified RequestDetails and RequestInfo to match with SO Macro request payload.
- Added k8s configuration in application.properties.
Issue-ID: EXTAPI-368
Signed-off-by: aleemraja <ar00500721@techmahindra.com>
Change-Id: Ibbbbbd2d7021c16ea6291cc899e310ae26200833
Signed-off-by: aleemraja <ar00500721@techmahindra.com>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/application-test.properties | 7 | ||||
-rw-r--r-- | src/main/resources/application.properties | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/main/resources/application-test.properties b/src/main/resources/application-test.properties index 1a73f16..ac3efec 100644 --- a/src/main/resources/application-test.properties +++ b/src/main/resources/application-test.properties @@ -30,12 +30,17 @@ onap.lcpCloudRegionId = RegionOne onap.tenantId = 31047205ce114b60833b23e400d6a535 onap.cloudOwner = CloudOwner +# k8s +onap.k8sCloudRegionId = k8sregionfour +onap.k8sCloudOwner = k8scloudowner4 +k8s-rb-profile-name = default + # NBI nbi.url = http://localhost:${server.port}${server.servlet.context-path} nbi.callForVNF = false # SCHEDULER -scheduler.pollingDurationInMins = 0.1 +scheduler.pollingDurationInMins = 0.2 serviceOrder.schedule = 5000 serviceOrder.initial = 1 executionTask.schedule = 2000 diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index e719c6f..b010f50 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -40,6 +40,11 @@ onap.lcpCloudRegionId = RegionOne onap.tenantId = 6e97a2bd51d74f6db5671d8dc1517d82 onap.cloudOwner = CloudOwner +# k8s +onap.k8sCloudRegionId = k8sregionfour +onap.k8sCloudOwner = k8scloudowner4 +k8s-rb-profile-name = default + # NBI nbi.url = https://localhost:${server.port}${server.servlet.context-path} nbi.public.url = https://${server.public.ip}:${server.port}${server.servlet.context-path} |