-
Notifications
You must be signed in to change notification settings - Fork 355
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
add initiator type and host os_type #804
add initiator type and host os_type #804
Conversation
Codecov Report
@@ Coverage Diff @@
## master #804 +/- ##
==========================================
+ Coverage 70.54% 70.57% +0.02%
==========================================
Files 180 180
Lines 18638 18646 +8
Branches 2749 2750 +1
==========================================
+ Hits 13148 13159 +11
+ Misses 4646 4645 -1
+ Partials 844 842 -2
|
delfin/common/constants.py
Outdated
FC = 'fcinitiator' | ||
ISCSI = 'iscsiinitiator' | ||
NVME_OVER_ROCE = 'roceinitiator' | ||
UNKNOWN = 'unknown' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we make type without initiator
, similar to port type?
FC = 'fcinitiator' | |
ISCSI = 'iscsiinitiator' | |
NVME_OVER_ROCE = 'roceinitiator' | |
UNKNOWN = 'unknown' | |
FC = 'fc' | |
ISCSI = 'iscsi' | |
NVME_OVER_ROCE = 'roce' | |
UNKNOWN = 'unknown' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
add initiator type and host os_type