Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to support Telco requirements #50

Merged
merged 29 commits into from
Sep 25, 2023
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
261a873
Changes to support Telco requirements
abhis2112 Jul 20, 2023
19c7a48
Telco requirements:
burhan20 Jul 27, 2023
94c463f
Optimized and reordered queries, modified info on hover over node, ad…
burhan20 Jul 28, 2023
f1f7f67
Displayed primary iface on hovering over node in non baremetal case a…
burhan20 Jul 28, 2023
45e8d7a
Merge pull request #5 from noironetworks/burhan-telco
abhis2112 Jul 28, 2023
78e1546
Showing sec links only when pod is also present and removed extra ifa…
burhan20 Aug 3, 2023
b327e51
Merge pull request #8 from noironetworks/vkaci-comments
abhis2112 Aug 3, 2023
b640dca
fixed ut failure
burhan20 Aug 4, 2023
1c2b50c
Merge pull request #9 from noironetworks/ut-failure
abhis2112 Aug 4, 2023
93fb1a1
Added more testcases for sriov and macvlan
burhan20 Aug 7, 2023
733175c
Made changes to queries so that when pod is present then only node to…
burhan20 Aug 9, 2023
781c4b2
Fixed Pod and Node topology view so that node-leaf/vm links are visib…
burhan20 Aug 10, 2023
028e6a6
Merge pull request #11 from noironetworks/sriov-macvlan-pod
abhis2112 Aug 11, 2023
d1dee47
optimized testcases
burhan20 Aug 11, 2023
b4a2a30
fixed query crash if there is no pod with primary link running on a node
burhan20 Aug 16, 2023
06bd268
Merge pull request #10 from noironetworks/testcases
abhis2112 Aug 18, 2023
33ab194
Merge pull request #12 from noironetworks/node-with-only-sec-pods
abhis2112 Aug 18, 2023
8d8465d
added ut for sriov macvlan pod in diff ns
burhan20 Aug 22, 2023
ed697b5
Merge pull request #13 from noironetworks/ut_ns
abhis2112 Aug 25, 2023
69acd6b
differentiated sriov macvlan based on primarycni field
burhan20 Sep 5, 2023
d3aa45c
Merge pull request #14 from noironetworks/primary-cni
abhis2112 Sep 5, 2023
87c3dee
added primarycni in UTs as well
burhan20 Sep 5, 2023
9a89772
Merge pull request #15 from noironetworks/ut-changes-primarycni
abhis2112 Sep 5, 2023
0d2ea31
added sec pod iface name based on int value, added pod name to pod gr…
burhan20 Sep 6, 2023
885063e
added cno check for role and role binding
burhan20 Sep 6, 2023
03c9915
Merge pull request #16 from noironetworks/pod-iface-name
abhis2112 Sep 6, 2023
0c77fcb
reverted cno check for clusterrole
burhan20 Sep 7, 2023
d0fb484
Merge pull request #17 from noironetworks/cno
abhis2112 Sep 7, 2023
7fdecf6
Resolving commentds on latest PR
abhis2112 Sep 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions unit_test.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,8 @@
"nodeName": "1234abc",
"networkRef": {
"name": "sriov-net1"
}
},
"primaryCni": "sriov"
},
"metadata" : {
"name" : "sriov"
@@ -57,7 +58,8 @@
"nodeName": "1234abc",
"networkRef": {
"name": "macvlan-net1"
}
},
"primaryCni": "macvlan"
},
"metadata" : {
"name" : "macvlan"
@@ -702,7 +704,8 @@ def test_sriov(self):
"nodeName": "1234abc",
"networkRef": {
"name": "sriov-net1"
}
},
"primaryCni": "sriov"
},
"metadata" : {
"name" : "sriov"
@@ -768,7 +771,8 @@ def test_macvlan(self):
"nodeName": "1234abc",
"networkRef": {
"name": "macvlan-net1"
}
},
"primaryCni": "macvlan"
},
"metadata" : {
"name" : "macvlan"
@@ -948,7 +952,8 @@ def test_sriov_without_pod(self):
"nodeName": "1234abc",
"networkRef": {
"name": "sriov-net1"
}
},
"primaryCni": "sriov"
},
"metadata" : {
"name" : "sriov"
@@ -1001,7 +1006,8 @@ def test_macvlan_without_pod(self):
"nodeName": "1234abc",
"networkRef": {
"name": "macvlan-net1"
}
},
"primaryCni": "macvlan"
},
"metadata" : {
"name" : "macvlan"