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
955e944b
Commit
955e944b
authored
3 years ago
by
Ricard Vilalta
Browse files
Options
Downloads
Patches
Plain Diff
Update context.proto introducing slice isolation, tenancy
parent
2ffaf04d
No related branches found
No related tags found
1 merge request
!54
Release 2.0.0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/context.proto
+23
-0
23 additions, 0 deletions
proto/context.proto
with
23 additions
and
0 deletions
proto/context.proto
+
23
−
0
View file @
955e944b
...
@@ -274,6 +274,12 @@ message Slice {
...
@@ -274,6 +274,12 @@ message Slice {
repeated
ServiceId
slice_service_ids
=
4
;
repeated
ServiceId
slice_service_ids
=
4
;
repeated
SliceId
slice_subslice_ids
=
5
;
repeated
SliceId
slice_subslice_ids
=
5
;
SliceStatus
slice_status
=
6
;
SliceStatus
slice_status
=
6
;
SliceOwner
slice_owner
=
7
;
}
message
SliceOwner
{
Uuid
owner_uuid
=
1
;
string
owner_string
=
2
;
}
}
enum
SliceStatusEnum
{
enum
SliceStatusEnum
{
...
@@ -440,6 +446,22 @@ message Constraint_SLA_Availability {
...
@@ -440,6 +446,22 @@ message Constraint_SLA_Availability {
bool
all_active
=
2
;
bool
all_active
=
2
;
}
}
enum
IsolationLevelEnum
{
NO_ISOLATION
=
0
;
PHYSICAL_ISOLATION
=
1
;
LOGICAL_ISOLATION
=
2
;
PROCESS_ISOLATION
=
3
;
PHYSICAL_MEMORY_ISOLATION
=
4
;
PHYSICAL_NETWORK_ISOLATION
=
5
;
VIRTUAL_RESOURCE_ISOLATION
=
6
;
NETWORK_FUNCTIONS_ISOLATION
=
7
;
SERVICE_ISOLATION
=
8
;
}
message
Constraint_SLA_Isolation_level
{
IsolationLevelEnum
isolation_level
=
1
;
}
message
Constraint
{
message
Constraint
{
oneof
constraint
{
oneof
constraint
{
Constraint_Custom
custom
=
1
;
Constraint_Custom
custom
=
1
;
...
@@ -448,6 +470,7 @@ message Constraint {
...
@@ -448,6 +470,7 @@ message Constraint {
Constraint_SLA_Capacity
sla_capacity
=
4
;
Constraint_SLA_Capacity
sla_capacity
=
4
;
Constraint_SLA_Latency
sla_latency
=
5
;
Constraint_SLA_Latency
sla_latency
=
5
;
Constraint_SLA_Availability
sla_availability
=
6
;
Constraint_SLA_Availability
sla_availability
=
6
;
Constraint_SLA_Isolation_level
=
7
;
}
}
}
}
...
...
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