mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00
Merge pull request #1855 from tkatila/prep-0.31
Release 0.31 preparation
This commit is contained in:
commit
6b407d1ca6
24
.github/workflows/publish.yml
vendored
24
.github/workflows/publish.yml
vendored
@ -4,9 +4,9 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- release-0.28
|
|
||||||
- release-0.29
|
- release-0.29
|
||||||
- release-0.30
|
- release-0.30
|
||||||
|
- release-0.31
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@ -44,17 +44,6 @@ jobs:
|
|||||||
rm -rf _work/venv
|
rm -rf _work/venv
|
||||||
make vhtml
|
make vhtml
|
||||||
mv _build/html/* $HOME/output/
|
mv _build/html/* $HOME/output/
|
||||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: release-0.28
|
|
||||||
- name: Build release-0.28
|
|
||||||
run: |
|
|
||||||
GITHUB_SHA=$(git rev-parse HEAD)
|
|
||||||
export GITHUB_SHA
|
|
||||||
rm -rf _work/venv
|
|
||||||
make vhtml
|
|
||||||
mv _build/html $HOME/output/0.28
|
|
||||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
@ -77,6 +66,17 @@ jobs:
|
|||||||
rm -rf _work/venv
|
rm -rf _work/venv
|
||||||
make vhtml
|
make vhtml
|
||||||
mv _build/html $HOME/output/0.30
|
mv _build/html $HOME/output/0.30
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: release-0.31
|
||||||
|
- name: Build release-0.31
|
||||||
|
run: |
|
||||||
|
GITHUB_SHA=$(git rev-parse HEAD)
|
||||||
|
export GITHUB_SHA
|
||||||
|
rm -rf _work/venv
|
||||||
|
make vhtml
|
||||||
|
mv _build/html $HOME/output/0.31
|
||||||
- name: Deploy the docs
|
- name: Deploy the docs
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
|
2
Makefile
2
Makefile
@ -137,7 +137,7 @@ clean:
|
|||||||
|
|
||||||
ORG?=intel
|
ORG?=intel
|
||||||
REG?=$(ORG)/
|
REG?=$(ORG)/
|
||||||
TAG?=devel
|
TAG?=0.31.0
|
||||||
export TAG
|
export TAG
|
||||||
|
|
||||||
ifeq ($(E2E_LEVEL), $(filter $(E2E_LEVEL), full))
|
ifeq ($(E2E_LEVEL), $(filter $(E2E_LEVEL), full))
|
||||||
|
@ -8,8 +8,8 @@ This repository contains a framework for developing plugins for the Kubernetes
|
|||||||
[device plugins framework](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/),
|
[device plugins framework](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/),
|
||||||
along with a number of device plugin implementations utilizing that framework.
|
along with a number of device plugin implementations utilizing that framework.
|
||||||
|
|
||||||
The [v0.30 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
|
The [v0.31 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
|
||||||
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.30/).
|
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.31/).
|
||||||
|
|
||||||
Table of Contents
|
Table of Contents
|
||||||
|
|
||||||
@ -261,9 +261,10 @@ matching Kubernetes versions are listed below:
|
|||||||
|
|
||||||
| Branch | Kubernetes branch/version | Status |
|
| Branch | Kubernetes branch/version | Status |
|
||||||
|:------------------|:-------------------------------|:------------|
|
|:------------------|:-------------------------------|:------------|
|
||||||
|
| release-0.31 | Kubernetes 1.31 branch v1.31.x | supported |
|
||||||
| release-0.30 | Kubernetes 1.30 branch v1.30.x | supported |
|
| release-0.30 | Kubernetes 1.30 branch v1.30.x | supported |
|
||||||
| release-0.29 | Kubernetes 1.29 branch v1.29.x | supported |
|
| release-0.29 | Kubernetes 1.29 branch v1.29.x | supported |
|
||||||
| release-0.28 | Kubernetes 1.28 branch v1.28.x | supported |
|
| release-0.28 | Kubernetes 1.28 branch v1.28.x | unsupported |
|
||||||
| release-0.27 | Kubernetes 1.27 branch v1.27.x | unsupported |
|
| release-0.27 | Kubernetes 1.27 branch v1.27.x | unsupported |
|
||||||
| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported |
|
| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported |
|
||||||
| release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported |
|
| release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported |
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
|
ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-deviceplugin-operator'
|
LABEL name='intel-deviceplugin-operator'
|
||||||
LABEL summary='Intel® device plugin operator for Kubernetes'
|
LABEL summary='Intel® device plugin operator for Kubernetes'
|
||||||
|
@ -57,7 +57,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
|
|||||||
###
|
###
|
||||||
FROM ${FINAL_BASE}
|
FROM ${FINAL_BASE}
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
COPY demo/dlb-init.sh /usr/local/bin/
|
COPY demo/dlb-init.sh /usr/local/bin/
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_dlb_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_dlb_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-dlb-plugin'
|
LABEL name='intel-dlb-plugin'
|
||||||
LABEL summary='Intel® DLB device plugin for Kubernetes'
|
LABEL summary='Intel® DLB device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_dsa_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_dsa_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-dsa-plugin'
|
LABEL name='intel-dsa-plugin'
|
||||||
LABEL summary='Intel® DSA device plugin for Kubernetes'
|
LABEL summary='Intel® DSA device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_fpga_admissionwebhook"]
|
ENTRYPOINT ["/usr/local/bin/intel_fpga_admissionwebhook"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-fpga-admissionwebhook'
|
LABEL name='intel-fpga-admissionwebhook'
|
||||||
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'
|
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'
|
||||||
|
@ -83,7 +83,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
|
|||||||
###
|
###
|
||||||
FROM ${FINAL_BASE}
|
FROM ${FINAL_BASE}
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-fpga-initcontainer'
|
LABEL name='intel-fpga-initcontainer'
|
||||||
LABEL summary='Intel® FPGA programming CDI hook for Kubernetes'
|
LABEL summary='Intel® FPGA programming CDI hook for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_fpga_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_fpga_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-fpga-plugin'
|
LABEL name='intel-fpga-plugin'
|
||||||
LABEL summary='Intel® FPGA device plugin for Kubernetes'
|
LABEL summary='Intel® FPGA device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_gpu_fakedev"]
|
ENTRYPOINT ["/usr/local/bin/intel_gpu_fakedev"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-gpu-fakedev'
|
LABEL name='intel-gpu-fakedev'
|
||||||
LABEL summary='Fake device file generator for Intel® GPU plugin'
|
LABEL summary='Fake device file generator for Intel® GPU plugin'
|
||||||
|
@ -73,7 +73,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
|
|||||||
###
|
###
|
||||||
FROM ${FINAL_BASE}
|
FROM ${FINAL_BASE}
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-gpu-initcontainer'
|
LABEL name='intel-gpu-initcontainer'
|
||||||
LABEL summary='Intel® GPU NFD hook for Kubernetes'
|
LABEL summary='Intel® GPU NFD hook for Kubernetes'
|
||||||
|
@ -84,7 +84,7 @@ RUN if [ $ROCKYLINUX -eq 0 ]; then \
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_gpu_levelzero"]
|
ENTRYPOINT ["/usr/local/bin/intel_gpu_levelzero"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-gpu-levelzero'
|
LABEL name='intel-gpu-levelzero'
|
||||||
LABEL summary='Intel® GPU levelzero for Kubernetes'
|
LABEL summary='Intel® GPU levelzero for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_gpu_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_gpu_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-gpu-plugin'
|
LABEL name='intel-gpu-plugin'
|
||||||
LABEL summary='Intel® GPU device plugin for Kubernetes'
|
LABEL summary='Intel® GPU device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_iaa_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_iaa_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-iaa-plugin'
|
LABEL name='intel-iaa-plugin'
|
||||||
LABEL summary='Intel® IAA device plugin for Kubernetes'
|
LABEL summary='Intel® IAA device plugin for Kubernetes'
|
||||||
|
@ -57,7 +57,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
|
|||||||
###
|
###
|
||||||
FROM ${FINAL_BASE}
|
FROM ${FINAL_BASE}
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-qat-initcontainer'
|
LABEL name='intel-qat-initcontainer'
|
||||||
LABEL summary='Intel® QAT initcontainer for Kubernetes'
|
LABEL summary='Intel® QAT initcontainer for Kubernetes'
|
||||||
|
@ -60,7 +60,7 @@ RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-ku
|
|||||||
else mkdir -p /install_root/licenses/$CMD/go-licenses/ && cd licenses/$CMD && cp -r * /install_root/licenses/$CMD/go-licenses/ ; fi
|
else mkdir -p /install_root/licenses/$CMD/go-licenses/ && cd licenses/$CMD && cp -r * /install_root/licenses/$CMD/go-licenses/ ; fi
|
||||||
FROM debian:unstable-slim
|
FROM debian:unstable-slim
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-qat-plugin-kerneldrv'
|
LABEL name='intel-qat-plugin-kerneldrv'
|
||||||
LABEL summary='Intel® QAT device plugin kerneldrv for Kubernetes'
|
LABEL summary='Intel® QAT device plugin kerneldrv for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_qat_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_qat_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-qat-plugin'
|
LABEL name='intel-qat-plugin'
|
||||||
LABEL summary='Intel® QAT device plugin for Kubernetes'
|
LABEL summary='Intel® QAT device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_sgx_admissionwebhook"]
|
ENTRYPOINT ["/usr/local/bin/intel_sgx_admissionwebhook"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-sgx-admissionwebhook'
|
LABEL name='intel-sgx-admissionwebhook'
|
||||||
LABEL summary='Intel® SGX admission controller webhook for Kubernetes'
|
LABEL summary='Intel® SGX admission controller webhook for Kubernetes'
|
||||||
|
@ -73,7 +73,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
|
|||||||
###
|
###
|
||||||
FROM ${FINAL_BASE}
|
FROM ${FINAL_BASE}
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-sgx-initcontainer'
|
LABEL name='intel-sgx-initcontainer'
|
||||||
LABEL summary='Intel® SGX NFD hook for Kubernetes'
|
LABEL summary='Intel® SGX NFD hook for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_sgx_device_plugin"]
|
ENTRYPOINT ["/usr/local/bin/intel_sgx_device_plugin"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-sgx-plugin'
|
LABEL name='intel-sgx-plugin'
|
||||||
LABEL summary='Intel® SGX device plugin for Kubernetes'
|
LABEL summary='Intel® SGX device plugin for Kubernetes'
|
||||||
|
@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
|
|||||||
COPY --from=builder /install_root /
|
COPY --from=builder /install_root /
|
||||||
ENTRYPOINT ["/usr/local/bin/intel_xpumanager_sidecar"]
|
ENTRYPOINT ["/usr/local/bin/intel_xpumanager_sidecar"]
|
||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
LABEL name='intel-xpumanager-sidecar'
|
LABEL name='intel-xpumanager-sidecar'
|
||||||
LABEL summary='Intel® xpumanager sidecar'
|
LABEL summary='Intel® xpumanager sidecar'
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
LABEL vendor='Intel®'
|
LABEL vendor='Intel®'
|
||||||
LABEL version='devel'
|
LABEL version='0.31.0'
|
||||||
LABEL release='1'
|
LABEL release='1'
|
||||||
|
@ -6,7 +6,7 @@ spec:
|
|||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: dlb-libdlb-demo-pf-pod
|
- name: dlb-libdlb-demo-pf-pod
|
||||||
image: intel/dlb-libdlb-demo:devel
|
image: intel/dlb-libdlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
@ -6,7 +6,7 @@ spec:
|
|||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: pf
|
- name: pf
|
||||||
image: intel/dlb-libdlb-demo:devel
|
image: intel/dlb-libdlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
@ -18,7 +18,7 @@ spec:
|
|||||||
cpu: 1
|
cpu: 1
|
||||||
memory: 200Mi
|
memory: 200Mi
|
||||||
- name: vf
|
- name: vf
|
||||||
image: intel/dlb-libdlb-demo:devel
|
image: intel/dlb-libdlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
@ -6,7 +6,7 @@ spec:
|
|||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: dlb-libdlb-demo-vf-pod
|
- name: dlb-libdlb-demo-vf-pod
|
||||||
image: intel/dlb-libdlb-demo:devel
|
image: intel/dlb-libdlb-demo:0.31.0
|
||||||
command: [ "sh", "-c", "/usr/local/bin/dir_traffic -n 8 -w epoll -d $(ls /dev/dlb* | sed 's/\\/dev\\/dlb//')" ]
|
command: [ "sh", "-c", "/usr/local/bin/dir_traffic -n 8 -w epoll -d $(ls /dev/dlb* | sed 's/\\/dev\\/dlb//')" ]
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
resources:
|
resources:
|
||||||
|
@ -7,7 +7,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: dsa-accel-config-demo
|
- name: dsa-accel-config-demo
|
||||||
image: intel/accel-config-demo:devel
|
image: intel/accel-config-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
workingDir: "/usr/libexec/accel-config/test/"
|
workingDir: "/usr/libexec/accel-config/test/"
|
||||||
command:
|
command:
|
||||||
|
@ -7,7 +7,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: iaa-accel-config-demo
|
- name: iaa-accel-config-demo
|
||||||
image: intel/accel-config-demo:devel
|
image: intel/accel-config-demo:0.31.0
|
||||||
workingDir: "/usr/libexec/accel-config/test/"
|
workingDir: "/usr/libexec/accel-config/test/"
|
||||||
command:
|
command:
|
||||||
- "./iaa_user_test_runner.sh"
|
- "./iaa_user_test_runner.sh"
|
||||||
|
@ -13,7 +13,7 @@ spec:
|
|||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: intelfpga-demo-job-1
|
- name: intelfpga-demo-job-1
|
||||||
image: intel/opae-nlb-demo:devel
|
image: intel/opae-nlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: test-container
|
- name: test-container
|
||||||
image: intel/opae-nlb-demo:devel
|
image: intel/opae-nlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: test-container
|
- name: test-container
|
||||||
image: intel/opae-nlb-demo:devel
|
image: intel/opae-nlb-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
|
@ -26,7 +26,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-dlb-plugin:devel
|
image: intel/intel-dlb-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
|
@ -7,7 +7,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: intel-dlb-initcontainer
|
- name: intel-dlb-initcontainer
|
||||||
image: intel/intel-dlb-initcontainer:devel
|
image: intel/intel-dlb-initcontainer:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
privileged: true
|
privileged: true
|
||||||
|
@ -26,7 +26,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-dsa-plugin:devel
|
image: intel/intel-dsa-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
|
@ -12,7 +12,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-idxd-config-initcontainer:devel
|
image: intel/intel-idxd-config-initcontainer:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
type: "container_device_plugin_init_t"
|
type: "container_device_plugin_init_t"
|
||||||
|
@ -16,7 +16,7 @@ spec:
|
|||||||
control-plane: controller-manager
|
control-plane: controller-manager
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: intel/intel-fpga-admissionwebhook:devel
|
- image: intel/intel-fpga-admissionwebhook:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
name: manager
|
name: manager
|
||||||
securityContext:
|
securityContext:
|
||||||
|
@ -21,7 +21,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: intel-fpga-initcontainer
|
- name: intel-fpga-initcontainer
|
||||||
image: intel/intel-fpga-initcontainer:devel
|
image: intel/intel-fpga-initcontainer:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
@ -36,7 +36,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-fpga-plugin:devel
|
image: intel/intel-fpga-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- -mode=af
|
- -mode=af
|
||||||
|
@ -29,7 +29,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: status.hostIP
|
fieldPath: status.hostIP
|
||||||
image: intel/intel-gpu-plugin:devel
|
image: intel/intel-gpu-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
path: /spec/template/spec/containers/-
|
path: /spec/template/spec/containers/-
|
||||||
value:
|
value:
|
||||||
name: intel-gpu-levelzero
|
name: intel-gpu-levelzero
|
||||||
image: intel/intel-gpu-levelzero:devel
|
image: intel/intel-gpu-levelzero:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- "-v=2"
|
- "-v=2"
|
||||||
|
@ -26,7 +26,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-iaa-plugin:devel
|
image: intel/intel-iaa-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
|
@ -14,7 +14,7 @@ spec:
|
|||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
- name: DEVICE_TYPE
|
- name: DEVICE_TYPE
|
||||||
value: "iaa"
|
value: "iaa"
|
||||||
image: intel/intel-idxd-config-initcontainer:devel
|
image: intel/intel-idxd-config-initcontainer:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
type: "container_device_plugin_init_t"
|
type: "container_device_plugin_init_t"
|
||||||
|
@ -27,7 +27,7 @@ spec:
|
|||||||
manager: intel-deviceplugin-operator
|
manager: intel-deviceplugin-operator
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: docker.io/intel/intel-deviceplugin-operator:devel
|
- image: docker.io/intel/intel-deviceplugin-operator:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
name: manager
|
name: manager
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
@ -9,8 +9,8 @@ metadata:
|
|||||||
# annotations:
|
# annotations:
|
||||||
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
|
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-dlb-plugin:0.30.0
|
image: intel/intel-dlb-plugin:0.31.0
|
||||||
initImage: intel/intel-dlb-initcontainer:0.30.0
|
initImage: intel/intel-dlb-initcontainer:0.31.0
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
intel.feature.node.kubernetes.io/dlb: 'true'
|
intel.feature.node.kubernetes.io/dlb: 'true'
|
||||||
|
@ -3,8 +3,8 @@ kind: DsaDevicePlugin
|
|||||||
metadata:
|
metadata:
|
||||||
name: dsadeviceplugin-sample
|
name: dsadeviceplugin-sample
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-dsa-plugin:0.30.0
|
image: intel/intel-dsa-plugin:0.31.0
|
||||||
initImage: intel/intel-idxd-config-initcontainer:0.30.0
|
initImage: intel/intel-idxd-config-initcontainer:0.31.0
|
||||||
sharedDevNum: 10
|
sharedDevNum: 10
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
|
@ -3,8 +3,8 @@ kind: FpgaDevicePlugin
|
|||||||
metadata:
|
metadata:
|
||||||
name: fpgadeviceplugin-sample
|
name: fpgadeviceplugin-sample
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-fpga-plugin:0.30.0
|
image: intel/intel-fpga-plugin:0.31.0
|
||||||
initImage: intel/intel-fpga-initcontainer:0.30.0
|
initImage: intel/intel-fpga-initcontainer:0.31.0
|
||||||
mode: region
|
mode: region
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
|
@ -3,7 +3,7 @@ kind: GpuDevicePlugin
|
|||||||
metadata:
|
metadata:
|
||||||
name: gpudeviceplugin-sample
|
name: gpudeviceplugin-sample
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-gpu-plugin:0.30.0
|
image: intel/intel-gpu-plugin:0.31.0
|
||||||
sharedDevNum: 10
|
sharedDevNum: 10
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
enableMonitoring: true
|
enableMonitoring: true
|
||||||
|
@ -3,8 +3,8 @@ kind: IaaDevicePlugin
|
|||||||
metadata:
|
metadata:
|
||||||
name: iaadeviceplugin-sample
|
name: iaadeviceplugin-sample
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-iaa-plugin:0.30.0
|
image: intel/intel-iaa-plugin:0.31.0
|
||||||
initImage: intel/intel-idxd-config-initcontainer:0.30.0
|
initImage: intel/intel-idxd-config-initcontainer:0.31.0
|
||||||
sharedDevNum: 10
|
sharedDevNum: 10
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
|
@ -9,8 +9,8 @@ metadata:
|
|||||||
# annotations:
|
# annotations:
|
||||||
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
|
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-qat-plugin:0.30.0
|
image: intel/intel-qat-plugin:0.31.0
|
||||||
initImage: intel/intel-qat-initcontainer:0.30.0
|
initImage: intel/intel-qat-initcontainer:0.31.0
|
||||||
dpdkDriver: vfio-pci
|
dpdkDriver: vfio-pci
|
||||||
kernelVfDrivers:
|
kernelVfDrivers:
|
||||||
- 4xxxvf
|
- 4xxxvf
|
||||||
|
@ -3,7 +3,7 @@ kind: SgxDevicePlugin
|
|||||||
metadata:
|
metadata:
|
||||||
name: sgxdeviceplugin-sample
|
name: sgxdeviceplugin-sample
|
||||||
spec:
|
spec:
|
||||||
image: intel/intel-sgx-plugin:0.30.0
|
image: intel/intel-sgx-plugin:0.31.0
|
||||||
enclaveLimit: 110
|
enclaveLimit: 110
|
||||||
provisionLimit: 110
|
provisionLimit: 110
|
||||||
logLevel: 4
|
logLevel: 4
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: compress-perf
|
- name: compress-perf
|
||||||
image: intel/crypto-perf:devel
|
image: intel/crypto-perf:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TESTCMD
|
- name: TESTCMD
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: compress-perf
|
- name: compress-perf
|
||||||
image: intel/crypto-perf:devel
|
image: intel/crypto-perf:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TESTCMD
|
- name: TESTCMD
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: crypto-perf
|
- name: crypto-perf
|
||||||
image: intel/crypto-perf:devel
|
image: intel/crypto-perf:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TESTCMD
|
- name: TESTCMD
|
||||||
|
@ -5,7 +5,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: crypto-perf
|
- name: crypto-perf
|
||||||
image: intel/crypto-perf:devel
|
image: intel/crypto-perf:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TESTCMD
|
- name: TESTCMD
|
||||||
|
@ -24,7 +24,7 @@ spec:
|
|||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
privileged: true
|
privileged: true
|
||||||
image: intel/intel-qat-plugin:devel
|
image: intel/intel-qat-plugin:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args: ["-mode", "kernel"]
|
args: ["-mode", "kernel"]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
@ -30,7 +30,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-qat-plugin:devel
|
image: intel/intel-qat-plugin:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
type: "container_device_plugin_t"
|
type: "container_device_plugin_t"
|
||||||
|
@ -12,7 +12,7 @@ spec:
|
|||||||
valueFrom:
|
valueFrom:
|
||||||
fieldRef:
|
fieldRef:
|
||||||
fieldPath: spec.nodeName
|
fieldPath: spec.nodeName
|
||||||
image: intel/intel-qat-initcontainer:devel
|
image: intel/intel-qat-initcontainer:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
privileged: true
|
privileged: true
|
||||||
|
@ -16,7 +16,7 @@ spec:
|
|||||||
control-plane: controller-manager
|
control-plane: controller-manager
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: intel/intel-sgx-admissionwebhook:devel
|
- image: intel/intel-sgx-admissionwebhook:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
name: manager
|
name: manager
|
||||||
securityContext:
|
securityContext:
|
||||||
|
@ -14,7 +14,7 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
-
|
-
|
||||||
name: intelsgx-demo-job-1
|
name: intelsgx-demo-job-1
|
||||||
image: intel/sgx-sdk-demo:devel
|
image: intel/sgx-sdk-demo:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
workingDir: "/opt/intel/sgx-sample-app/"
|
workingDir: "/opt/intel/sgx-sample-app/"
|
||||||
command: ["/opt/intel/sgx-sample-app/sgx-sample-app"]
|
command: ["/opt/intel/sgx-sample-app/sgx-sample-app"]
|
||||||
|
@ -7,7 +7,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: intelsgx-demo-job-1
|
- name: intelsgx-demo-job-1
|
||||||
image: intel/sgx-sdk-demo:devel
|
image: intel/sgx-sdk-demo:0.31.0
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: qplconf
|
- name: qplconf
|
||||||
mountPath: /etc/sgx_default_qcnl.conf
|
mountPath: /etc/sgx_default_qcnl.conf
|
||||||
|
@ -21,7 +21,7 @@ spec:
|
|||||||
automountServiceAccountToken: false
|
automountServiceAccountToken: false
|
||||||
containers:
|
containers:
|
||||||
- name: intel-sgx-plugin
|
- name: intel-sgx-plugin
|
||||||
image: intel/intel-sgx-plugin:devel
|
image: intel/intel-sgx-plugin:0.31.0
|
||||||
securityContext:
|
securityContext:
|
||||||
seLinuxOptions:
|
seLinuxOptions:
|
||||||
type: "container_device_plugin_t"
|
type: "container_device_plugin_t"
|
||||||
|
@ -7,7 +7,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: intel-sgx-initcontainer
|
- name: intel-sgx-initcontainer
|
||||||
image: intel/intel-sgx-initcontainer:devel
|
image: intel/intel-sgx-initcontainer:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
|
@ -16,7 +16,7 @@ spec:
|
|||||||
serviceAccountName: sgx-plugin
|
serviceAccountName: sgx-plugin
|
||||||
containers:
|
containers:
|
||||||
- name: sgx-node-init
|
- name: sgx-node-init
|
||||||
image: intel/intel-sgx-initcontainer:devel
|
image: intel/intel-sgx-initcontainer:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command:
|
command:
|
||||||
- /usr/local/bin/sgx-sw/intel-sgx-epchook
|
- /usr/local/bin/sgx-sw/intel-sgx-epchook
|
||||||
|
@ -41,7 +41,7 @@ spec:
|
|||||||
httpGet:
|
httpGet:
|
||||||
scheme: HTTPS
|
scheme: HTTPS
|
||||||
- name: xelink-sidecar
|
- name: xelink-sidecar
|
||||||
image: intel/intel-xpumanager-sidecar:devel
|
image: intel/intel-xpumanager-sidecar:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- -v=2
|
- -v=2
|
||||||
|
@ -13,7 +13,7 @@ spec:
|
|||||||
path: "/etc/kubernetes/node-feature-discovery/features.d/"
|
path: "/etc/kubernetes/node-feature-discovery/features.d/"
|
||||||
containers:
|
containers:
|
||||||
- name: xelink-sidecar
|
- name: xelink-sidecar
|
||||||
image: intel/intel-xpumanager-sidecar:devel
|
image: intel/intel-xpumanager-sidecar:0.31.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- -v=2
|
- -v=2
|
||||||
|
@ -202,7 +202,7 @@ func TestNewDaemonSetFPGA(t *testing.T) {
|
|||||||
|
|
||||||
plugin := &devicepluginv1.FpgaDevicePlugin{
|
plugin := &devicepluginv1.FpgaDevicePlugin{
|
||||||
Spec: devicepluginv1.FpgaDevicePluginSpec{
|
Spec: devicepluginv1.FpgaDevicePluginSpec{
|
||||||
InitImage: "intel/intel-fpga-initcontainer:devel",
|
InitImage: "intel/intel-fpga-initcontainer:0.31.0",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
plugin.Name = "testing"
|
plugin.Name = "testing"
|
||||||
|
@ -38,7 +38,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ImageMinVersion = versionutil.MustParseSemantic("0.30.0")
|
ImageMinVersion = versionutil.MustParseSemantic("0.31.0")
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -136,7 +136,7 @@ func runDevicePlugin(ctx context.Context, fmw *framework.Framework, pluginKustom
|
|||||||
|
|
||||||
func runTestCase(ctx context.Context, fmw *framework.Framework, pluginMode, podResource, cmd1, cmd2 string) {
|
func runTestCase(ctx context.Context, fmw *framework.Framework, pluginMode, podResource, cmd1, cmd2 string) {
|
||||||
resource := v1.ResourceName(podResource)
|
resource := v1.ResourceName(podResource)
|
||||||
image := "intel/opae-nlb-demo:devel"
|
image := "intel/opae-nlb-demo:0.31.0"
|
||||||
|
|
||||||
ginkgo.By("submitting a pod requesting correct FPGA resources")
|
ginkgo.By("submitting a pod requesting correct FPGA resources")
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ func runCpaSampleCode(ctx context.Context, f *framework.Framework, runTests int,
|
|||||||
Containers: []v1.Container{
|
Containers: []v1.Container{
|
||||||
{
|
{
|
||||||
Name: "openssl-qat-engine",
|
Name: "openssl-qat-engine",
|
||||||
Image: "intel/openssl-qat-engine:devel",
|
Image: "intel/openssl-qat-engine:0.31.0",
|
||||||
ImagePullPolicy: "IfNotPresent",
|
ImagePullPolicy: "IfNotPresent",
|
||||||
Command: []string{"cpa_sample_code", "runTests=" + strconv.Itoa(runTests), "signOfLife=1"},
|
Command: []string{"cpa_sample_code", "runTests=" + strconv.Itoa(runTests), "signOfLife=1"},
|
||||||
SecurityContext: &v1.SecurityContext{
|
SecurityContext: &v1.SecurityContext{
|
||||||
|
@ -100,7 +100,7 @@ func describe() {
|
|||||||
Containers: []v1.Container{
|
Containers: []v1.Container{
|
||||||
{
|
{
|
||||||
Name: "testcontainer",
|
Name: "testcontainer",
|
||||||
Image: "intel/sgx-sdk-demo:devel",
|
Image: "intel/sgx-sdk-demo:0.31.0",
|
||||||
WorkingDir: "/opt/intel/sgx-sample-app/",
|
WorkingDir: "/opt/intel/sgx-sample-app/",
|
||||||
Command: []string{"/opt/intel/sgx-sample-app/sgx-sample-app"},
|
Command: []string{"/opt/intel/sgx-sample-app/sgx-sample-app"},
|
||||||
Resources: v1.ResourceRequirements{
|
Resources: v1.ResourceRequirements{
|
||||||
|
Loading…
Reference in New Issue
Block a user