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

Finished release 0.5.

parents 7b4d8ca9 4af2ac00
No related branches found
No related tags found
No related merge requests found
Pipeline #85566 passed
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
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.3] - 2024-01-26 ## [0.5] - 2024-01-30
- Changed the router access ts field to FALSE in import router workfolw.
## [0.4] - 2024-01-26
- Added Token authentication for LSO callbacks. - Added Token authentication for LSO callbacks.
## [0.3] - 2024-01-23 ## [0.3] - 2024-01-23
......
...@@ -47,7 +47,7 @@ def available_interfaces_choices(router_id: UUID, speed: str) -> Choice | None: ...@@ -47,7 +47,7 @@ def available_interfaces_choices(router_id: UUID, speed: str) -> Choice | None:
if get_router_vendor(router_id) != RouterVendor.NOKIA: if get_router_vendor(router_id) != RouterVendor.NOKIA:
return None return None
interfaces = { interfaces = {
interface["name"]: f"{interface['name']} - {interface['description']}" interface["name"]: f"{interface['name']} {interface['description']}"
for interface in NetboxClient().get_available_interfaces(router_id, speed) for interface in NetboxClient().get_available_interfaces(router_id, speed)
} }
return Choice("ae member", zip(interfaces.keys(), interfaces.items(), strict=True)) # type: ignore[arg-type] return Choice("ae member", zip(interfaces.keys(), interfaces.items(), strict=True)) # type: ignore[arg-type]
......
...@@ -87,7 +87,7 @@ def initialize_subscription( ...@@ -87,7 +87,7 @@ def initialize_subscription(
fqdn = generate_fqdn(hostname, router_site_obj.site_name, router_site_obj.site_country_code) fqdn = generate_fqdn(hostname, router_site_obj.site_name, router_site_obj.site_country_code)
subscription.router.router_fqdn = fqdn subscription.router.router_fqdn = fqdn
subscription.router.router_role = router_role subscription.router.router_role = router_role
subscription.router.router_access_via_ts = True subscription.router.router_access_via_ts = False
subscription.description = f"Router {fqdn}" subscription.description = f"Router {fqdn}"
subscription.router.router_lo_ipv4_address = router_lo_ipv4_address subscription.router.router_lo_ipv4_address = router_lo_ipv4_address
subscription.router.router_lo_ipv6_address = router_lo_ipv6_address subscription.router.router_lo_ipv6_address = router_lo_ipv6_address
......
...@@ -2,7 +2,7 @@ from setuptools import find_packages, setup ...@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup( setup(
name="geant-service-orchestrator", name="geant-service-orchestrator",
version="0.4", version="0.5",
author="GÉANT", author="GÉANT",
author_email="swd@geant.org", author_email="swd@geant.org",
description="GÉANT Service Orchestrator", description="GÉANT Service Orchestrator",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment