Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
TFS
controller
Commits
2f93b46d
Commit
2f93b46d
authored
1 year ago
by
Lluis Gifre Renom
Browse files
Options
Downloads
Patches
Plain Diff
Pre-merge cleanup.
parent
a4929be5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!235
Release TeraFlowSDN 3.0
,
!151
Resolve "(TID) New BGP-LS Speaker component"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
manifests/bgpls_speakerservice.yaml
+1
-1
1 addition, 1 deletion
manifests/bgpls_speakerservice.yaml
proto/bgpls.proto
+22
-22
22 additions, 22 deletions
proto/bgpls.proto
with
23 additions
and
23 deletions
manifests/bgpls_speakerservice.yaml
+
1
−
1
View file @
2f93b46d
...
...
@@ -36,7 +36,7 @@ spec:
-
containerPort
:
9192
env
:
-
name
:
LOG_LEVEL
value
:
"
DEBUG
"
value
:
"
INFO
"
readinessProbe
:
exec
:
command
:
[
"
/bin/grpc_health_probe"
,
"
-addr=:20030"
]
...
...
This diff is collapsed.
Click to expand it.
proto/bgpls.proto
+
22
−
22
View file @
2f93b46d
...
...
@@ -18,20 +18,20 @@ package bgpls;
import
"context.proto"
;
service
BgplsService
{
rpc
ListDiscoveredDevices
(
context.Empty
)
returns
(
DiscoveredDeviceList
)
{}
rpc
ListDiscoveredLinks
(
context.Empty
)
returns
(
DiscoveredLinkList
)
{}
rpc
AddBgplsSpeaker
(
BgplsSpeaker
)
returns
(
BgplsSpeakerId
)
{}
rpc
ListBgplsSpeakers
(
context.Empty
)
returns
(
BgplsSpeakerList
)
{}
rpc
DisconnectFromSpeaker
(
BgplsSpeaker
)
returns
(
context.Empty
)
{}
rpc
GetSpeakerInfoFromId
(
BgplsSpeakerId
)
returns
(
BgplsSpeaker
)
{}
rpc
NotifyAddNodeToContext
(
NodeDescriptors
)
returns
(
context.Empty
)
{}
rpc
ListDiscoveredDevices
(
context.Empty
)
returns
(
DiscoveredDeviceList
)
{}
rpc
ListDiscoveredLinks
(
context.Empty
)
returns
(
DiscoveredLinkList
)
{}
rpc
AddBgplsSpeaker
(
BgplsSpeaker
)
returns
(
BgplsSpeakerId
)
{}
rpc
ListBgplsSpeakers
(
context.Empty
)
returns
(
BgplsSpeakerList
)
{}
rpc
DisconnectFromSpeaker
(
BgplsSpeaker
)
returns
(
context.Empty
)
{}
rpc
GetSpeakerInfoFromId
(
BgplsSpeakerId
)
returns
(
BgplsSpeaker
)
{}
rpc
NotifyAddNodeToContext
(
NodeDescriptors
)
returns
(
context.Empty
)
{}
}
message
DiscoveredDevice
{
string
nodeName
=
1
;
string
ip
=
2
;
string
igpID
=
3
;
string
learntFrom
=
4
;
string
igpID
=
3
;
string
learntFrom
=
4
;
}
message
DiscoveredDeviceList
{
...
...
@@ -43,28 +43,28 @@ message DiscoveredLinkList{
}
message
DiscoveredLink
{
NodeDescriptors
local
=
1
;
NodeDescriptors
remote
=
2
;
string
learntFrom
=
3
;
string
local_ipv4
=
4
;
string
remote_ipv4
=
5
;
NodeDescriptors
local
=
1
;
NodeDescriptors
remote
=
2
;
string
learntFrom
=
3
;
string
local_ipv4
=
4
;
string
remote_ipv4
=
5
;
}
message
NodeDescriptors
{
string
asNumber
=
1
;
string
igp_id
=
2
;
string
nodeName
=
3
;
string
asNumber
=
1
;
string
igp_id
=
2
;
string
nodeName
=
3
;
}
message
BgplsSpeaker
{
string
address
=
1
;
string
port
=
2
;
string
asNumber
=
3
;
string
address
=
1
;
string
port
=
2
;
string
asNumber
=
3
;
}
message
BgplsSpeakerId
{
uint32
id
=
1
;
uint32
id
=
1
;
}
message
BgplsSpeakerList
{
repeated
BgplsSpeakerId
speakers
=
1
;
repeated
BgplsSpeakerId
speakers
=
1
;
}
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