We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20c2108 + fad9757 commit 869bc69Copy full SHA for 869bc69
Makefile
@@ -27,6 +27,8 @@
27
DOCKER_REPO ?= "nvcr.io/nvidia/kubevirt-gpu-device-plugin"
28
DOCKER_TAG ?= v1.3.0
29
30
+PCI_IDS_URL ?= https://pci-ids.ucw.cz/v2.2/pci.ids
31
+
32
build:
33
go build -o nvidia-kubevirt-gpu-device-plugin kubevirt-gpu-device-plugin/cmd
34
test:
@@ -39,3 +41,5 @@ build-image:
39
41
docker build . -t $(DOCKER_REPO):$(DOCKER_TAG)
40
42
push-image: build-image
43
docker push $(DOCKER_REPO):$(DOCKER_TAG)
44
+update-pcidb:
45
+ wget $(PCI_IDS_URL) -O $(CURDIR)/utils/pci.ids
0 commit comments