Skip to content

Commit 3ddd765

Browse files
Copilotmythi
andauthored
Address review: fix operator container count and split DSA idxd/vfio examples
Agent-Logs-Url: https://github.com/intel/intel-device-plugins-for-kubernetes/sessions/a8ce95f8-6798-4ccf-a3cf-2a674da7152c Co-authored-by: mythi <1049565+mythi@users.noreply.github.com>
1 parent e79570e commit 3ddd765

1 file changed

Lines changed: 29 additions & 11 deletions

File tree

OPENSHIFT.md

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ oc get pod -n openshift-operators | grep inteldeviceplugins-controller-manager
335335
Expected output (example):
336336

337337
```
338-
inteldeviceplugins-controller-manager-6b8c76c867-hftqm 2/2 Running 0 17m
338+
inteldeviceplugins-controller-manager-6b8c76c867-hftqm 1/1 Running 0 17m
339339
```
340340

341341
## Creating Device Plugin Custom Resources
@@ -540,6 +540,32 @@ Save and apply:
540540
oc apply -f dsa-device-plugin.yaml
541541
```
542542

543+
Verify:
544+
545+
```bash
546+
oc get DsaDevicePlugin
547+
```
548+
549+
Example output:
550+
551+
```
552+
NAME DESIRED READY NODE SELECTOR AGE
553+
dsadeviceplugin-sample 3 3 {"intel.feature.node.kubernetes.io/dsa":"true"} 98m
554+
```
555+
556+
Verify DSA resources on a node:
557+
558+
```bash
559+
oc describe node <node-name> | grep dsa.intel.com
560+
```
561+
562+
Example output:
563+
564+
```
565+
dsa.intel.com/wq-user-shared: 160
566+
dsa.intel.com/wq-user-dedicated: 0
567+
```
568+
543569
#### Create via CLI (VFIO driver)
544570

545571
Some workloads (e.g., DPDK) support using DSA through `vfio-pci`. Setting
@@ -570,7 +596,7 @@ Save and apply:
570596
oc apply -f dsa-device-plugin-vfio.yaml
571597
```
572598

573-
#### Verify
599+
Verify:
574600

575601
```bash
576602
oc get DsaDevicePlugin
@@ -580,7 +606,6 @@ Example output:
580606

581607
```
582608
NAME DESIRED READY NODE SELECTOR AGE
583-
dsadeviceplugin-sample 3 3 {"intel.feature.node.kubernetes.io/dsa":"true"} 98m
584609
dsadeviceplugin-vfio-sample 3 3 {"intel.feature.node.kubernetes.io/dsa":"true"} 10m
585610
```
586611

@@ -590,14 +615,7 @@ Verify DSA resources on a node:
590615
oc describe node <node-name> | grep dsa.intel.com
591616
```
592617

593-
Example output (idxd driver):
594-
595-
```
596-
dsa.intel.com/wq-user-shared: 160
597-
dsa.intel.com/wq-user-dedicated: 0
598-
```
599-
600-
Example output (vfio-pci driver):
618+
Example output:
601619

602620
```
603621
dsa.intel.com/vfio: 4

0 commit comments

Comments
 (0)