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
Commits
a2f852c1
Commit
a2f852c1
authored
1 year ago
by
geant-release-service
Browse files
Options
Downloads
Plain Diff
Finished release 0.5.
parents
7b4d8ca9
4af2ac00
No related branches found
No related tags found
No related merge requests found
Pipeline
#85566
passed
1 year ago
Stage: tox
Stage: documentation
Stage: sonarqube
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Changelog.md
+4
-1
4 additions, 1 deletion
Changelog.md
gso/utils/helpers.py
+1
-1
1 addition, 1 deletion
gso/utils/helpers.py
gso/workflows/tasks/import_router.py
+1
-1
1 addition, 1 deletion
gso/workflows/tasks/import_router.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
7 additions
and
4 deletions
Changelog.md
+
4
−
1
View file @
a2f852c1
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
gso/utils/helpers.py
+
1
−
1
View file @
a2f852c1
...
@@ -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]
...
...
This diff is collapsed.
Click to expand it.
gso/workflows/tasks/import_router.py
+
1
−
1
View file @
a2f852c1
...
@@ -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
=
Tru
e
subscription
.
router
.
router_access_via_ts
=
Fals
e
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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
a2f852c1
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment