Skip to content

Commit 4926728

Browse files
author
Vijay Krishnan
committed
Adding tag field in contiv network and group.
- docker network matching the tag will be associated to it. Signed-off-by: Vijay Krishnan <[email protected]>
1 parent d321a4c commit 4926728

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

endpointGroup.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@
5353
"Title": "Network profile name",
5454
"Length": 64,
5555
"ShowSummary": true
56+
},
57+
"cfgdTag": {
58+
"type": "string",
59+
"Title": "Configured Group Tag",
60+
"Length": 128,
61+
"format": "^((([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9]))?$",
62+
"ShowSummary": true
5663
}
5764
},
5865
"operProperties": {
@@ -80,8 +87,11 @@
8087
"availableIPAddresses": {
8188
"type": "string",
8289
"title": "Available IP addresses"
90+
},
91+
"groupTag": {
92+
"type": "string",
93+
"title": "Derived EndpointGroup Tag"
8394
}
84-
8595
},
8696
"link-sets": {
8797
"services": {

network.json

+10
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@
6262
"format": "^(((([0-9]|[a-f]|[A-F]){1,4})((\\\\:([0-9]|[a-f]|[A-F]){1,4}){7}))|(((([0-9]|[a-f]|[A-F]){1,4}\\\\:){0,6}|\\\\:)((\\\\:([0-9]|[a-f]|[A-F]){1,4}){0,6}|\\\\:)))?$",
6363
"title": "IPv6Gateway",
6464
"showSummary": true
65+
},
66+
"cfgdTag": {
67+
"type": "string",
68+
"title": "Configured Network Tag",
69+
"length": 128,
70+
"format": "^((([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9]))?$"
6571
}
6672
},
6773
"operProperties": {
@@ -93,6 +99,10 @@
9399
"type": "array",
94100
"items": "endpoint",
95101
"title": "endpoints in the network"
102+
},
103+
"networkTag": {
104+
"type": "string",
105+
"title": "Derived Network Tag"
96106
}
97107
},
98108
"link-sets": {

0 commit comments

Comments
 (0)