Skip to content
Snippets Groups Projects
Commit 80a195fb authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.99.

parents 4c4a64c1 cb70b3b2
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.99] - 2022-10-18
- POL1-634: Changed to expect -LHCONE in description for BRIAN LHCONE dashboards
## [0.98] - 2022-10-17 ## [0.98] - 2022-10-17
- POL1-624: Changed GWS Direct config to support GTT as ISP - POL1-624: Changed GWS Direct config to support GTT as ISP
......
...@@ -460,7 +460,10 @@ def _get_dashboards(interface): ...@@ -460,7 +460,10 @@ def _get_dashboards(interface):
if 'SRV_L3VPN CUSTOMER' in description: if 'SRV_L3VPN CUSTOMER' in description:
yield BRIAN_DASHBOARDS.LHCONE_CUST yield BRIAN_DASHBOARDS.LHCONE_CUST
if re.match('SRV_L3VPN (CUSTOMER|RE_INTERCONNECT)', description): if re.match('SRV_L3VPN (CUSTOMER|RE_INTERCONNECT)', description):
yield BRIAN_DASHBOARDS.LHCONE if '-LHCONE' in description:
# `-LHCONE` can be preceded by tons of different stuff, so it's
# simpler to check for this rather than a full regex
yield BRIAN_DASHBOARDS.LHCONE
if re.match('^SRV_MDVPN CUSTOMER', description): if re.match('^SRV_MDVPN CUSTOMER', description):
yield BRIAN_DASHBOARDS.MDVPN_CUSTOMERS yield BRIAN_DASHBOARDS.MDVPN_CUSTOMERS
if re.match('(SRV_GLOBAL|LAG|PHY) INFRASTRUCTURE BACKBONE', description): if re.match('(SRV_GLOBAL|LAG|PHY) INFRASTRUCTURE BACKBONE', description):
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='inventory-provider', name='inventory-provider',
version="0.98", version="0.99",
author='GEANT', author='GEANT',
author_email='swd@geant.org', author_email='swd@geant.org',
description='Dashboard inventory provider', description='Dashboard inventory provider',
......
...@@ -303,7 +303,7 @@ def test_fw_counter_bytes_oid_values(customer, interface_name, expected_oid): ...@@ -303,7 +303,7 @@ def test_fw_counter_bytes_oid_values(customer, interface_name, expected_oid):
('SRV_L2CIRCUIT CUSTOMER TENET PSNC #lon-lon-GEANTOPEN-PSNC-TENET-18067 |', # noqa: E501 ('SRV_L2CIRCUIT CUSTOMER TENET PSNC #lon-lon-GEANTOPEN-PSNC-TENET-18067 |', # noqa: E501
['GEANTOPEN', 'L2_CIRCUIT']), ['GEANTOPEN', 'L2_CIRCUIT']),
('SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-MAD-COPERNICUS | ASN27750', ('SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-MAD-COPERNICUS | ASN27750',
['LHCONE', 'COPERNICUS', 'RE_PEER']), ['COPERNICUS', 'RE_PEER']),
('SRV_10GGBS CUSTOMER REDIRIS CERN #gen-mad-LHC-CERN-REDIRIS-07003 |', ('SRV_10GGBS CUSTOMER REDIRIS CERN #gen-mad-LHC-CERN-REDIRIS-07003 |',
['GBS_10G']) ['GBS_10G'])
]) ])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment