summaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 0256e4b2031cec54abd07e7c6745176b83815cb4 - Merge "[Modeling] Move mariadb-galera to etsicatalog" - [Modeling] Move mariadb-galera to etsicatalog etsicatalog is the only component inside modeling which use this DB thus there is no point to keep it outside of this component. Passwords and other bad stuff is left intentionally as this is just a first patch for this transition. Issue-ID: OOM-2286 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: I4f592b736a86c7acf9ee43b0f6e136e5f1506847
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to f37261b53a7d07d6046c6710b5828e70ead678d0 - Merge "[APPC] Don't hardcode mariadb root password" - [APPC] Don't hardcode mariadb root password You should never ever assume that secretpassword is a production ready password for your mariadb-galera instance. Instead let's just share a secret with our instance of mariadb-galera. Issue-ID: OOM-2275 Change-Id: I25486ad81a2ec428dbbd379ab3529c84f55acc4b Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 5878b3db688aa32ffa4af2e88ba96eaf68f92871 - Merge "[COMMON] Don't create dummy mysql DB by default in a shared instance" - [COMMON] Don't create dummy mysql DB by default in a shared instance When deploying a shared mariadb-galera instance using common chart a dummy database is created based on the default values n the chart. This is obviously unnecessary and creates an obviousl security issue. That's why let's make sure that when we deploy a shared mariadb instance no dummy databases are created. Issue-ID: OOM-2053 Change-Id: I1130cb8eb555b15a2d8b365102d69e32259233eb Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 7643b7c45ee95f722f21fc10e9ea19273fd0fdb4 - Merge "[COMMON] Allow to lint chart without master password" - [COMMON] Allow to lint chart without master password When you type make in kubernetes directory all charts are linted. If one of them try to generate password whole linting process ends with an error because masterPassword has not been provided and there is no default value for it. To avoid this issue but still don't provide any default value whcih would be obviously insecure in this context, let's just test current release name. If it matches "testRelease" we treat whis as a special case and use predefined master key. Security implication: You should never, ever name your productional deployment "testRelease" nor use it as a master password. Issue-ID: OOM-2052 Change-Id: I7a2132e81f6910dfea562e8930c7eacd7aa7a00b Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 3aa87a5a64a786b56d1c4242062ed1cecc6c6f3d - Merge "[COMMON] Make network-name-gen use common secrets template" - [COMMON] Make network-name-gen use common secrets template For now we use it only for DB secret but in a future also other secrets should be replaced. Issue-ID: OOM-2249 Change-Id: Ie6515806c39c6a2cd94be378b5210156b78f4afb Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to c59a59bb4a05ef49132701904635e525d36a2925 - Merge "[COMMON] Provide convenience templates for mariadb secrets" - [COMMON] Provide convenience templates for mariadb secrets Usage of plain strings is very fragile especially when you try to change them. That's why instead of depending on strings let's just define a few convenience templates to be used in projects that use mariadb-galera chart. Issue-ID: OOM-2249 Change-Id: Ib867d34090b06a15ea3898a9524f5e3d04a656c0 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to c3cb0527a0400d82668f660bb1126d10dbb77370 - Merge "[COMMON] Expose common.secret.genName template" - [COMMON] Expose common.secret.genName template This template used to be for internal use only but it turned out to be very useful in number of places so let's just expose it. Issue-ID: OOM-2249 Change-Id: I57cd31681fb5edb4ac95b0b7b2446a364ce826d2 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 7336084fc365977b9588add74d1009fd039b46c3 - Merge "[COMMON] Allow to generate fullname based on passed chart name" - [COMMON] Allow to generate fullname based on passed chart name By default common.fullname uses .Chart.Name or .Values.nameOverride to generate a "full name" used in many places. In some cases it may be convenient to be able to generate this full name for a specific, well known chart name. Issue-ID: OOM-2249 Change-Id: I68034c1c5df81ae9533f5f4bc6fab58f2416623a Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 8a4eb36da4b949d45ddd0f283d50c41276dba681 - Merge "[COMMON] Allow to search secret by uid even if name is Overridden" - [COMMON] Allow to search secret by uid even if name is Overridden In some cases it is useful to bypass default policy for secret name generation and provide a custom name for a secret. In this case current search implementation got confused and couln't find a secret based on uid. This patch fixes the issue by comaring not only name but also uid. Issue-ID: OOM-2246 Change-Id: Iaea7a23fee09aa388968aad792ba7f7e1fbf2f21 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to d0783be2aa4422d3946623791653f1e2091f0983 - Merge "[COMMON] Use common secret template in mariadb-init" - [COMMON] Use common secret template in mariadb-init Use common secret template for all passwords that are used inside this chart. Issue-ID: OOM-2248 Change-Id: Ia94b87a4d0316a3d334fd492521be5a255c14b4e Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 5d620cbbd75517d6d60600debe0f5f5281538580 - Merge "Add ONAP core deployment type override" - Add ONAP core deployment type override This patch makes heavy use of Orange accomplishments [1][2][3]. This deployment override will probably succeed "minimal-onap.yaml" used in e.g. "integration/bootstrap/vagrant-minimal-onap" setup. Cassandra replicaCount is increased to 3 to allow reaching quorum. [1] https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation [2] https://wiki.lfnetworking.org/display/LN/Call%20for%20ONAP%20DDF%20Topics%20-%20Prague%202020#CallforONAPDDFTopics-Prague2020-OOM-IntroductionofServicemesh [3] https://wiki.lfnetworking.org/download/attachments/25364127/OOM%20Service%20Mesh%20Prague.pptx Issue-ID: ONAPARC-551 Change-Id: Ibaec41f088f11f7fb4e7c476f742d12d29c5740b Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
2020-02-02Update git submodulesBorislav Glozman1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 1155349e7b7dafc81ad94a5e48423e8aaf6fb7f2 - Merge "release 1.7.0 APPC in Frankfurt" - release 1.7.0 APPC in Frankfurt Neon SR1 ODL version compliance APPC docker image released Issue-ID: APPC-1816 Change-Id: I8f6a04eab39e3876bffc232ad1329931711ba60b Signed-off-by: Taka Cho <takamune.cho@att.com>
2020-02-02Update git submodulesKrzysztof Opasiak1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 137d7ccd2597a6492e926818eebab2f6067fb382 - [ONAP-wide] Replace .Release.Name with common.release ONAP is too big to be deployed using helm install so we need to use a custom helm plugin helm deploy. This script deloys onap component by component instead of deploying evrything at once. Unfortunately this script also modifies the helm release by appending component name to it. As a result of this behavior our objects are called for example: onap-mariadb-galera-mariadb-galera-0 instead of just being called onap-mariadb-galera-0. This patch simplifies this naming convention by replacing all direct usages of .Release.Name with common.release macro which strips the component specific part from the release name. Issue-ID: OOM-2275 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: Ia8cead50d305adb00eef666d0a1ace74479b5183
2020-02-02Update git submodulesKrzysztof Opasiak1-0/+0
* Update docs/submodules/oom.git from branch 'master' to 03b1009c7b791ea3252237f79367ff0501460f16 - Remove additional _helpers files Helm by default creates some useful templates in _helpers.tpl file. This is fine for stand alone charts but when they become part of ONAP those helpers are no longer needed as our common components already provides all required functions Issue-ID: OOM-2278 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: I659e4b45b031e87cc87f7bbbb22bf9e23cd74e61
2020-02-02Update git submodulesIttay Stern1-0/+0
* Update docs/submodules/vid.git from branch 'master' to 74e6271d3c9a5f0f2f471c607ca7bc9b8f3d5fc0 - originalName fallbacks to customizationId or invariantId Issue-ID: VID-724 Change-Id: I3db8d09cabfb700dc1acd469d6fb8acb4764cd73 Signed-off-by: Ittay Stern <ittay.stern@att.com>
2020-02-02Update git submodulesshrek20001-0/+0
* Update docs/submodules/sdc.git from branch 'master' to 65f0aa37a9d182b406a3615af36b139e0b7091ed - Move to version 1.6.1 Move SDC to version 1.6.1 Issue-ID: SDC-2755 Signed-off-by: shrek2000 <oren.kleks@amdocs.com> Change-Id: If5c55fdebb5bc2591190ee4389487f6dbb0e1831 Signed-off-by: shrek2000 <oren.kleks@amdocs.com>
2020-02-02Update git submodulesKevin Scaggs1-0/+0
* Update docs/submodules/modeling/modelspec.git from branch 'master' to 1fd426157cb65e7586ef5230a3065765ede0de2b - Updates to gendoc glossary script Slight update to gendoc glossary script Issue-ID: MODELING-104 Change-Id: I625daf25d3665f6703b0e28cfdd490005245efee Signed-off-by: Kevin Scaggs <ks0567@att.com> - Slight updates to Vnf Slight updates to Vnf related to allotted resource. Issue-ID: MODELING-104 Change-Id: If9682045cf1bf73cf56cb5b6b94ae0004cb1ed2f Signed-off-by: Kevin Scaggs <ks0567@att.com>
2020-02-02Update git submodulesKevin Scaggs1-0/+0
* Update docs/submodules/modeling/modelspec.git from branch 'master' to 65df796f3e57ffdd01d9e56992b7c42653f12340 - Slight update to Nf model Slight update to Nf model related to accepted root hierarchy updates that were never updated. Issue-ID: MODELING-104 Change-Id: I15f85b5129ebf2775dbe73643dcaf18dba81b3ec Signed-off-by: Kevin Scaggs <ks0567@att.com> - Updates to Common Updated accepted model for ParameterGroup to prelinary Issue-ID: MODELING-104 Change-Id: Ia6b9ea0988b8f05ad59a4705b66b36f7f68ca9b0 Signed-off-by: Kevin Scaggs <ks0567@att.com>
2020-02-02Update git submodulesKevin Scaggs1-0/+0
* Update docs/submodules/modeling/modelspec.git from branch 'master' to cb1893ddea0dcee020952592239f1acd4f0cc4c4 - Update to Ves Model Update to VES model with draft 7.2 material - specifically an additinoal CMNotify domain. Issue-ID: MODELING-104 Change-Id: I83837fffaafedc04ec7a2ff7a79d324a01816d1c Signed-off-by: Kevin Scaggs <ks0567@att.com>
2020-02-02Update git submodulesEylon Malin1-0/+0
* Update docs/submodules/vid.git from branch 'master' to aefc6a0e43b8ce36134dbbed71cf2b4cb9745a9f - don't show delete in menu action while edit a macro service Issue-ID: VID-760 Change-Id: Ieed2b7430cc1584681b1143d8b7244801dd8a1c4 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2020-02-02Update git submodulesAhmed Abbas1-0/+0
* Update docs/submodules/ccsdk/cds.git from branch 'master' to 3da10ae82ee1810e0fb995141dae5495eff28176 - add template and mapping page skeleton in designer client Issue-ID: CCSDK-2065 Signed-off-by: Ahmed Abbas <ahmad.helmy@orange.com> Change-Id: Icbd3240c8043449a47d72bf70c76397725ffd2ba
2020-02-02Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to 33b86ad077a2e472df5d4ed15227298a238eb8ae - Merge "update helpserver" - update helpserver update help readme files Issue-ID: SDNC-1029 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: I79378660f8114b7769d9138a67f9a10f4389d406
2020-02-02Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to ff8cf309fba867c2e641ea20c2ddf074fda5e3e5 - Merge "SDN-R add updated devicemanager" - SDN-R add updated devicemanager add updated devicemanager and specific devicemanagers Issue-ID: SDNC-1039 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: I16f4c8d78da95ab12dbb50e50dfb561a85e8d6a2 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
2020-02-02Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to bdebae96aedfe84fe27d88e800155bc619c7146f - Merge "SDN-R add updated app" - SDN-R add updated app add mountpoint-state-provider Issue-ID: SDNC-1038 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: Ib14ec872962dfd545e4f130729d3bb5a5716fde9 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
2020-02-02Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to 1863844414cf3837fc429a3271b9f116f200f170 - Merge "SDN-R add updated app" - SDN-R add updated app add updated netconfnode-state-service Issue-ID: SDNC-1033 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: If1639bb61dc58e90b769c0dd100d49eeddf83fc9 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
2020-02-01Update git submodulesEnbo Wang1-0/+0
* Update docs/submodules/appc/deployment.git from branch 'master' to ad2dd764af4b12b15c91dffb4cd904c0310e2508 - Add DownloadNESw and ActivateNESw entries to APPC DB Update VNF_DG_MAPPING and PROCESS_FLOW_REFERENCE tables for DownloadNESw and ActivateNESw in APPC DB. Issue-ID: APPC-1812 Change-Id: I02f5b4f617ec88be785d4dddba007889bf1f9805 Signed-off-by: Enbo Wang <wangenbo@huawei.com>
2020-02-01Update git submodulesBin Yang1-0/+0
* Update docs/submodules/multicloud/framework.git from branch 'master' to 0a542045a647da97f24b22ef41e422edac30ed9f - Enable the usage of msb https endpints The default enpoint is still http Issue-ID: MULTICLOUD-978 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: I2bb8e64bfe5a26a183b3f8bb86ebd9c3ab9481b0
2020-02-01Update git submodulesyongqiangliu3121-0/+0
* Update docs/submodules/appc.git from branch 'master' to e4c07d4c7eb3105bc6a20eee00fdca592f0cf59b - add new action ConfigScaleIn Change-Id: Iae4bb797c4e86f66e5e3101fc6715fc2c2be470f Issue-ID: APPC-1760 Signed-off-by: Taka Cho <takamune.cho@att.com> Signed-off-by: Patrick Brady <patrick.brady@att.com>
2020-01-31Update git submodulesMichael Dürre1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to fb121a32b8b3431e37d2b73a63aac8055983f8f2 - update apigateway removed unused code and services Issue-ID: SDNC-1027 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: Ia126ed7fcc18331858c502409384cbc0570d6be7
2020-01-31Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/distribution.git from branch 'master' to 4abf7b83f764cab2c4296128f1d172259635e69b - Merge "Roll to next snapahot version" - Roll to next snapahot version Roll to next snapshot Change-Id: I4bd3b6181414d7aa51205309a3d4dbf2430b163d Issue-ID: CCSDK-1963 Signed-off-by: Dan Timoney <dtimoney@att.com>
2020-01-31Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to 84cf604e3f06942a62ae0478327ec6100787761e - Merge "update websocketmanager" - update websocketmanager cleaned up pom files Issue-ID: SDNC-1028 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: Ib222fe89485122b0c0b724419885156295af64db
2020-01-31Update git submodulesherbert1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to d77d01bae41b5c8331a6de6eff1a64e08cd9e279 - SDN-R add updated app add updated data-provider Issue-ID: SDNC-1026 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: I641f8144955fcfb196d0cb19d57452c1d1a69a92 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
2020-01-31Update git submodulesKAPIL SINGAL1-0/+0
* Update docs/submodules/ccsdk/cds.git from branch 'master' to 22517f0717ba13758b16dc4c9f08b2e5c1333afd - Merge "Spring boot, Kotlin version upgrades" - Spring boot, Kotlin version upgrades Dependent Patch : https://gerrit.onap.org/r/c/ccsdk/parent/+/100990 Fixed Jackson set method according to latest version. Fixed Security properties issues for failed JUnit test cases. Reused maven properties from parent for Spring boot, Nats, Kafka, etc Issue-ID: CCSDK-1737 Signed-off-by: Brinda Santh <bs2796@att.com> Change-Id: I04bb0e535161e05897f587a0f08a2689e10c5f41
2020-01-31Update git submodulesManoop Talasila1-0/+0
* Update docs/submodules/portal.git from branch 'master' to 728c55e4233b5f7e449f67dea4c4ca987da701b7 - Merge changes I68af4999,I2fb38f2a,Ia11ca8d2,I36b83288,I129c127c, ... * changes: SchedulerAuxController up SchedulerController up SharedContextRestController up TicketEventVersionController up UserNotificationController up PersUserWidgetServiceAOP and tests up Removing attached entity from method argument - SchedulerAuxController up scheduleraux folder was copied from ecomp-portal-BE-common module to poral-BE module Issue-ID: PORTAL-710 Change-Id: I68af49996dc1c5b03c05e4786e7661bae7b4d61e Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - SchedulerController up scheduler folder was copied from ecomp-portal-BE-common module to poral-BE module Issue-ID: PORTAL-710 Change-Id: I2fb38f2ad9bf8ac961b7be8e655283f90a3944fb Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - SharedContextRestController up SharedContextRestController up with all needed services Issue-ID: PORTAL-710 Change-Id: Ia11ca8d2fda65b6d0a435d4b14e6b61638ed9f65 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - TicketEventVersionController up TicketEventVersionController up with all needed services Issue-ID: PORTAL-710 Change-Id: I36b832887b06244ec2f69054752a4bd143349a9d Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - UserNotificationController up This patch provide UserNotificationController witch all services and DTO needed. Issue-ID: PORTAL-710 Change-Id: I129c127c48aa8d00f9aa09b401735862b35b07c7 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - PersUserWidgetServiceAOP and tests up PersUserWidgetServiceAOP tests WidgetCatalogPersonalization object requied in org.onap.portal.service.PersUserWidgetService.setPersUserAppValue() method Issue-ID: PORTAL-710 Change-Id: I7e66b05296ef7ceea0093ef98684dc80303c99a0 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> - Removing attached entity from method argument I remove some FnUser entity as argument for method. Attached entitys should never be used as argument for methods. Issue-ID: PORTAL-710 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> Change-Id: Ibf10d1e2bde2e116b962dd651dd649da477ee1ec
2020-01-31Update git submodulesSunder Tattavarada1-0/+0
* Update docs/submodules/portal.git from branch 'master' to e363b25a09970065499f91e9b54be0149517e737 - Merge "Angular upgrade - Dynamic widget,widget catalog" - Angular upgrade - Dynamic widget,widget catalog Angular upgrade Issue-ID: PORTAL-815 Change-Id: If3db891f2d02efa1d86b71198de97a322ddd0cfa Signed-off-by: jz385p <jegadeesh.babu@att.com>
2020-01-31Update git submodulesSudarshan Kumar1-0/+0
* Update docs/submodules/portal.git from branch 'master' to e0b464f75666b80976466437fa1057c3b4efd39f - Added new componetnts inside page modules Added catalog-modal, role, roles-function, scheduler, user-notification-admin, users, widgets componetnts. Issue-ID: PORTAL-795 Change-Id: I4b5d781bb91224d7f4f3b00025443b906a4b4e5b Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
2020-01-31Update git submodulesDan Timoney1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to 913eea4f5e7bdb32f9fa42767ccbc9b1cf04f5ef - Merge "ORAN A1 Adapter YANG Model Update" - ORAN A1 Adapter YANG Model Update Minor YANG model updated needed for RPC definition for notifyPolicyEnforcementUpdate Issue-ID: CCSDK-2043 Signed-off-by: SandeepLinux <Sandeep.Shah@ibm.com> Change-Id: If321f34bdd387482bef860a2ae89ccf9faf94536
2020-01-31Update git submodulesDan Timoney1-0/+0
* Update docs/submodules/ccsdk/distribution.git from branch 'master' to 4a67c1ca2c2352c200425a620d2a706c45a60a25 - Merge "ORAN A1 Adapter DG Updates" - ORAN A1 Adapter DG Updates Additinal DG's for getNearRT-RICs and notifyPolicyEnforcementUpdate RPC's Issue-ID: CCSDK-2040 Signed-off-by: SandeepLinux <Sandeep.Shah@ibm.com> Change-Id: I2a4485eb0fb195eb9fbb99d285203333fcd1bdb5
2020-01-31Update git submodulespwielebs1-0/+0
* Update docs/submodules/dcaegen2.git from branch 'master' to 1dc0ab2d286092764a066ec648c7b6659e69153c - Update SDK documentation Signed-off-by: pwielebs <piotr.wielebski@nokia.com> Issue-ID: DCAEGEN2-2044 Change-Id: I3a2c2aaf712a059eb04bfb6ee3866f797a4eaf9e
2020-01-31Update git submodulesBrinda Santh Muthuramalingam1-0/+0
* Update docs/submodules/ccsdk/cds.git from branch 'master' to ac4118dcf7fe93455eae31427d08cee9dc30db4a - Merge "Add Artifact Manager service." - Add Artifact Manager service. Adds a micro service that offers gRPC interface for CBA artifacts manipulation. By default the service is attached to py-executor but can be ran as a separate service if needed in the future. Issue-ID: CCSDK-1988 Change-Id: I40e20f085ae1c1e81a48f76dbea181af28d9bd0d Signed-off-by: Marek Szwalkiewicz <marek.szwalkiewicz@external.t-mobile.pl>
2020-01-31Update git submodulesSmokowski, Steven1-0/+0
* Update docs/submodules/so.git from branch 'master' to f388c24c982a51c47d6b00c72d9252c5e430f44d - Remove Valet from openstack adapter Remove Valet from openstack adapter Clean up CI, so it passes on dev branch Fixed bad merge regarding correct method name. Added try catch around createIfNotExists methods to avoid failing sim. Fix broken Fabric Tests from merge Update logging jar dependency for CI Issue-ID: SO-2623 Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com> Change-Id: I572276f751b132ec78d7ab5763f1c76bfc8256c5
2020-01-31Update git submodulesBin Yang1-0/+0
* Update docs/submodules/multicloud/k8s.git from branch 'master' to 90e13d101cf0d695058876ea53cdcf335dcb2caf - Merge "Update nfn-operator to add provider networks" - Update nfn-operator to add provider networks Issue-ID: MULTICLOUD-474 Signed-off-by: Ritu Sood <ritu.sood@intel.com> Change-Id: I92d0d34a46b8faadda8aa698307ede4306316ef7
2020-01-30Update git submodulesJessica Wagantall1-0/+0
* Update docs/submodules/aaf/authz.git from branch 'master' to 9fa2e46e3f52b8c101a7cf7589553009cd0ae673 - Add new committers - Pawel Baniewski email pawel.baniewski@nokia.com LFID baniewsk - Gerard Nugent email gerard.nugent@est.tech LFID egernug - John Franey email john.franey@att.com LFID JohnFraney Issue-ID: CIMAN-33 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org> Change-Id: I72f3fff449f2d848fe19eefd3cc0ad2431491370
2020-01-30Update git submodulesBrendan Tschaen1-0/+0
* Update docs/submodules/music.git from branch 'master' to 712f0dddc791f9ef8283fb40b5b5f326bc4ea0d9 - Merge "JUnit test case coverage for Condition.java, JsonLock.java, MusicLockState.java, MusicCore.java Issue-ID: MUSIC-521" - JUnit test case coverage for Condition.java, JsonLock.java, MusicLockState.java, MusicCore.java Issue-ID: MUSIC-521 Signed-off-by: Gadicherla, Shiva <shiva.gadicherla@att.com> Change-Id: I02aa0986b89883514ae2a001ec00006f0f28c3e8
2020-01-30Update git submodulesherbert1-0/+0
* Update docs/submodules/ccsdk/features.git from branch 'master' to d1981f7e68272cdc5618139a363b80806c2aa77c - SDN-R update common update common and remove all dependent bundles Issue-ID: SDNC-1025 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: I0cebe27eff0489f9b221ee7451be9250e362a827
2020-01-30Update git submodulesSteve Smokowski1-0/+0
* Update docs/submodules/so.git from branch 'master' to 98fce84d19c8aa1eb11fc24a8dddb5b0deb38d7a - Merge "Increased lock time on add graph data task and" - Increased lock time on add graph data task and Increased lock time on add graph data task and fixed error handling for inventory failure so flow doesnt proceed Changed build workflow exception to return the exception Issue-ID: SO-2621 Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com> Change-Id: Ib247cd7e5eb0cf17579a9d72d9e8ede8a8c35e17
2020-01-30Update git submodulesSteve Smokowski1-0/+0
* Update docs/submodules/so.git from branch 'master' to b06b1e355c7f4d4d9c74c88227f67c61841a2b0d - Merge "- Include stack Status Reason when rollback is" - - Include stack Status Reason when rollback is - Include stack Status Reason when rollback is suppressed. - Updated to format code to pass the build. Issue-ID: SO-2620 Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com> Change-Id: Id9789930eaf7c47666a9401f8e3c57156c931b74
2020-01-30Update git submodulesDan Timoney1-0/+0
* Update docs/submodules/ccsdk/distribution.git from branch 'master' to 11985254fd65e2f884978e04a4a32f9cc5d07891 - Release docker containers Release 0.7.0 CCSDK docker containers Change-Id: Iccac2c8cf41c2067f4b37d4fe76ac1c5086a7cce Issue-ID: CCSDK-1963 Signed-off-by: Dan Timoney <dtimoney@att.com>
2020-01-30Update git submodulesDan Timoney1-0/+0
* Update docs/submodules/ccsdk/distribution.git from branch 'master' to 86d1d5d33e457927adda6a602875bb79013223c7 - Release maven artifacts Release 0.7.0 maven artifacts Change-Id: I131e343cfcd2eed832c0ae05ca30f288ae7f9d7a Issue-ID: CCSDK-1963 Signed-off-by: Dan Timoney <dtimoney@att.com>
2020-01-30Merge "Changes to doc config"Jessica Wagantall4-488/+30