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
Copy file name to clipboardExpand all lines: examples/dt/nova/nova04delta/README.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,14 +29,16 @@ The following parameters are crucial for host-level configuration:
29
29
30
30
## Nova Configuration
31
31
32
-
# FIXME: this looks only used in PCI groups in placement? The same pci_passthrough:alias should be used in both cases it seems?
33
-
Nova control plane is configured for requesting PCI devices from Placement
34
-
through `resources:VGPU=X` flavor extra specs.
35
-
That is a contrary to the legacy mode where PCI devices used to be requested through
36
-
`pci_passthrough:alias` flavor extra specs.
32
+
A count of `X` PCI devices may be requested through `"pci_passthrough:alias"="nvidia_a2:X"` flavor extra specs:
33
+
```
34
+
$ openstack --os-compute-api=2.86 flavor set --property "pci_passthrough:alias"="nvidia_a2:1" device_passthrough
35
+
```
37
36
38
37
### Control Plane (`examples/dt/nova/nova04delta/control-plane/service-values.yaml`)
39
38
39
+
See [README.md](control-plane/README.md) for deployment instructions.
40
+
There are most essential configuration values to define:
41
+
40
42
*`[pci]alias`: Creates an alias for a specific GPU type. This allows users to request a GPU by a friendly name (e.g., `nvidia_a2`) when creating a VM. This configuration should match the configuration found on the compute nodes.
41
43
```yaml
42
44
nova:
@@ -53,6 +55,9 @@ That is a contrary to the legacy mode where PCI devices used to be requested thr
See [dataplane section](data-plane.md) for deployment instructions.
59
+
There are most essential configuration values to define:
60
+
56
61
* `[pci]report_in_placement`: Required for PCI in placement to work.
57
62
* `[pci]device_spec`: Whitelists the physical GPUs that are available for passthrough. You must create a `device_spec` entry for each physical GPU you want to make available. For example:
0 commit comments