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

Finished release 2.1.

parents 38e8ada3 88e71181
No related branches found
Tags 2.1
No related merge requests found
Pipeline #87200 passed
...@@ -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.
## [2.1] - 2024-06-17
- Fixed tiny bugs in migrate IP trunk.
§
## [2.0] - 2024-05-23 ## [2.0] - 2024-05-23
- Upgraded `orchestrator-core` to version 2! - Upgraded `orchestrator-core` to version 2!
- Added Opengear products. - Added Opengear products.
......
...@@ -3,19 +3,20 @@ ...@@ -3,19 +3,20 @@
import ipaddress import ipaddress
from uuid import UUID from uuid import UUID
from fastapi import APIRouter from fastapi import APIRouter, Depends
from orchestrator.domain import SubscriptionModel from orchestrator.domain import SubscriptionModel
from orchestrator.schemas.base import OrchestratorBaseModel from orchestrator.schemas.base import OrchestratorBaseModel
from orchestrator.services.subscriptions import build_extended_domain_model from orchestrator.services.subscriptions import build_extended_domain_model
from starlette import status from starlette import status
from gso.auth.security import opa_security_default
from gso.products.product_blocks.iptrunk import IptrunkType, PhysicalPortCapacity from gso.products.product_blocks.iptrunk import IptrunkType, PhysicalPortCapacity
from gso.products.product_blocks.router import RouterRole from gso.products.product_blocks.router import RouterRole
from gso.products.product_blocks.site import LatitudeCoordinate, LongitudeCoordinate from gso.products.product_blocks.site import LatitudeCoordinate, LongitudeCoordinate
from gso.services.subscriptions import get_active_iptrunk_subscriptions from gso.services.subscriptions import get_active_iptrunk_subscriptions
from gso.utils.shared_enums import Vendor from gso.utils.shared_enums import Vendor
router = APIRouter(prefix="/networks", tags=["Network"]) router = APIRouter(prefix="/networks", tags=["Network"], dependencies=[Depends(opa_security_default)])
class SiteBlock(OrchestratorBaseModel): class SiteBlock(OrchestratorBaseModel):
......
...@@ -658,7 +658,7 @@ def update_subscription_model( ...@@ -658,7 +658,7 @@ def update_subscription_model(
subscription.iptrunk.iptrunk_sides[replace_index].iptrunk_side_ae_members.clear() subscription.iptrunk.iptrunk_sides[replace_index].iptrunk_side_ae_members.clear()
# And update the list to only include the new member interfaces # And update the list to only include the new member interfaces
for member in new_lag_member_interfaces: for member in new_lag_member_interfaces:
subscription.iptrunk.iptrunk_sides[0].iptrunk_side_ae_members.append( subscription.iptrunk.iptrunk_sides[replace_index].iptrunk_side_ae_members.append(
IptrunkInterfaceBlock.new(subscription_id=uuid4(), **member), IptrunkInterfaceBlock.new(subscription_id=uuid4(), **member),
) )
......
...@@ -4,7 +4,7 @@ from setuptools import find_packages, setup ...@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup( setup(
name="geant-service-orchestrator", name="geant-service-orchestrator",
version="2.0", version="2.1",
author="GÉANT Orchestration and Automation Team", author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org", author_email="goat@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.
Finish editing this message first!
Please register or to comment