Skip to content

Commit 49d59d4

Browse files
authored
Merge pull request #1631 from tkatila/prep-0.29
Release 0.29.0
2 parents 7c12c0d + 105c708 commit 49d59d4

File tree

71 files changed

+96
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+96
-94
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- release-0.26
87
- release-0.27
98
- release-0.28
9+
- release-0.29
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.26
51-
- name: Build release-0.26
50+
ref: release-0.27
51+
- name: Build release-0.27
5252
run: |
5353
GITHUB_SHA=$(git rev-parse HEAD)
5454
export GITHUB_SHA
5555
rm -rf _work/venv
5656
make vhtml
57-
mv _build/html $HOME/output/0.26
57+
mv _build/html $HOME/output/0.27
5858
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.27
62-
- name: Build release-0.27
61+
ref: release-0.28
62+
- name: Build release-0.28
6363
run: |
6464
GITHUB_SHA=$(git rev-parse HEAD)
6565
export GITHUB_SHA
6666
rm -rf _work/venv
6767
make vhtml
68-
mv _build/html $HOME/output/0.27
68+
mv _build/html $HOME/output/0.28
6969
- uses: actions/checkout@v4
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.28
73-
- name: Build release-0.28
72+
ref: release-0.29
73+
- name: Build release-0.29
7474
run: |
7575
GITHUB_SHA=$(git rev-parse HEAD)
7676
export GITHUB_SHA
7777
rm -rf _work/venv
7878
make vhtml
79-
mv _build/html $HOME/output/0.28
79+
mv _build/html $HOME/output/0.29
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ clean:
137137

138138
ORG?=intel
139139
REG?=$(ORG)/
140-
TAG?=devel
140+
TAG?=0.29.0
141141
export TAG
142142

143143
ifeq ($(E2E_LEVEL), $(filter $(E2E_LEVEL), full))

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ This repository contains a framework for developing plugins for the Kubernetes
88
[device plugins framework](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/),
99
along with a number of device plugin implementations utilizing that framework.
1010

11-
The [v0.28 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
12-
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.28/).
11+
The [v0.29 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
12+
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.29/).
1313

1414
Table of Contents
1515

@@ -252,20 +252,16 @@ matching Kubernetes versions are listed below:
252252

253253
| Branch | Kubernetes branch/version | Status |
254254
|:------------------|:-------------------------------|:------------|
255+
| release-0.29 | Kubernetes 1.29 branch v1.29.x | supported |
255256
| release-0.28 | Kubernetes 1.28 branch v1.28.x | supported |
256257
| release-0.27 | Kubernetes 1.27 branch v1.27.x | supported |
257-
| release-0.26 | Kubernetes 1.26 branch v1.26.x | supported |
258+
| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported |
258259
| release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported |
259260
| release-0.24 | Kubernetes 1.24 branch v1.24.x | unsupported |
260261
| release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported |
261262
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
262263
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |
263264
| release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported |
264-
| release-0.19 | Kubernetes 1.19 branch v1.19.x | unsupported |
265-
| release-0.18 | Kubernetes 1.18 branch v1.18.x | unsupported |
266-
| release-0.17 | Kubernetes 1.17 branch v1.17.x | unsupported |
267-
| release-0.15 | Kubernetes 1.15 branch v1.15.x | unsupported |
268-
| release-0.11 | Kubernetes 1.11 branch v1.11.x | unsupported |
269265

270266
*Note:* Device plugins leverage the Kubernetes v1 API. The API itself is GA (generally available) and [does not change](https://kubernetes.io/docs/concepts/overview/kubernetes-api/#api-changes) between Kubernetes versions. One does not necessarily need to use the latest Kubernetes cluster with the latest device plugin version. Using a newer device plugins release should work without issues on an older Kubernetes cluster. One possible exception to this are the device plugins CRDs that can vary between versions.
271267

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-deviceplugin-operator'
6565
LABEL summary='Intel® device plugin operator for Kubernetes'

build/docker/intel-dlb-initcontainer.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ FROM ${GOLANG_BASE} as builder
3939
ARG DIR=/intel-device-plugins-for-kubernetes
4040
WORKDIR $DIR
4141
COPY . .
42+
RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-kubernetes/LICENSE
4243
ARG TOYBOX_VERSION="0.8.10"
4344
ARG TOYBOX_SHA256="3c31e235fe87e74e6c6cf7cd7299fcbffb0f4a4834dae607aa26bb4f1583549a"
4445
ARG ROOT=/install_root
@@ -56,7 +57,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5657
###
5758
FROM ${FINAL_BASE}
5859
LABEL vendor='Intel®'
59-
LABEL version='devel'
60+
LABEL version='0.29.0'
6061
LABEL release='1'
6162
COPY --from=builder /install_root /
6263
COPY demo/dlb-init.sh /usr/local/bin/

build/docker/intel-dlb-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_dlb_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-dlb-plugin'
6565
LABEL summary='Intel® DLB device plugin for Kubernetes'

build/docker/intel-dsa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_dsa_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-dsa-plugin'
6565
LABEL summary='Intel® DSA device plugin for Kubernetes'

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_fpga_admissionwebhook"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-fpga-admissionwebhook'
6565
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
9090
###
9191
FROM ${FINAL_BASE}
9292
LABEL vendor='Intel®'
93-
LABEL version='devel'
93+
LABEL version='0.29.0'
9494
LABEL release='1'
9595
LABEL name='intel-fpga-initcontainer'
9696
LABEL summary='Intel® FPGA programming CRI hook for Kubernetes'

build/docker/intel-fpga-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_fpga_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-fpga-plugin'
6565
LABEL summary='Intel® FPGA device plugin for Kubernetes'

build/docker/intel-gpu-fakedev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_gpu_fakedev"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-gpu-fakedev'
6565
LABEL summary='Fake device file generator for Intel® GPU plugin'

build/docker/intel-gpu-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
7373
###
7474
FROM ${FINAL_BASE}
7575
LABEL vendor='Intel®'
76-
LABEL version='devel'
76+
LABEL version='0.29.0'
7777
LABEL release='1'
7878
LABEL name='intel-gpu-initcontainer'
7979
LABEL summary='Intel® GPU NFD hook for Kubernetes'

build/docker/intel-gpu-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_gpu_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-gpu-plugin'
6565
LABEL summary='Intel® GPU device plugin for Kubernetes'

build/docker/intel-iaa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_iaa_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-iaa-plugin'
6565
LABEL summary='Intel® IAA device plugin for Kubernetes'

build/docker/intel-idxd-config-initcontainer.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
## limitations under the License.
1616
###
1717
FROM debian:unstable-slim
18+
COPY ./LICENSE /licenses/intel-device-plugins-for-kubernetes/LICENSE
1819
RUN apt-get update && apt-get install -y --no-install-recommends accel-config jq && rm -rf /var/lib/apt/lists/\*
1920
COPY demo/idxd-init.sh /usr/local/bin/
2021
COPY demo/dsa.conf /idxd-init/

build/docker/intel-qat-initcontainer.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ FROM ${GOLANG_BASE} as builder
3939
ARG DIR=/intel-device-plugins-for-kubernetes
4040
WORKDIR $DIR
4141
COPY . .
42+
RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-kubernetes/LICENSE
4243
ARG TOYBOX_VERSION="0.8.10"
4344
ARG TOYBOX_SHA256="3c31e235fe87e74e6c6cf7cd7299fcbffb0f4a4834dae607aa26bb4f1583549a"
4445
ARG ROOT=/install_root
@@ -56,7 +57,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5657
###
5758
FROM ${FINAL_BASE}
5859
LABEL vendor='Intel®'
59-
LABEL version='devel'
60+
LABEL version='0.29.0'
6061
LABEL release='1'
6162
LABEL name='intel-qat-initcontainer'
6263
LABEL summary='Intel® QAT initcontainer for Kubernetes'

build/docker/intel-qat-plugin-kerneldrv.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-ku
6060
else mkdir -p /install_root/licenses/$CMD/go-licenses/ && cd licenses/$CMD && cp -r * /install_root/licenses/$CMD/go-licenses/ ; fi
6161
FROM debian:unstable-slim
6262
LABEL vendor='Intel®'
63-
LABEL version='devel'
63+
LABEL version='0.29.0'
6464
LABEL release='1'
6565
LABEL name='intel-qat-plugin-kerneldrv'
6666
LABEL summary='Intel® QAT device plugin kerneldrv for Kubernetes'

build/docker/intel-qat-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_qat_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-qat-plugin'
6565
LABEL summary='Intel® QAT device plugin for Kubernetes'

build/docker/intel-sgx-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_sgx_admissionwebhook"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-sgx-admissionwebhook'
6565
LABEL summary='Intel® SGX admission controller webhook for Kubernetes'

build/docker/intel-sgx-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
7373
###
7474
FROM ${FINAL_BASE}
7575
LABEL vendor='Intel®'
76-
LABEL version='devel'
76+
LABEL version='0.29.0'
7777
LABEL release='1'
7878
LABEL name='intel-sgx-initcontainer'
7979
LABEL summary='Intel® SGX NFD hook for Kubernetes'

build/docker/intel-sgx-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_sgx_device_plugin"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-sgx-plugin'
6565
LABEL summary='Intel® SGX device plugin for Kubernetes'

build/docker/intel-xpumanager-sidecar.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
COPY --from=builder /install_root /
6060
ENTRYPOINT ["/usr/local/bin/intel_xpumanager_sidecar"]
6161
LABEL vendor='Intel®'
62-
LABEL version='devel'
62+
LABEL version='0.29.0'
6363
LABEL release='1'
6464
LABEL name='intel-xpumanager-sidecar'
6565
LABEL summary='Intel® xpumanager sidecar'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
LABEL vendor='Intel®'
2-
LABEL version='devel'
2+
LABEL version='0.29.0'
33
LABEL release='1'

build/docker/templates/intel-dlb-initcontainer.Dockerfile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ARG DIR=/intel-device-plugins-for-kubernetes
77
WORKDIR $DIR
88
COPY . .
99

10+
RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-kubernetes/LICENSE
1011
#include "toybox_build.docker"
1112

1213
FROM ${FINAL_BASE}

build/docker/templates/intel-idxd-config-initcontainer.Dockerfile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM debian:unstable-slim
22

3+
COPY ./LICENSE /licenses/intel-device-plugins-for-kubernetes/LICENSE
34
RUN apt-get update && apt-get install -y --no-install-recommends accel-config jq && rm -rf /var/lib/apt/lists/\*
45

56
COPY demo/idxd-init.sh /usr/local/bin/

build/docker/templates/intel-qat-initcontainer.Dockerfile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ARG DIR=/intel-device-plugins-for-kubernetes
77
WORKDIR $DIR
88
COPY . .
99

10+
RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-kubernetes/LICENSE
1011
#include "toybox_build.docker"
1112

1213
FROM ${FINAL_BASE}

demo/dlb-libdlb-demo-pf-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: dlb-libdlb-demo-pf-pod
9-
image: intel/dlb-libdlb-demo:devel
9+
image: intel/dlb-libdlb-demo:0.29.0
1010
imagePullPolicy: IfNotPresent
1111
resources:
1212
limits:

demo/dlb-libdlb-demo-pod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: pf
9-
image: intel/dlb-libdlb-demo:devel
9+
image: intel/dlb-libdlb-demo:0.29.0
1010
imagePullPolicy: IfNotPresent
1111
resources:
1212
limits:
@@ -18,7 +18,7 @@ spec:
1818
cpu: 1
1919
memory: 200Mi
2020
- name: vf
21-
image: intel/dlb-libdlb-demo:devel
21+
image: intel/dlb-libdlb-demo:0.29.0
2222
imagePullPolicy: IfNotPresent
2323
resources:
2424
limits:

demo/dlb-libdlb-demo-vf-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: dlb-libdlb-demo-vf-pod
9-
image: intel/dlb-libdlb-demo:devel
9+
image: intel/dlb-libdlb-demo:0.29.0
1010
command: [ "sh", "-c", "/usr/local/bin/dir_traffic -n 8 -w epoll -d $(ls /dev/dlb* | sed 's/\\/dev\\/dlb//')" ]
1111
imagePullPolicy: IfNotPresent
1212
resources:

demo/dsa-accel-config-demo-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: dsa-accel-config-demo
10-
image: intel/accel-config-demo:devel
10+
image: intel/accel-config-demo:0.29.0
1111
imagePullPolicy: IfNotPresent
1212
workingDir: "/usr/libexec/accel-config/test/"
1313
command:

demo/iaa-accel-config-demo-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: iaa-accel-config-demo
10-
image: intel/accel-config-demo:devel
10+
image: intel/accel-config-demo:0.29.0
1111
workingDir: "/usr/libexec/accel-config/test/"
1212
command:
1313
- "./iaa_user_test_runner.sh"

demo/intelfpga-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
restartPolicy: Never
1414
containers:
1515
- name: intelfpga-demo-job-1
16-
image: intel/opae-nlb-demo:devel
16+
image: intel/opae-nlb-demo:0.29.0
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/test-fpga-orchestrated.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: intel/opae-nlb-demo:devel
8+
image: intel/opae-nlb-demo:0.29.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

demo/test-fpga-preprogrammed.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: intel/opae-nlb-demo:devel
8+
image: intel/opae-nlb-demo:0.29.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

0 commit comments

Comments
 (0)