Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!313
Rename NRENL3CoreService and update BGP peer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Rename NRENL3CoreService and update BGP peer
feature/add-prefix-limit-to-bgp-peer
into
develop
Overview
0
Commits
2
Pipelines
2
Changes
9
Merged
Karel van Klink
requested to merge
feature/add-prefix-limit-to-bgp-peer
into
develop
6 months ago
Overview
0
Commits
2
Pipelines
2
Changes
9
Expand
Rename to L3CoreService
Add Copernicus, LHCOne, and GWS as new L3 core services
Add prefix limit to BGP peer
0
0
Merge request reports
Viewing commit
2b3993a0
Prev
Next
Show latest version
9 files
+
66
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
Verified
2b3993a0
Add prefix limit as an attribute to BGP session
· 2b3993a0
Karel van Klink
authored
6 months ago
gso/cli/imports.py
+
2
−
1
Options
@@ -13,7 +13,7 @@ import yaml
from
orchestrator.db
import
db
from
orchestrator.services.processes
import
start_process
from
orchestrator.types
import
SubscriptionLifecycle
,
UUIDstr
from
pydantic
import
BaseModel
,
ValidationError
,
field_validator
,
model_validator
from
pydantic
import
BaseModel
,
NonNegativeInt
,
ValidationError
,
field_validator
,
model_validator
from
sqlalchemy.exc
import
SQLAlchemyError
from
gso.db.models
import
PartnerTable
@@ -254,6 +254,7 @@ class L3CoreServiceImportModel(BaseModel):
families
:
list
[
IPFamily
]
is_multi_hop
:
bool
rtbh_enabled
:
bool
# whether Remote Triggered Blackhole is enabled
prefix_limit
:
NonNegativeInt
|
None
=
None
class
BFDSettingsModel
(
BaseModel
):
"""
BFD Settings model.
"""
Loading