Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ authors = ["NVIDIA Carbide Engineering <carbide-dev@exchange.nvidia.com>"]

[workspace.dependencies]
clap = { version = "4", features = ["derive", "env"] }
libredfish = { git = "https://github.com/NVIDIA/libredfish.git", tag = "v0.44.16" }
libredfish = { git = "https://github.com/NVIDIA/libredfish.git", tag = "v0.44.18" }
librms = { git = "https://github.com/NVIDIA/nv-rms-client.git", tag = "v0.9.0-mts-rc04" }
ansi-to-html = "0.2.2"

Expand Down
3 changes: 2 additions & 1 deletion crates/redfish/src/libredfish/conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ pub fn bmc_vendor(r: libredfish::model::service_root::RedfishVendor) -> BMCVendo
| RedfishVendor::NvidiaGBx00
| RedfishVendor::NvidiaGH200
| RedfishVendor::NvidiaGBSwitch
| RedfishVendor::P3809 => BMCVendor::Nvidia,
| RedfishVendor::P3809
| RedfishVendor::VeraRubin => BMCVendor::Nvidia,
RedfishVendor::Dell => BMCVendor::Dell,
RedfishVendor::Hpe => BMCVendor::Hpe,
RedfishVendor::Lenovo => BMCVendor::Lenovo,
Expand Down
3 changes: 2 additions & 1 deletion crates/site-explorer/src/redfish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ impl RedfishClient {
| RedfishVendor::P3809
| RedfishVendor::LiteOnPowerShelf
| RedfishVendor::DeltaPowerShelf
| RedfishVendor::NvidiaGBx00 => {
| RedfishVendor::NvidiaGBx00
| RedfishVendor::VeraRubin => {
// change_password does things that require a password and DPUs need a first
// password use to be change, so just change it directly
//
Expand Down
Loading