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
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
!319
Update empty extra_vars and PE router list in ibgp mesh update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update empty extra_vars and PE router list in ibgp mesh update
feature/update-extra-vars
into
develop
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Karel van Klink
requested to merge
feature/update-extra-vars
into
develop
3 months ago
Overview
0
Commits
2
Pipelines
3
Changes
1
Expand
0
0
Merge request reports
Viewing commit
e26f82d0
Prev
Next
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e26f82d0
prevent sending an empty extra_vars in iBGP check run
· e26f82d0
Karel van Klink
authored
3 months ago
gso/workflows/router/update_ibgp_mesh.py
+
3
−
3
Options
@@ -155,12 +155,12 @@ def add_all_pe_to_p_real(subscription: dict[str, Any], tt_number: str, process_i
@step
(
"
Verify iBGP session health
"
)
def
check_ibgp_session
(
subscription
:
Router
)
->
LSOState
:
def
check_ibgp_session
(
subscription
:
dict
[
str
,
Any
]
)
->
LSOState
:
"""
Run a playbook using the provisioning proxy, to check the health of the new iBGP session.
"""
return
{
"
playbook_name
"
:
"
gap_ansible/playbooks/check_ibgp.yaml
"
,
"
inventory
"
:
{
"
all
"
:
{
"
hosts
"
:
{
subscription
.
router
.
router_fqdn
:
None
}}},
"
extra_vars
"
:
{},
"
inventory
"
:
{
"
all
"
:
{
"
hosts
"
:
{
subscription
[
"
router
"
][
"
router_fqdn
"
]
:
None
}}},
"
extra_vars
"
:
{
"
subscription
"
:
subscription
},
}
Loading