You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using volcano-device-plugin, the Health annotation is compared case-sensitively (dev.Health == "healthy"). This causes GPUs with Health values like "Healthy" to be incorrectly marked as false. In contrast, hami-device-plugin uses strings.EqualFold for case-insensitive comparison, handling these cases correctly.
The text was updated successfully, but these errors were encountered:
When using
volcano-device-plugin
, theHealth
annotation is compared case-sensitively (dev.Health == "healthy"
). This causes GPUs withHealth
values like"Healthy"
to be incorrectly marked asfalse
. In contrast,hami-device-plugin
usesstrings.EqualFold
for case-insensitive comparison, handling these cases correctly.The text was updated successfully, but these errors were encountered: