Skip to content

Commit 7ec6db2

Browse files
jojimtshaleman
jojimt
authored andcommitted
Track rules that refer to an epg (#42)
* Track rules that refer to an epg * Track matching endpoint group from rule
1 parent f9a424e commit 7ec6db2

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

client/contivModelClient.go

+6
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ type EndpointGroup struct {
235235

236236
type EndpointGroupLinkSets struct {
237237
ExtContractsGrps map[string]Link `json:"ExtContractsGrps,omitempty"`
238+
MatchRules map[string]Link `json:"MatchRules,omitempty"`
238239
Policies map[string]Link `json:"Policies,omitempty"`
239240
Services map[string]Link `json:"Services,omitempty"`
240241
}
@@ -428,12 +429,17 @@ type Rule struct {
428429

429430
// add link-sets and links
430431
LinkSets RuleLinkSets `json:"link-sets,omitempty"`
432+
Links RuleLinks `json:"links,omitempty"`
431433
}
432434

433435
type RuleLinkSets struct {
434436
Policies map[string]Link `json:"Policies,omitempty"`
435437
}
436438

439+
type RuleLinks struct {
440+
MatchEndpointGroup Link `json:"MatchEndpointGroup,omitempty"`
441+
}
442+
437443
type RuleInspect struct {
438444
Config Rule
439445
}

contivModel.go

+6
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ type EndpointGroup struct {
109109

110110
type EndpointGroupLinkSets struct {
111111
ExtContractsGrps map[string]modeldb.Link `json:"ExtContractsGrps,omitempty"`
112+
MatchRules map[string]modeldb.Link `json:"MatchRules,omitempty"`
112113
Policies map[string]modeldb.Link `json:"Policies,omitempty"`
113114
Services map[string]modeldb.Link `json:"Services,omitempty"`
114115
}
@@ -302,12 +303,17 @@ type Rule struct {
302303

303304
// add link-sets and links
304305
LinkSets RuleLinkSets `json:"link-sets,omitempty"`
306+
Links RuleLinks `json:"links,omitempty"`
305307
}
306308

307309
type RuleLinkSets struct {
308310
Policies map[string]modeldb.Link `json:"Policies,omitempty"`
309311
}
310312

313+
type RuleLinks struct {
314+
MatchEndpointGroup modeldb.Link `json:"MatchEndpointGroup,omitempty"`
315+
}
316+
311317
type RuleInspect struct {
312318
Config Rule
313319
}

endpointGroup.json

+3
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
"policies": {
7676
"ref": "policy"
7777
},
78+
"matchRules": {
79+
"ref": "rule"
80+
},
7881
"extContractsGrps": {
7982
"ref": "extContractsGrp"
8083
}

rule.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,12 @@
114114
"policies": {
115115
"ref": "policy"
116116
}
117-
}
117+
},
118+
"links": {
119+
"matchEndpointGroup": {
120+
"ref": "endpointGroup"
121+
}
122+
}
118123
}
119124
]
120125
}

0 commit comments

Comments
 (0)