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

Update GH pages to include GPU config information. #551

Merged
merged 1 commit into from
May 31, 2017
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: 2 additions & 0 deletions _data/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ sections:
content: configuration/graphs.html
"IP address":
content: configuration/ipam.html
GPUs:
content: configuration/gpus.html
IPMI:
content: configuration/ipmi.html
LLDP:
Expand Down
32 changes: 32 additions & 0 deletions _includes/configuration/gpus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<p class="lead">Collecting GPU information</p>
<p>
<span class="label label-info">Namespace</span> <span class="inlinecode">gpu</span>
</p>

<p>
GPU information can be stored in collins by adding GPU vendors to a whitelist. By default, any NVIDIA GPUs (PCI vendor = <code>"NVIDIA Corporation"</code>) will be parsed from lshw XML data and added to collins.
Additional vendors can be added by updating the configuration with their PCI vendor information.
</p>

<table class="table table-condensed table-hover">
<thead>
<tr>
<th>Key</th><th>Type</th><th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="inlinecode">supportedVendorStrings</td>
<td>Set[String]</td>
<td>PCI vendor strings to whitelist when parsing LSHW output. Defaults to <code>["NVIDIA Corporation"]</code>.</td>
</tr>
</tbody>
</table>

<div class="example reference-config">
<pre>gpu {

supportedVendorStrings = ["NVIDIA Corporation", "Advanced Micro Devices, Inc. [AMD/ATI]"]

}</pre>
</div>