doc.git
5 years agoUpdated git submodules
Jimmy Forsyth [Wed, 5 Dec 2018 21:00:42 +0000 (16:00 -0500)]
Updated git submodules

Project: aai/aai-common master ddf953affc477a77f9b68583f8ba0d6d5705882a

Add nodesQuery document

Issue-ID: AAI-1993
Change-Id: Ic18ed4be11ce654214cffd7f2e0180f078eee9ed
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
5 years agoUpdated git submodules
Arul.Nambi [Wed, 5 Dec 2018 18:41:57 +0000 (13:41 -0500)]
Updated git submodules

Project: aai/sparky-be master 53d13ff36532723582f55febce79de2282e46cde

Updating https certificate

Issue-ID: AAI-1992
Change-Id: Ied8d4468dbd2f477595a5802d3c8e0b0789d13e8
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
5 years agoUpdated git submodules
Rob Daugherty [Wed, 5 Dec 2018 19:08:54 +0000 (19:08 +0000)]
Updated git submodules

Project: so master 35726250e078b57ebe6ea4e53b4b8ccd56573e50

Merge "Add Cloud Owner"

Add Cloud Owner

Update ref data, turn test into integration test
Fixed junit test  to use cloudOwner as "my-custom-cloud-owner".
Fixed junit test case for the new method.
updates to the junit test case for

Update WorkflowAction.queryNorthBoundRequestCatalogDb to have
cloud-owner as a param

Add a new method to CatalogDBClient-
getNorthBoundRequestByActionAndIsALaCarteAndRequestScopeAndCloudOwner()

Update Repeatable Migration to have CloudOwner Populated for all Records
Add New Migration Script to Add Cloud_Owner Column to
North_Bound_Request Table
Add Cloud_Owner Field to Java Bean, as a String

Change-Id: I9f135be8923626c6d6f6b4ae23e4cbc0200067e2
Issue-ID: SO-1276
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
5 years agoUpdated git submodules
Rob Daugherty [Wed, 5 Dec 2018 19:03:08 +0000 (19:03 +0000)]
Updated git submodules

Project: so master 03b31bd484e2a46da210f0b2d31b1d5447b41952

Merge "Resolve Security Exploits"

Resolve Security Exploits

normalize all file paths before using them

Change-Id: I67aaa00d7218b95dde96f3679efe92c3c0cd33f9
Issue-ID: SO-1275
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
5 years agoUpdated git submodules
sunil unnava [Wed, 5 Dec 2018 18:00:13 +0000 (13:00 -0500)]
Updated git submodules

Project: dmaap/messagerouter/messageservice master 2b80d1a99615392a791fa15f04085601f13fbaba

Fix for Kafka Consumer is not safe error

Pre create a dummy topic and subscribe to it during first POST call for
posting a message to create __consumer_offsets topic

Issue-ID: DMAAP-896
Change-Id: I11f3f9b8764232bc7d4e9bb270d5d73fc280cb80
Signed-off-by: sunil unnava <sunil.unnava@att.com>
5 years agoUpdated git submodules
Marcus Williams [Wed, 5 Dec 2018 18:14:09 +0000 (18:14 +0000)]
Updated git submodules

Project: so master 3b22842f0065b5fb3b8bc28974f974646d4b46cc

Merge "Always UnAssign"

Always UnAssign

Removed logic to skip unassign sdnc in rollback flows
Properly merge UT Class to remove test cases no longer needed

Change-Id: I5041d6c828003aee953fb0cff3ac9e99f608ef10
Issue-ID: SO-1268
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
5 years agoUpdated git submodules
Thomas Nelson [Wed, 5 Dec 2018 16:45:41 +0000 (16:45 +0000)]
Updated git submodules

Project: music master e1cb3393d9ff1553a30190b8432c40418edd9dc0

Merge "Sonar Fix: MusicDataStore"

Sonar Fix: MusicDataStore

Fixed sonar issues/code-smells across this file.

Issue-ID: MUSIC-201
Change-Id: I13ee35c8b7b6096bce3d46082878140b8da5c57f
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
5 years agoUpdated git submodules
Kajur, Harish (vk250x) [Tue, 4 Dec 2018 19:06:14 +0000 (14:06 -0500)]
Updated git submodules

Project: aai/aai-common master 8fb7aa6480d4d7becbbab5fcfabd6af3f57e7d74

Improve the performance of resoures microservice

Currently the findSubGraph is being invoked
and causing additional calls to the database by backing
a tree backed vertex and slowing the performance of GET ALLs
Original intention of both of them was to pre fetch depth 0, 1, and 2
at once so we don't have to get them at each depth but since
that was not done right there is extra amount of time

After the aai-uri migration to ensure all vertexes
have the aai-uri and also to make sure they are unique across graph
we don't need to traverse a vertex to find the parents to build aai-uri
it was done previously when there was no aai-uri to derive the uri of a
given vertex and its not necessary anymore so there would be performance
improvements of vserver when there are a lot of relationships

Currently the edge labels are retrieved for each vertex a
and b and the performance of the GET with relationships will be
propotional to the GET request and how many cousin edges it has
and the more cousin edges there are the more slower the response time
will be as for each cousin vertex its trying to get the edge in between
so the code is modified to only go to the database for the edge label
when there are multiple edge labels (cousin edges) between a and b
If there are only one edge label and its a cousin vertex then we
can use the edge rule to be able to figure out the edge label

Improve PUT on the cloud region by modifying the getEdgesBetween
method which currently was retrieving all the parent
child edges between a and b and then only using the first edge
The traversal itself was too complicated and was costly in terms of
database retrieval and calls and optimized the code to utilize the
edge information so we can modify the query to db at runtime
based on the information provided so when a 10000 vservers under a
tenant adding a new vserver under tenant would be slow because of the
old query performance as it was taking some time there but with this
optimization, its only spending at most a millisecond or 2 in that
method

Also noticed that when a PUT operation takes place, the method
calls the related objects to create a dmaap event which was in turn
calling the findParents and actually utilizing the parents to create the
dmaap event and would spend quite a lot of time here because of the
expensive call of the findParents in this case we need those vertexes
So optimized the code so based on a given vertex, we have the aai-uri
and the newly added metadata uriTemplate to break the aai-uri into
its parent aai-uri and grand parent aai-uri and so forth
With this breakdown, we can get the list of aai-uris which are parents,
grandparents and then use the aai-uri to look them up which is O(1)
lookup time due to the fact they are unique indexes
The time it takes when doing a traversal to find the parents is
propotional to the number of edges but this will be optimistic

Another area which was improved was the json path execution of the
edge rules so when the edge rules get loaded into memory it creates a
document object, it utilizes the jsonpath to query information about
the edge rules but the only thing here is each time it gets called
the query gets invoked and uses jsonpath to retrieve the edge rules when
we can cached them based on the filter so that the user executed and if
the filter is the same as before, the expected edge rules will return
the same
Too much time was spent making the query and retrieving and building the
edgerules
So a cache is a perfect way to optimize this part

Issue-ID: AAI-1987
Change-Id: Ieb8237de3fd31136ceac14bf4a8216a7ab3b7179
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
5 years agoUpdated git submodules
Hong Guan [Tue, 4 Dec 2018 19:35:36 +0000 (14:35 -0500)]
Updated git submodules

Project: ccsdk/platform/plugins master 2e7361cf94af3d57ae57610118a8a8975e022f74

Add a new 'status' workflow for Helm Plugin

Change-Id: I87aa50b5ab5524494f035b290323c697169f26b9
Issue-ID: CCSDK-788
Signed-off-by: Hong Guan <hg4105@att.com>
5 years agoUpdated git submodules
sebdet [Sat, 1 Dec 2018 14:09:54 +0000 (15:09 +0100)]
Updated git submodules

Project: clamp master d72d0d05d74f4125e8f36beea096aa7769d19eab

Additional code for Tosca

Tosca code for policy dynamic configuration

Issue-ID: CLAMP-252,CLAMP-251
Change-Id: Icd96f833567050c1dd4730a61765507ad24ebd2e
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Wed, 5 Dec 2018 14:25:02 +0000 (14:25 +0000)]
Updated git submodules

Project: oom master 12e23e7e38aa6254e7475936667982cdf23d18de

Merge "POMBA - Fix logging output path"

POMBA - Fix logging output path

Change-Id: I420608d77b2576d6ea58e489b98a4bc9113a2333
Signed-off-by: jmac <james.macnider@amdocs.com>
Issue-ID: LOG-894

5 years agoUpdated git submodules
Alexis de Talhouët [Wed, 5 Dec 2018 14:24:31 +0000 (14:24 +0000)]
Updated git submodules

Project: oom master a40df9c18b8a31526ccc4c852c544508717bca73

Merge "Change template properties for AAI"

Change template properties for AAI

To be merged together with https://gerrit.onap.org/r/#/c/71855/

Change-Id: Ib09f3e8cdbe01c95594430ae13aab1f7f867b606
Issue-ID: VID-347
Signed-off-by: biniek <lukasz.biniek@nokia.com>
5 years agoUpdated git submodules
Rob Daugherty [Wed, 5 Dec 2018 14:04:46 +0000 (14:04 +0000)]
Updated git submodules

Project: so master d2589e832d2235e5ae5b8b376467eb6427f821e6

Merge "dmaap topic listening - bug fixing"

dmaap topic listening - bug fixing

Change-Id: I9116138f81596029b0ba1edc8e7e095498a0772e
Issue-ID: SO-1253
Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
5 years agoUpdated git submodules
Rob Daugherty [Wed, 5 Dec 2018 14:04:26 +0000 (14:04 +0000)]
Updated git submodules

Project: so master 8c56c58a5546a24d7a341fe985efa5845bf31fbb

Merge "Updated Network Logic"

Updated Network Logic

Added logic to get aggregate route, updated unit test, fixed bugs,
refactored select code.

Change-Id: I3269da1967ba903dd11459f76030c3fc2aad797a
Issue-ID: SO-1270
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
5 years agoUpdated git submodules
Rob Daugherty [Wed, 5 Dec 2018 14:01:17 +0000 (14:01 +0000)]
Updated git submodules

Project: so master b6757920a3a86e750b378d57262d4155a1c2caff

Merge "Add support for naming service"

Add support for naming service

Moved client and builder to namingservice package
Renamed file to NamingRequestObjectBuilder and updated packages
Updated namespaces for namingservice beans
Removed unused test resource files
Added endpoint and authentication information to yaml
Added NamingMapperTest for mapper layer
Added NamingMapper for mapping requests and responses
Began adding NamingClient for assign and unassign requests
Added maven dependency for namingmS client beans
Describe NamingClientResponseValidator as a Bean
Fix a JUnit for delete tasks for Naming Service.
Change NamingClient to return a String with the result and throw an
exception.
Add delete/create tasks for NamingService interaction and related
JUnits.
ResponseValidator for NamingClient and Resources class to support
Naming Service interactions.
removed naming service dependency
added serializable flag for naming service model gen

Change-Id: I0d9efe4009207f3739a3b6515592e67cfeedf822
Issue-ID: SO-1260
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
5 years agoUpdated git submodules
helenc878 [Wed, 5 Dec 2018 04:39:34 +0000 (20:39 -0800)]
Updated git submodules

Project: integration master 071cbf7518ddff923713b77296b5267926976101

Link OOF and PCI

Issue-ID: INT-751

Change-Id: Ibe7d5f2859bd2453fd951eb106fc52d45edb65b6
Signed-off-by: helenc878 <helen.chen@huawei.com>
5 years agoUpdated git submodules
Borislav Glozman [Wed, 5 Dec 2018 11:41:57 +0000 (11:41 +0000)]
Updated git submodules

Project: oom master a7a8e4efb4f6a4d75f19c6892def211ef68d2152

Merge "Add CCVPN policy in push-policies.sh script"

Add CCVPN policy in push-policies.sh script

Add CCVPN policy in push-policies.sh script

Issue-ID: POLICY-1356

Change-Id: Ia29455c13a59069251fbb115b09b6d4849795808
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
5 years agoUpdated git submodules
Yarin Dekel [Mon, 3 Dec 2018 15:34:43 +0000 (17:34 +0200)]
Updated git submodules

Project: sdc/sdc-workflow-designer master 102f00d76ea26c5d449b9993269151bc8bb53a6c

Workflow- added getWorkflow call to catalog

Issue-ID: SDC-1963
Change-Id: Icacc4d1e7511adde514ecec3fb7dab1cad6a3b33
Signed-off-by: Yarin Dekel <yarind@amdocs.com>
5 years agoUpdated git submodules
Yarin Dekel [Tue, 4 Dec 2018 13:34:20 +0000 (15:34 +0200)]
Updated git submodules

Project: sdc/sdc-workflow-designer master 016ae9fea4e54f82e04427851f483729263e42cd

WF- disable add new when ARCHIVED

Issue-ID: SDC-1972
Change-Id: I3c73d587b3b891a09b0858cf9df00467c111d7ff
Signed-off-by: Yarin Dekel <yarind@amdocs.com>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:17:10 +0000 (12:17 -0800)]
Updated git submodules

Project: sdc/sdc-workflow-designer master c4c5f89072f95a09b16dbcc1e89ff004c47876c0

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: I6594a9ae9da8b39177ed78a29ae4b1c36e9be85b
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:17:04 +0000 (12:17 -0800)]
Updated git submodules

Project: sdc/sdc-titan-cassandra master 63687989ade039878eb40fa7b8ab19b0f8e0b851

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: I77d19a97db766718649d2f41ce9bf37c7ab66574
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:17:07 +0000 (12:17 -0800)]
Updated git submodules

Project: sdc/sdc-tosca master 783eacd37b0ff6651937ecc6980b85e232df42f7

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: I257f02b2d071543fb441ce2b998e5c27a6473704
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:16:58 +0000 (12:16 -0800)]
Updated git submodules

Project: sdc/sdc-distribution-client master 7406ef61286cf53380755538bfc066e599b3ccae

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: I13fbad0ecba61e85e2ccc5b0196f319ef513c1ed
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:16:48 +0000 (12:16 -0800)]
Updated git submodules

Project: sdc/jtosca master 8e6ae20e9ae0a66c4f518f74d059e8cedf157693

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: Ie33036f6e884a47b3ec898d913d37b8ac37ce52b
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
Jessica Wagantall [Tue, 4 Dec 2018 20:16:31 +0000 (12:16 -0800)]
Updated git submodules

Project: sdc master f1890525b78f5f1f4e47e496f11ec51bf5f69d36

Update INFO.yaml file

Remove Michael Lando. Add Ofir Sonsino as PTL

Change-Id: Ib50914d032a387a9982e67febded4f3fc81f2386
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoUpdated git submodules
fujinhua [Wed, 5 Dec 2018 05:56:30 +0000 (13:56 +0800)]
Updated git submodules

Project: vfc/nfvo/lcm master 46f5355dc0d3401ab76ee2d8def56b6cd2651689

Fix vnfm_type get logic when upgrade tosca-parser

Change-Id: I0573e6e6468f361db429d54d85212236e2679d8c
Issue-ID: VFC-1197
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
5 years agoUpdated git submodules
Yarin Dekel [Tue, 4 Dec 2018 15:48:38 +0000 (17:48 +0200)]
Updated git submodules

Project: sdc/sdc-workflow-designer master 5cfa9862878b155ce47c859ba04c13010b8e6626

WF- archive warning before deleting

Issue-ID: SDC-1981
Change-Id: I3c00021c25847a68a0d603db87173da7cb190d43
Signed-off-by: Yarin Dekel <yarind@amdocs.com>
5 years agoUpdated git submodules
Seshu Kumar M [Wed, 5 Dec 2018 03:58:34 +0000 (03:58 +0000)]
Updated git submodules

Project: so master 12b82667b31640f815a973dc0762f78254165a52

Merge "Fix auth for catalog db"

Fix auth for catalog db

Fix auth for catalog db.

Change-Id: Ic787993f608b7ddf74167f7859a519ca02b794ed
Issue-ID: SO-689
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
5 years agoUpdated git submodules
Steven Wright [Tue, 4 Dec 2018 21:34:42 +0000 (21:34 +0000)]
Updated git submodules

Project: vnfrqts/requirements master 04b16e7b377d47e5618b0f4abae58fe2b79b06e7

Merge "[VNFRQTS] updated requirements in Ch 5"

[VNFRQTS] updated requirements in Ch 5

Change-Id: I7f0ba14b813c03263590ba22fef265d23c081b7e
Issue-ID: VNFRQTS-504
Signed-off-by: weinstock, alan <aw2574@att.com>
5 years agoUpdated git submodules
Smokowski, Steve (ss835w) [Tue, 4 Dec 2018 18:08:35 +0000 (13:08 -0500)]
Updated git submodules

Project: so master 0f8c365d5585875e7647e5863ea92dc5737e63b7

Fix Bux

Fix Bug with mapping  of VNFC Instance Groups

Change-Id: Idb35d33f47f9e4854d68590d665553f8385123ab
Issue-ID: SO-1267
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
5 years agoUpdated git submodules
weinstock, alan [Mon, 3 Dec 2018 21:56:16 +0000 (21:56 +0000)]
Updated git submodules

Project: vnfrqts/requirements master d3edac07be9b91d67a7fb6c29be5711b680dc838

[VNFRQTS] updated heat requirements

Change-Id: Ic2e416a20692a6f426810fb72121daeedf719b36
Issue-ID: VNFRQTS-502
Signed-off-by: weinstock, alan <aw2574@att.com>
5 years agoUpdated git submodules
liamfallon [Mon, 3 Dec 2018 22:48:10 +0000 (22:48 +0000)]
Updated git submodules

Project: policy/apex-pdp master 259039fa91e3038c41f4a322d81e7ea07a78b96e

Add unit test for Java executor

Code coverage in the Apex-PDP plugins is very low. JUnit coverage will be
increased for the Plugins over the Dublin design timeline.

Issue-ID: POLICY-1379
Change-Id: Ie70ab5a9be650818cb330ec5be2a89a5db6153c5
Signed-off-by: liamfallon <liam.fallon@est.tech>
5 years agoUpdated git submodules
Lior Nachmias [Tue, 4 Dec 2018 11:56:49 +0000 (13:56 +0200)]
Updated git submodules

Project: sdc master 0151d9cc6fc3a9db776c8eeaa4db4123af45d746

Change VF version failure - bug fix.

Change-Id: I933fba8f03686d46755b8f9ea06a819ef9356140
Issue-ID: SDC-1971
Signed-off-by: Lior Nachmias <lior.nachmias@intl.att.com>
5 years agoUpdated git submodules
Ofir Sonsino [Tue, 4 Dec 2018 13:58:17 +0000 (13:58 +0000)]
Updated git submodules

Project: vid master 7cdf140ac9f7950dacb8110b17190a188a2189bf

Merge "Change template properties for AAI"

Change template properties for AAI

Change-Id: I5412a152e6df701d94c8dffbc2a22d70e282008c
Issue-ID: VID-343
Signed-off-by: biniek <lukasz.biniek@nokia.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:59:02 +0000 (12:59 +0000)]
Updated git submodules

Project: oom master 693bc2491bb1249f3e0313a31c4240f5f65e3ba3

Merge "Make the PNDA mirror accessible via a NodePort"

Make the PNDA mirror accessible via a NodePort

The allocated port is {{.nodePortPrefixExt}}00 (i.e.: 30400).

Change-Id: If11ab3a799c7225bc1a7227c0866f2eb4173ea13
Issue-ID: DCAEGEN2-779
Signed-off-by: Julien Barbot <julien@barbot.org>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:58:49 +0000 (12:58 +0000)]
Updated git submodules

Project: oom master a8149b2cf3fe63dd6ffcb7dcb108656ae9136381

Merge "logstash replicaset 5 to 3 and 1 dev.yaml"

logstash replicaset 5 to 3 and 1 dev.yaml

Change-Id: I248d11cab8b35b8b10b3c9bef7d49d5fb4182798
Issue-ID: LOG-860
Signed-off-by: root <frank.obrien@amdocs.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:58:38 +0000 (12:58 +0000)]
Updated git submodules

Project: oom master 0c20716c0e970e65daef7d4a9bff16e589e649fa

Merge "Use flavors for resources in oof csmo deployment"

Use flavors for resources in oof csmo deployment

For Casablanca release, flavors have been set up for choosing the "right"
resource requests and limits.

Although the deployment is using the right way for that, oof-csmo-service
charts values.yaml was not. This commit makes values.yaml aligned with
flavors

Change-Id: I38075343b24fc2af85795e9c2a65356d5b776391
Issue-ID: OPTFRA-403
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:58:18 +0000 (12:58 +0000)]
Updated git submodules

Project: oom master 46d96aee405beb2438a481ca35ee68519cae0ec0

Merge "Set resource limits/requests for POMBA data router"

Set resource limits/requests for POMBA data router

Using in POMBA data router resources flavors (small, large and unlimited) set
in values.yaml into deployment.yaml

Change-Id: I48fcba823b8c23e76432693c91c8ec896d85a0a0
Issue-ID: LOG-857
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:57:59 +0000 (12:57 +0000)]
Updated git submodules

Project: oom master 3f2dd5c3f6e9cb3058773576e8edfc8a0f49ee77

Merge "Add SO-Monitoring info to relevant Database Tables"

Add SO-Monitoring info to relevant Database Tables

Change-Id: I1130c48d54baa3c388745f8582b6ef952a06e5e3
Issue-ID: OOM-1519
Signed-off-by: Eoin Hanan <eoin.hanan@ericsson.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:57:43 +0000 (12:57 +0000)]
Updated git submodules

Project: oom master 27b29b4ff080a0e9281d93ea0e7bd32bcd607615

Merge "vfc adapter authentication bug fix"

vfc adapter authentication bug fix

Change-Id: Idaa55084f5ecb0dd3636c232cebc14fa5f064414
Issue-ID: SO-1256
Signed-off-by: Yulian Han <elaine.hanyulian@huawei.com>
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:57:11 +0000 (12:57 +0000)]
Updated git submodules

Project: oom master e57c08117b34fdf4c897612a471649d65ee5573a

Merge "Update multicloud version 1.2.2"

Update multicloud version 1.2.2

Change-Id: I2b6c8842b88219ee8be425beaff65c6f75761e9d
Issue-ID: MULTICLOUD-419
Signed-off-by: Bin Yang <bin.yang@windriver.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:56:59 +0000 (12:56 +0000)]
Updated git submodules

Project: oom master b205843ff0c534a1be0009f1b7538c517a6d8d7e

Merge "update DFC tag to 1.1.0 for master branch"

update DFC tag to 1.1.0 for master branch

Change-Id: I6a71dc958bf4aae8358f714b24d4f44956e0c3ac
Signed-off-by: Chengkai Yan <martin.c.yan@est.tech>
Issue-ID: DCAEGEN2-964

Add missing notes to etc/hosts

Added missing entries in the /etc/hosts to use the portal
and hints to use the HTTPS URL
Issue-ID: OOM-1368

Change-Id: I48b1c88cec7b91bf37cb696b11c6de29e4c7458d
Signed-off-by: andreasgeissler <andreas-geissler@telekom.de>
Update format of release summary

Change-Id: Ic0f0d402aee990ebe65d11c1b64e3beb7e1f9257
Issue-ID: OOM-1498
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Update Known Issue

Updated the workaround and added links to k8s ticket and OOM issues related
Issue-ID: OOM-1532

Change-Id: I43c1e23b1310dac4ae19d0b9c7fc07167da4f053
Signed-off-by: andreasgeissler <andreas-geissler@telekom.de>
Added Known Issue

Added Workaround for known Kubernetes problem
Issue-ID: OOM-1532

Change-Id: Idc0d9c882c4992a6db68e66ac43bad25566a8270
Signed-off-by: andreasgeissler <andreas-geissler@telekom.de>
Update OOM docs for Casablanca

Updating release notes, Helm and K8s versions and
started documenting use of (un)deploy plugins.

Change-Id: Ia51db5f1489e8d63fd7e1f10e80174eb9f182f0f
Issue-ID: OOM-1497
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Update gerrit branch refs to 3.0.0-ONAP

Change-Id: I75ea788f47598aa07ecb6550b5db7e9e4fdc1d36
Issue-ID: OOM-1533
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:56:42 +0000 (12:56 +0000)]
Updated git submodules

Project: oom master 72262c28939cd9f6e173bb810b23b54f8a3822c9

Merge "Update OOF version for HAS"

Update OOF version for HAS

Update version to 1.2.5 which includes HAS bug fixes

Change-Id: I456ac2cd0c17bad545539fefb9953a79eac09006
Issue-ID: OPTFRA-401
Signed-off-by: Ruoyu <ruoyu.ying@intel.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:56:32 +0000 (12:56 +0000)]
Updated git submodules

Project: oom master 0b61ad8715077d84898724435ae30366ecfd4190

Merge "Reducing the size of some ms"

Reducing the size of some ms

Reduced the footprint of sparky, data-router, search and elastic search
for the small flavor.

Issue-ID: AAI-1940
Change-Id: I474aa2eb12b14e091d3011d23587ad7453d37a3d
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:55:38 +0000 (12:55 +0000)]
Updated git submodules

Project: oom master 2d1df02d04088baf788a7ee16d8560387d491098

Merge "Add SDNC Context Builder to POMBA OOM"

Add SDNC Context Builder to POMBA OOM

Issue-ID: LOG-470

Change-Id: Ib4d9f780159e468641e3152d6bb1246d5cb6965b
Signed-off-by: Shane Daniel <shane.daniel@amdocs.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Tue, 4 Dec 2018 12:55:03 +0000 (12:55 +0000)]
Updated git submodules

Project: oom master b5ddca06e8df2c49c1c8e9d5df2dacb77110695e

Merge "[aai-spike] Update schema ingest configuration"

[aai-spike] Update schema ingest configuration

* This change is related to changes in AAI Spike to use the latest
  version of aai-common. The aai-common adoption requires
  configuration of schema ingestion beans and the resources
  updated in this commit provide that configuration.
* Additionally, the configuration of the meta-validation of the
  DBEdgeRules, know as "Edge Properties", is now separated into
  its own property file (edgeprops-ingest.properties) to
  distinguish this particular configuration from
  the aai-common schema ingest configuration.

Change-Id: I15c79b36c7f53f4c7e85f83179b1f7674b28a200
Issue-ID: AAI-1953
Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
5 years agoUpdated git submodules
Manzon, Inna (im453s) [Thu, 29 Nov 2018 16:07:09 +0000 (18:07 +0200)]
Updated git submodules

Project: sdc/sdc-tosca master c6349247602f23e3de21523057b81dc54650e95a

SDC Tosca Parser getEntity API

Change-Id: I4b357eefee16f5d8cfe34b48b5f1096e8ded31ff
Issue-ID: SDC-1967
Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
5 years agoUpdated git submodules
sebdet [Sat, 1 Dec 2018 14:06:42 +0000 (15:06 +0100)]
Updated git submodules

Project: clamp master d1779040e9f6aeaff20a8c0f4da64f4ac7774ae0

Some minor improvements

Minor improvements of condition, sonar reporting

Issue-ID: CLAMP-252
Change-Id: I216a0896f15e92a0b72e85d0c1ebc114a7302036
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
5 years agoUpdated git submodules
sebdet [Fri, 30 Nov 2018 18:13:06 +0000 (19:13 +0100)]
Updated git submodules

Project: clamp master 13cd99b20365b23d1db641eb367456a961d89c33

Replace wrong name

Replace wrong names in samples

Issue-ID: CLAMP-252
Change-Id: I17dc8715ac1080c7f8823dc4903f0b68b9774067
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
5 years agoUpdated git submodules
sebdet [Fri, 30 Nov 2018 18:11:53 +0000 (19:11 +0100)]
Updated git submodules

Project: clamp master 8122a24a24cd581e8dde2729269109918f6a5452

Removal of useless stuff

Removal of useless files and configuration

Issue-ID: CLAMP-252
Change-Id: If2c81708d4158404151740ba719fe2dd666c6152
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
5 years agoUpdated git submodules
sebdet [Fri, 30 Nov 2018 18:10:01 +0000 (19:10 +0100)]
Updated git submodules

Project: clamp master 654dea79ec89c9a17205bf59fa45da9aebc0d28f

Remove bad names

Remove bad names in examples for unit tests

Issue-ID: CLAMP-252
Change-Id: I035f82ce2333d246ac90ca70d506703ced131ce6
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
5 years agoUpdated git submodules
Jessica Wagantall [Mon, 3 Dec 2018 23:32:16 +0000 (15:32 -0800)]
Updated git submodules

Project: sdc/sdc-workflow-designer master 776a358ad9cf412ae5fab020a3483ccd37cb9f5c

Update SDC Workflow committers

Remove Meng Zhaoxing and Huabing Zhao from the
committer group.

Change-Id: I25ac5ce8eee905d1d3bb7c048d37ace6fe141815
Issue-ID: CIMAN-134
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
5 years agoMerge "Remove redundancy on Use Case"
Rich Bennett [Tue, 4 Dec 2018 04:50:18 +0000 (04:50 +0000)]
Merge "Remove redundancy on Use Case"

5 years agoUpdated git submodules
Bharath Balasubramanian [Tue, 4 Dec 2018 03:39:26 +0000 (03:39 +0000)]
Updated git submodules

Project: music master 3fd10b5926445dffe0c95bf96645c6d14cb0ccf2

Merge "Fixed sonar issue in AppMessages.java"

Fixed sonar issue in AppMessages.java

Added getter and setter methods
Issue-ID: MUSIC-208
Change-Id: I87ba212f79d70c6d105467f31b410fbed95891d5
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
5 years agoRemove redundancy on Use Case 69/74169/1
Gildas Lanilis [Tue, 4 Dec 2018 03:04:03 +0000 (19:04 -0800)]
Remove redundancy on Use Case

Remove old Use Case from the Developer guide.
There is a new Use Case section under User Guides.

Change-Id: I906eb759898a804571eb1588086ea78039c9b59b
Issue-ID: DOC-333
Signed-off-by: Gildas Lanilis <gildas.lanilis@huawei.com>
5 years agoUpdated git submodules
Brian Freeman [Mon, 3 Dec 2018 22:47:51 +0000 (17:47 -0500)]
Updated git submodules

Project: integration master 51a35e038a69da823f8f8aa0f9706e31617a13a4

5G OOF_PCI

Contributed by NK Shankananarayanan

Issue-ID: INT-751
Change-Id: I260e1a503f95ff1d02a217a626628d150623c9f8
Signed-off-by: Brian Freeman <bf1936@att.com>
5 years agoUpdated git submodules
sunil unnava [Mon, 3 Dec 2018 22:18:39 +0000 (17:18 -0500)]
Updated git submodules

Project: dmaap/messagerouter/messageservice master 25010bd2b53ba0e888bdfa36c10acda3841fa5f5

remove pre configuted topics

Issue-ID: DMAAP-883
Change-Id: Id5f13e4d65ae8b566f77e8e8b93ee96a16c90862
Signed-off-by: sunil unnava <sunil.unnava@att.com>
5 years agoUpdated git submodules
James Forsyth [Mon, 3 Dec 2018 21:55:02 +0000 (21:55 +0000)]
Updated git submodules

Project: aai/aai-common master 7bc1735a516e56d837aa5af3d4849cdcb7af26c7

Merge "Make instance-group description optional"

Make instance-group description optional

Issue-ID: AAI-1982
Change-Id: Ie572a40a7d0590a62d4919a76753a632c52c4766
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
5 years agoUpdated git submodules
James Forsyth [Mon, 3 Dec 2018 21:08:18 +0000 (21:08 +0000)]
Updated git submodules

Project: aai/aai-common master b5fd9c7b3b584da14ddb839556b769d4ed82c4a3

Merge "Add support for generic vnf to cloud region"

Add support for generic vnf to cloud region

Issue-ID: AAI-1980
Change-Id: Ic1a5689a891dac0ca13ab1b26760174985f304de
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
5 years agoUpdated git submodules
sunil unnava [Mon, 3 Dec 2018 20:36:19 +0000 (15:36 -0500)]
Updated git submodules

Project: dmaap/messagerouter/messageservice master ca11d4e2be8847fca9828d1b3a648eb2aa6c3062

remove pre configuted topics

Issue-ID: DMAAP-883
Change-Id: Id28af9c16c87363ddbe46824d7c645eea27bcc6b
Signed-off-by: sunil unnava <sunil.unnava@att.com>
5 years agoMerge "Update architecture section"
Rich Bennett [Mon, 3 Dec 2018 19:53:06 +0000 (19:53 +0000)]
Merge "Update architecture section"

5 years agoUpdated git submodules
wsx25289 [Mon, 3 Dec 2018 02:12:15 +0000 (21:12 -0500)]
Updated git submodules

Project: sdnc/oam master f795758fd327fad2a9ed7ac411cfd10a3d5922a0

fix topology discovery bug for ccvpn

Issue-ID: SDNC-354

Change-Id: I3c3d0a464af933da449f009690085d778bbb4614
Signed-off-by: Wsx25289 <10200860@zte.com.cn>
5 years agoUpdated git submodules
Jorge Hernandez [Mon, 3 Dec 2018 19:41:57 +0000 (19:41 +0000)]
Updated git submodules

Project: policy/apex-pdp master dc2e6900325c0e69e7efb0346602d29ee634fbea

Merge "Fix checkstyle/sonar issues"

Fix checkstyle/sonar issues

Remove unused imports
Add @FunctionalInterface annotation
Reduce the complexity of some methods

Change-Id: If519c31b113233361fbb935121fe6494263ac957
Issue-ID: POLICY-1074
Signed-off-by: liamfallon <liam.fallon@est.tech>
5 years agoUpdated git submodules
helenc878 [Mon, 3 Dec 2018 19:16:57 +0000 (11:16 -0800)]
Updated git submodules

Project: integration master ed9c15ca3c35e4928f459b256539d4a0e7792b1c

Added two CMs for Ajay.

Issue-ID: INT-751

Change-Id: Ife3d22963ec53ba945472f1caec9e83374659bad
Signed-off-by: helenc878 <helen.chen@huawei.com>
5 years agoUpdate architecture section 54/74154/1
Eric Debeau [Mon, 3 Dec 2018 19:07:56 +0000 (19:07 +0000)]
Update architecture section

Update architecture section with the architecture white-paper
Add new files for new blueprints (5G and CCVPN)

Issue-ID: DOC-363

Change-Id: I35b7633e71407b59b9f96ed5adf5814c7935341a
Signed-off-by: Eric Debeau <eric.debeau@orange.com>
5 years agoUpdated git submodules
Yang Xu [Sun, 2 Dec 2018 18:10:41 +0000 (13:10 -0500)]
Updated git submodules

Project: integration master 86c0e4a2cd78c553ff905b9ce3222a07b0775c86

Use Casablanca released artifacts for vCPE VNFs

Change-Id: I7bf82229b0e5cb8a02e0b5a0c8651c468cd3c436
Issue-ID: INT-717
Signed-off-by: Yang Xu <yang.xu3@huawei.com>
5 years agoUpdated git submodules
Lovett, Trevor [Mon, 3 Dec 2018 16:39:38 +0000 (10:39 -0600)]
Updated git submodules

Project: vnfrqts/requirements master 81f04340b7ac89c5161253bba63ccefaae464daa

VNFRQTS Moved R-01427 and R-894004 to Monitoring

Change-Id: Ie8cdb7a2372c860f40769eed9ce8dfebe72f01c2
Issue-ID: VNFRQTS-487
Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
5 years agoUpdated git submodules
Alexis de Talhouët [Mon, 3 Dec 2018 15:51:17 +0000 (15:51 +0000)]
Updated git submodules

Project: oom master 37ff490f83c89ce6c2ffb43a5bf41d3857de8801

Merge "Update Gizmo config for 1810 schema ingest"

Update Gizmo config for 1810 schema ingest

Change-Id: I88a2a7a266a628646cd2a0c3f88fbc7635070167
Issue-ID: AAI-1954
Signed-off-by: Ravi Geda <gravik@amdocs.com>
5 years agoMerge "Explaining what is ONAP in the logo"
Rich Bennett [Mon, 3 Dec 2018 15:49:15 +0000 (15:49 +0000)]
Merge "Explaining what is ONAP in the logo"

5 years agoUpdated git submodules
Pamela Dragosh [Mon, 3 Dec 2018 15:25:38 +0000 (15:25 +0000)]
Updated git submodules

Project: policy/apex-pdp master a3532f2fd160f1751162d27caae65414afa9c30c

Merge "Rename test classes in apex-pdp"

Rename test classes in apex-pdp

Make test classes name consitence by adding 'Support' or 'Dummy' at start of util or dummy type of test classes

Issue-ID: POLICY-1263
Change-Id: I1dc1a7f174660a90664ebdcff2ea79ed30aa465c
Signed-off-by: Parshad Patel <pars.patel@samsung.com>
5 years agoUpdated git submodules
liboNet [Tue, 27 Nov 2018 00:10:33 +0000 (08:10 +0800)]
Updated git submodules

Project: policy/distribution master 987cb61f269572fec7c0b0fe500f081ca36c2dd9

Fix policy format with vCPE service

. change the capital and lower-case letter
. add missing fields in ConfigBody policyName and templateVersion
that are requried by OOF
. add '=' into default operator once no such info in the input CSAR
. based on the vCPE service, which includes several CPs, some may do
NOT connect any VDU. so need deal with such case.
. add new test case to cover complicated service includes 5 policies
. change the resource's type from String to List as requried by OOF
which needs such format to deal with all kind of policies beides hpa
. improve the code style

Change-Id: Id39b1a0511c362c5ae9dce409af18b032832de80
Issue-ID: POLICY-1282
Signed-off-by: liboNet <libo.zhu@intel.com>
5 years agoUpdated git submodules
liamfallon [Sun, 2 Dec 2018 19:35:23 +0000 (19:35 +0000)]
Updated git submodules

Project: policy/apex-pdp master 457f041685a3a404a58a9f934282c76eba35ad81

Use Parent Eclipselink

Issue-ID: POLICY-1360
Change-Id: I99a9e7bf60590fd0da5d7ba001e8ab322623fee6
Signed-off-by: liamfallon <liam.fallon@est.tech>
5 years agoExplaining what is ONAP in the logo 11/73411/2
Gergely Csatari [Fri, 23 Nov 2018 10:08:25 +0000 (11:08 +0100)]
Explaining what is ONAP in the logo

This change explains what is ONAP in the logo of the
landing page.

Change-Id: I7de67d19a70e95ae68dbd3a4d035cfdece74808c
Issue-ID: DOC-357
Signed-off-by: Gergely Csatari <gergely.csatari@nokia.com>
5 years agoUpdated git submodules
Pamela Dragosh [Mon, 3 Dec 2018 13:05:49 +0000 (13:05 +0000)]
Updated git submodules

Project: policy/engine master f1e9c4a64eb9c5ef88bd7a77d35d2323414da0bb

Merge "Update RN"

Update RN

Fix typo on known issue section
Update link of Policy vulenerability report in Casablanca Vulnerability section

Change-Id: I951f317145a28157d2e6e90c78588649065cc4dd
Issue-ID: DOC-333
Signed-off-by: Gildas Lanilis <gildas.lanilis@huawei.com>
5 years agoUpdated git submodules
Joss Armstrong [Fri, 30 Nov 2018 14:12:38 +0000 (14:12 +0000)]
Updated git submodules

Project: appc master 210cbe9bec048b0e54afabd9bbb72ce5ca019a88

Fix for APPC-1264

Fixed broken unit tests. Improved unit testing and increased
line and branch coverage. Deleted unused and duplicated
files used in tests.

Issue-ID: APPC-1264
Change-Id: Idea7d46f4a6c9c591617fb973a8d33e5275e4579
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
5 years agoUpdated git submodules
Sandeep J [Fri, 30 Nov 2018 10:27:31 +0000 (15:57 +0530)]
Updated git submodules

Project: appc master de9d4887aabda45b805e744d2f4f1ec2dc6cf40d

added test case to ConfigurationHelperTest.java

to increase code coverage

Issue-ID: APPC-1086
Change-Id: Ibc9c9eb7ae15b0f3ad8d728d495de4fff4512982
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
5 years agoUpdated git submodules
svishnev [Mon, 5 Nov 2018 10:11:30 +0000 (12:11 +0200)]
Updated git submodules

Project: sdc master bacc715f10f5c648d61f0720120b14aadebf9a77

keyMirror with namespace

Issue-ID: SDC-1873
Change-Id: Ib8e810397578610cd7e0cba64e10ecc38d67f5eb
Signed-off-by: svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com>
5 years agoUpdated git submodules
Arielk [Sun, 2 Dec 2018 15:05:09 +0000 (17:05 +0200)]
Updated git submodules

Project: sdc master c97bae74316ddae5121dc361a7631a8cdaa335b0

complex types selectable in Operation params

Change-Id: I4ea366e1a9aff6bd0e3b707a292776bfb48b809f
Issue-ID: SDC-1968
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
5 years agoUpdated git submodules
Ofir Sonsino [Mon, 3 Dec 2018 07:10:14 +0000 (07:10 +0000)]
Updated git submodules

Project: vid master 6247c340ea26ec82909d844b0585e6ef4949ed94

Merge "Handle annotated-input which has 2 properties"

Handle annotated-input which has 2 properties

Handle correctly an annotated input, when it has more than a single
"vf_module_label".

Change-Id: Ibe3f6408d7d5c18b13e47846235a2b3ab66f35f8
Issue-ID: VID-362
Signed-off-by: Ittay Stern <ittay.stern@att.com>
5 years agoUpdated git submodules
Tal Gitelman [Sun, 2 Dec 2018 14:14:43 +0000 (16:14 +0200)]
Updated git submodules

Project: sdc master fb81b5b97b8375ed406e191039a95be9df43445f

update sdc portal integration

Issue-ID: SDC-1749

Change-Id: Ia6a143bfc0a1511909bc83cb5ea1c1b3f8789b08
Signed-off-by: Tal Gitelman <tal.gitelman@att.com>
5 years agoUpdated git submodules
Arielk [Wed, 28 Nov 2018 10:24:34 +0000 (12:24 +0200)]
Updated git submodules

Project: sdc master 4a99e32a55f5b9210625274310cb8d68dd4095e7

Indicate a workflow was archived in operation

Change-Id: I0d57384d036a575ba5dd86ad872c6e0f5b397490
Issue-ID: SDC-1866
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
5 years agoUpdated git submodules
Manzon, Inna (im453s) [Thu, 29 Nov 2018 15:26:34 +0000 (17:26 +0200)]
Updated git submodules

Project: sdc/jtosca master 789fe97ea2b934329b2b26323d7e5ffc44cf196f

SDC Tosca Parser getEntity API

Change-Id: Ifc007335ef57904305458f63b422f2db41a3e694
Issue-ID: SDC-1967
Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
5 years agoUpdated git submodules
Yarin Dekel [Thu, 29 Nov 2018 08:24:07 +0000 (10:24 +0200)]
Updated git submodules

Project: sdc master 42b83b0b7a51849671cfa4718b55cbf7fe2df8a2

onbaording search visibility

Issue-ID: SDC-1963
Change-Id: I2e40deb35970c848422c471114fccf2bb5c331e2
Signed-off-by: Yarin Dekel <yarind@amdocs.com>
5 years agoUpdated git submodules
ojasdubey [Thu, 29 Nov 2018 15:16:49 +0000 (20:46 +0530)]
Updated git submodules

Project: sdc master 6ce1094d509195fe484761467a67a6b3757593b0

Fix - Port type and vmtype underscore issue

1. Fix for consolidation of VMs for cases when:
   a. VM type contains an underscore
   b. Multiple ports per network role
2. Updated the unit test cases and test data

Change-Id: I875f3c8384f8ef2c2aa6add9e30a5f8899ae1a71
Issue-ID: SDC-1966
Signed-off-by: ojasdubey <ojas.dubey@amdocs.com>
5 years agoUpdated git submodules
shrikantawachar [Tue, 20 Nov 2018 13:38:06 +0000 (19:08 +0530)]
Updated git submodules

Project: sdc master c2a1b7c2eea934f309838f0082b2b851012be9a1

Enhance or write new tests

Enhance or write new tests

Change-Id: I4281b83410645ca0b6f64ab719adcd01c2a04ed3
Issue-ID: SDC-1816
Signed-off-by: shrikantawachar <shrikant.awachar@amdocs.com>
5 years agoUpdated git submodules
vempo [Wed, 28 Nov 2018 18:09:17 +0000 (20:09 +0200)]
Updated git submodules

Project: sdc/sdc-workflow-designer master d8c50df6eec377f6b868be7ab2a4df1aad387cc8

Minor improvements to docker compose, README

Minor improvements, updated documentation, added Cassandra as a container

Change-Id: If30d2fc5612625c67a4d1c4d30826a38038cee58
Issue-ID: SDC-1743
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
5 years agoUpdated git submodules
Jim Hahn [Fri, 30 Nov 2018 16:50:51 +0000 (11:50 -0500)]
Updated git submodules

Project: policy/engine master 85281873c68c5546a130660471d3d15135d3e08a

Update eclipselink version in policy engine

Use eclipselink from policy parent.

Change-Id: I60b8779c1b384f3fe69d21e7b9ed2a1091ca301e
Issue-ID: POLICY-1365
Signed-off-by: Jim Hahn <jrh3@att.com>
5 years agoUpdated git submodules
Michael Lando [Thu, 29 Nov 2018 12:51:16 +0000 (14:51 +0200)]
Updated git submodules

Project: sdc master 594a8c618a763e79e05229509dbf2b60ab831213

update documintation

update documintation and release notes.

Change-Id: I4e971e81e1be53b9846aa1c6c70371578bac9c77
Issue-ID: SDC-1965
Signed-off-by: Michael Lando <michael.lando@intl.att.com>
(cherry picked from commit 643c8933943cdc51a4128b8a3fa00da773ace4a7)

5 years agoUpdated git submodules
Jerry Flood [Sat, 1 Dec 2018 00:38:26 +0000 (19:38 -0500)]
Updated git submodules

Project: optf/cmso master 332e53c1b55101674f366a8673541c076b0c9289

Update the release date in the release notes

Issue-ID: OPTFRA-394
Change-Id: I2a636fdd1e945e566eb1820ad399cea60799239f
Signed-off-by: Jerry Flood <jflood@att.com>
5 years agoUpdated git submodules
Arundathi Patil [Thu, 29 Nov 2018 05:21:47 +0000 (10:51 +0530)]
Updated git submodules

Project: appc master 9b0595cc58b9a990909175bfcbcad59337a74b4f

Sonar Fix: AnsibleMessageParser.java

Fixed sonar issues/code-smells across this file.

Issue-ID: APPC-1256
Change-Id: I70480e3867c0ab49325d10e0ec91e76bf6979c50
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
5 years agoUpdated git submodules
Joss Armstrong [Thu, 29 Nov 2018 15:57:37 +0000 (15:57 +0000)]
Updated git submodules

Project: appc master 22bfb9781932af06ac88d540aa667986e8592140

Fix for APPC-1263

Removal of unused code. Refactoring of duplicated code and
replacement with FileUtils library function and adding test
case for ArtifactTransformer

Issue-ID: APPC-1263
Change-Id: I4eab0cefa09620bae18c08ec2c4307d54dddd872
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
5 years agoUpdated git submodules
helenc878 [Sat, 1 Dec 2018 00:10:10 +0000 (16:10 -0800)]
Updated git submodules

Project: integration master 3e58ef50fc8ea1e087a72dcc2a2f444ea4635b73

Added more use cases links.

Issue-ID: INT-751

Change-Id: I9769fdc4a8812c31f8d7a18e7bbe476f1487bd69
Signed-off-by: helenc878 <helen.chen@huawei.com>
5 years agoUpdated git submodules
Dan Timoney [Fri, 30 Nov 2018 23:32:45 +0000 (23:32 +0000)]
Updated git submodules

Project: sdnc/oam master 5e86f460701a5ec2099ceaa2be3760b84b706f0c

Merge "Notification Sub-DG with Restconf discovery node"

Notification Sub-DG with Restconf discovery node

Data change is appended with Restconf discovery node which will call the sotn-notification sub-DG

Issue-ID: SDNC-474

Change-Id: I43e2f6a67f6bd53ac9a0c7969fb776ee1539249f
Signed-off-by: janani b <janani.b@huawei.com>
5 years agoUpdated git submodules
Dan Timoney [Fri, 30 Nov 2018 23:32:02 +0000 (23:32 +0000)]
Updated git submodules

Project: sdnc/oam master 7ad4dc9a7401802ca8c2c037296781c5001be445

Merge "Updating RestApi to RestconfApi"

Updating RestApi to RestconfApi

Changing SOTN DG to use RestconfApiCallNode instead of RestApiCallNode

Issue-ID: SDNC-474

Change-Id: I3c37a622a1fbf547b7f5bc65592aac4ee8c51d81
Signed-off-by: janani b <janani.b@huawei.com>
5 years agoUpdated git submodules
Dan Timoney [Fri, 30 Nov 2018 20:54:38 +0000 (20:54 +0000)]
Updated git submodules

Project: sdnc/oam master d020224ad94888ca6b66a71854ac0a92f038d562

Merge "CCVPN closed loop issue fix"

CCVPN closed loop issue fix

SOTN Reoptimization DGs call added in network-topology-operation DG to support policy.

Change-Id: I1879be989e3cbb732932455c0ab2f6d3c8387c0a
Issue-ID: SDNC-540
Signed-off-by: Prakash.E <prakash.e@huawei.com>
5 years agoMerge "Remove Beijing references"
Jun (Nicolas) Hu [Fri, 30 Nov 2018 20:36:22 +0000 (20:36 +0000)]
Merge "Remove Beijing references"

5 years agoRemove Beijing references 85/74085/1
Eric Debeau [Fri, 30 Nov 2018 20:03:37 +0000 (20:03 +0000)]
Remove Beijing references

Issue-ID: DOC-362

Change-Id: I4c3738e28a33de18f3ddb14d88433e60b0168710
Signed-off-by: Eric Debeau <eric.debeau@orange.com>
5 years agoUpdated git submodules
Norm Traxler [Thu, 29 Nov 2018 19:23:56 +0000 (19:23 +0000)]
Updated git submodules

Project: oom master 7d79d1126137be3559815f00fb7a316eadd759e4

Network Discovery OOM changes

Issue-ID: SDNC-533
Change Pomba OOM install to use latest Network Discovery code.

Change-Id: I8f2b07f1ab8180ca74d935e55f11e9705f283148
Signed-off-by: Norm Traxler <normant@amdocs.com>
5 years agoUpdated git submodules
Dileep Ranganathan [Fri, 30 Nov 2018 16:28:16 +0000 (16:28 +0000)]
Updated git submodules

Project: optf/has master f2a0d8e5a55f5064d0eeb2a261fa58a5f240b6e1

Merge "R3 RTD"

R3 RTD

Issue-ID: OPTFRA-262

Change-Id: Ida4d07f43167ed3f71b8d833b9bba237d3b19312
Signed-off-by: sandovalfrOAM <frank.sandoval@oamtechnologies.com>
5 years agoUpdated git submodules
vrvarma [Fri, 30 Nov 2018 01:24:22 +0000 (20:24 -0500)]
Updated git submodules

Project: optf/osdf master c4b0a60f5168949267b70955d2ff8bae37ad99ae

Fix the osdf release notes based on review

Change-Id: I008cce3e5ab3453bd4dd2dc8decff5fc804700f7
Signed-off-by: vrvarma <vv8305@att.com>
Issue-ID: OPTFRA-407