This project is mirrored from https://:*****@osm.etsi.org/gerrit/osm/RO.git.
Pull mirroring updated .
- Apr 18, 2019
-
-
Ananda Baitharu authored
VCD VIMconnector: add config drive support; Adding genisoimage package installation to scripts/install-openmano.sh Change-Id: I2fdf100a8ecc04207d0e977e81eabc46862a8b6d Signed-off-by: Ananda Baitharu <ananda.baitharu@riftio.com>
-
- Apr 15, 2019
-
-
Alfonso Tierno authored
Remove state of vim_threads, working with database instead of memory Allow several vim_threads over the same vim tasks Change-Id: I5825b69309b8d3e6146798747b002108a34fa2aa Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Apr 11, 2019
-
-
garciadeblas authored
Change-Id: I0880b8e71ac24fd222068f130081e4535906ab14 Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
-
- Apr 09, 2019
-
-
Alfonso Tierno authored
Change-Id: Ib5c9536354aed78aea6cded7def9479287006cbe Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Apr 08, 2019
-
-
Alfonso Tierno authored
Change-Id: I563f65d6ed4dacf482cde5983020d36ecc040c02 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Mar 29, 2019
-
-
Alfonso Tierno authored
Change-Id: Idc935fa13ab6b8e138472de4ebc932810a5e9c5b Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Mar 25, 2019
-
-
Alfonso Tierno authored
Change-Id: I8bb1dde991e416c30acf841d99fdaea3c788eb97 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
schillinge authored
These arrays are already assigned earlier, reassigning them to [] deletes previously added entries, disallowing VNFFGs consisting of multiple RSPs, Classifiers, ... Change-Id: Ifda49f7d8528e0e888569745261aa97772c075b8 Signed-off-by: schillinge <ablu@mail.uni-paderborn.de>
-
Alfonso Tierno authored
Change-Id: Ic9ac1c90e9df70fb3d5ac1e048a75d0d0cfe9431 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
kasar authored
Change-Id: Ie54a095f9102c98606bb985bc79314017942e124 Signed-off-by: kasar <pkasar@vmware.com>
-
- Mar 21, 2019
-
-
Alfonso Tierno authored
Allow manual selection of wim or deployment without Wim Change-Id: If4928ff33ebc671b6870faf20f3b4253c9f59372 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
garciadeblas authored
Change-Id: I6e98001c2fc94d4efd5d2b3be0b401a3c7a862fb Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
-
- Mar 20, 2019
-
-
kasar authored
Change-Id: I1e5d750302d9b4b81aba025e2629ad1a5e79fb51 Signed-off-by: kasar <pkasar@vmware.com>
-
- Mar 14, 2019
-
-
garciadeblas authored
Change-Id: I641a337e58138d693970616360dfb9aab021fd2a Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
-
Alfonso Tierno authored
Change-Id: Id6c2dc28a80ab6d62f33eeb0480a7232e112cf48 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Mar 12, 2019
-
-
Venkata Harshavardhan Reddy Allu authored
This commit has following changes: - When 'source-ip-address' or 'destination-ip-address' are not provided under "nsd:nsd-catalog:nsd:vnffgd:classifier:match-attributes" this would avoid adding the '/32' prefix in the classifier definition. - add details to classifier definition only if provided. This patch helps us in creating classifier with minimum details and avoid errors when 'source-ip-address' or 'destination-ip-address' were not provided in nsd. Change-Id: I5b572552bd670b56faa0aba5833209d198e10450 Signed-off-by: Venkata Harshavardhan Reddy Allu <venkataharshavardhan_ven@srmuniv.edu.in>
-
- Feb 19, 2019
-
-
fatollahy authored
addedd region_name to keystone, nova, neutron and cinder to support distributed cloud for Wind River Titanium cloud and StarlingX Change-Id: Ic04f35f668f485674760af3805f0a70e4d180477 Signed-off-by: fatollahy <masoud.fatollahy@windriver.com>
-
- Feb 18, 2019
-
-
fatollahy authored
Added support for region_name for Distributed cloud implementation of WindRiver Titanium Cloud and StarlingX Change-Id: I639ae150aff154ccc01499b42d6ed659d0eca7ff Signed-off-by: fatollahy <masoud.fatollahy@windriver.com>
-
- Feb 10, 2019
-
-
bravalheria authored
This commit aims to provide a better synchronization between all the different threads in RO, specially regarding DB usage and internal state consistency. The following improvements were done: 1. Centralize database retry logic into a single function This way we can change the procedure and the rules for retrying in a single place and this reflects in several functions simultaneously avoiding the need for manual copy and paste (and the potential risk of forgetting to change somewhere) 2. Minor fixes/improvements related to database connection loss. Previously `db_base` was already able to identify when the connection to MySQL was lost, but apparently in a few edge cases the automatic reconnection was not done. 3. Implement a transaction method This method replaces the old context manager API for the connection object that was removed from MySQLdb in version 1.4 In additional it is possible to use a decorator for transactions (not only the context manager), which is handy sometimes. 4. Add lock mechanism directly to db_base This helps to improve synchronization between threads. Some extra synchronization was introduced to functions, as it seemed to be the case. Moreover, previously, the cursor object was part of the internal state of the db_base object, and it was being changed/used without thread synchronization (error-prone). Having the locking mechanism around the changes in the cursor property of the class, avoids problems. 5. Add option to fork connection Useful when independent threading is needed (as long as different threads don't access the same database table, having separated connections and locks should work fine). Change-Id: I3ab34df5e8c2857d96ed14a70e7f65bd0b5189a0 Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
- Feb 07, 2019
-
-
Eduardo Sousa authored
Change-Id: Ie198147ae914dc35445158489ad85f1156857782 Signed-off-by: Eduardo Sousa <esousa@whitestack.com>
-
- Feb 05, 2019
-
-
Alfonso Tierno authored
Change-Id: I7ba41acd9eea907f0ae29976a4063a25b780c11d Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Feb 01, 2019
-
-
albertoflorez authored
Change-Id: I487b5cf482ce3ae9d3d4940eec6fbbdf75b26174 Signed-off-by: albertoflorez <alberto.florezpages@telefonica.com>
-
bravalheria authored
Second parameter should be a class, not string Change-Id: I6401429d7cc314502a364b7fc81e73d30175b193 Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
- Jan 30, 2019
-
-
Alfonso Tierno authored
Change-Id: I90e0b0affa4c5350b9ace0000441e7ba022ea7f2 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
Alfonso Tierno authored
Change-Id: Id86af2c276ab34c76c231d36c1c9c1a4c7ecc93a Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Jan 28, 2019
-
-
Alfonso Tierno authored
-
- Jan 24, 2019
-
-
Alfonso Tierno authored
Change-Id: Ic6902950915a8fde50d162cf425c1851e5bc001c Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
schillinge authored
The old code basically hardcoded the use of NSH (which is still broken in OpenStack's SFC implementation). Change-Id: I0de4682bca69c7a349d678ae3a8179d78b37c605 Signed-off-by: schillinge <ablu@mail.uni-paderborn.de>
-
- Jan 21, 2019
-
-
Alfonso Tierno authored
Change-Id: Id314390ba524d22d4e1f74cfe8ef7c808bb8ac0e Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Jan 18, 2019
-
-
bravalheria authored
Automatically create/update port mappings during WIM creation/update, as discussed in the WIM implementation meeting (12/Dec/2018). Additionally fix small related errors and ensure wan_port_mappings are returned by the HTTP server using the same keys forming the schema. Change-Id: Icc27ad85c1de826ed96cb42b377055ea1b0c2cab Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
bravalheria authored
VIM Connectors should provide the fields "encapsulation_type" and "encapsulation_id", as discussed in the WIM implementation meeting (21/Nov/2018). Change-Id: I654d8fa93bef7c37c7ce575c0335154e99fd7347 Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
bravalheria authored
Extract switch ID and port by default from vim.config.external_connections, as discussed in the WIM implementation meeting (21/Nov/2018). Change-Id: I95cc5fb0d6ad2822ef4bd1b80e7652bfabf34120 Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
bravalheria authored
The usage of the wim_account information for create networks inside the VIMs/datacenters should be developed in future commits Change-Id: I545455f23cbde9071b2bdc91ae032b7a76e0eefe Signed-off-by: Anderson Bravalheri <a.bravalheri@bristol.ac.uk>
-
- Jan 14, 2019
-
-
Ananda Baitharu authored
Change-Id: I06f5c877859c488d309baa0d595cb6e6c23f9961 Signed-off-by: Ananda Baitharu <ananda.baitharu@riftio.com>
-
- Jan 10, 2019
-
-
David García authored
Change-Id: Iae69fda14d9ffab43af47084b596ba4a5bc8c7a7 Signed-off-by: David García <david.garciaco@ehu.eus>
-
- Jan 08, 2019
-
-
Alfonso Tierno authored
Change-Id: Ic73bf8a47378f4c55ece64014a279264f5bf0855 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Dec 21, 2018
-
-
Alfonso Tierno authored
Change-Id: I4005e048b71284c154495a90d8b1256a09e6ff98 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
Alfonso Tierno authored
Change-Id: Icb02d22d2c1497c1af5cfeff2702d2757bcdcda1 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-
- Dec 20, 2018
-
-
Eduardo Sousa authored
Change-Id: Ie62134ce91cd2686547bb487892474b0d3279e61 Signed-off-by: Eduardo Sousa <esousa@whitestack.com>
-
- Dec 18, 2018
-
-
Alfonso Tierno authored
Change-Id: Ibeb3a9f6176c7bc5b9178661d88f37bf204d11e0 Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
-