Skip to content

Commit d7a14ab

Browse files
authored
Merge pull request #1315 from mythi/PR-2023-006
release-0.26: update images and docs to point to 0.26
2 parents 76e798c + f5514b4 commit d7a14ab

File tree

65 files changed

+87
-86
lines changed

Some content is hidden

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

65 files changed

+87
-86
lines changed

.github/workflows/publish.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- release-0.23
87
- release-0.24
98
- release-0.25
9+
- release-0.26
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@v3
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.23
51-
- name: Build release-0.23
50+
ref: release-0.24
51+
- name: Build release-0.24
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.23
57+
mv _build/html $HOME/output/0.24
5858
- uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.24
62-
- name: Build release-0.24
61+
ref: release-0.25
62+
- name: Build release-0.25
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.24
68+
mv _build/html $HOME/output/0.25
6969
- uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.25
73-
- name: Build release-0.25
72+
ref: release-0.26
73+
- name: Build release-0.26
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.25
79+
mv _build/html $HOME/output/0.26
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ pipeline {
142142
stage('make test-with-kind') {
143143
steps {
144144
dir(path: "$REPO_DIR") {
145-
sh "make test-with-kind REG=intel/ TAG=devel"
145+
sh "make test-with-kind REG=intel/ TAG=0.26.0"
146146
}
147147
}
148148
}

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ clean:
136136

137137
ORG?=intel
138138
REG?=$(ORG)/
139-
TAG?=devel
139+
TAG?=0.26.0
140140
export TAG
141141

142142
e2e-fpga:

README.md

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

10-
The [v0.25 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
11-
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.25/).
10+
The [v0.26 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
11+
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.26/).
1212

1313
Table of Contents
1414

@@ -262,9 +262,10 @@ matching Kubernetes versions are listed below:
262262

263263
| Branch | Kubernetes branch/version | Status |
264264
|:------------------|:-------------------------------|:------------|
265+
| release-0.26 | Kubernetes 1.26 branch v1.26.x | supported |
265266
| release-0.25 | Kubernetes 1.25 branch v1.25.x | supported |
266267
| release-0.24 | Kubernetes 1.24 branch v1.24.x | supported |
267-
| release-0.23 | Kubernetes 1.23 branch v1.23.x | supported |
268+
| release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported |
268269
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
269270
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |
270271
| release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported |

build/docker/intel-deviceplugin-operator.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-deviceplugin-operator'
6262
LABEL summary='Intel® device plugin operator for Kubernetes'

build/docker/intel-dlb-initcontainer.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5555
###
5656
FROM ${FINAL_BASE}
5757
LABEL vendor='Intel®'
58-
LABEL version='devel'
58+
LABEL version='0.26.0'
5959
LABEL release='1'
6060
COPY --from=builder /install_root /
6161
COPY demo/dlb-init.sh /usr/local/bin/

build/docker/intel-dlb-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_dlb_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-dlb-plugin'
6262
LABEL summary='Intel® DLB device plugin for Kubernetes'

build/docker/intel-dsa-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_dsa_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-dsa-plugin'
6262
LABEL summary='Intel® DSA device plugin for Kubernetes'

build/docker/intel-fpga-admissionwebhook.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_fpga_admissionwebhook"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-fpga-admissionwebhook'
6262
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'

build/docker/intel-fpga-initcontainer.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
8686
###
8787
FROM ${FINAL_BASE}
8888
LABEL vendor='Intel®'
89-
LABEL version='devel'
89+
LABEL version='0.26.0'
9090
LABEL release='1'
9191
LABEL name='intel-fpga-initcontainer'
9292
LABEL summary='Intel® FPGA programming CRI hook for Kubernetes'

build/docker/intel-fpga-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_fpga_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-fpga-plugin'
6262
LABEL summary='Intel® FPGA device plugin for Kubernetes'

build/docker/intel-gpu-initcontainer.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
6969
###
7070
FROM ${FINAL_BASE}
7171
LABEL vendor='Intel®'
72-
LABEL version='devel'
72+
LABEL version='0.26.0'
7373
LABEL release='1'
7474
LABEL name='intel-gpu-initcontainer'
7575
LABEL summary='Intel® GPU NFD hook for Kubernetes'

build/docker/intel-gpu-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_gpu_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-gpu-plugin'
6262
LABEL summary='Intel® GPU device plugin for Kubernetes'

build/docker/intel-iaa-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_iaa_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-iaa-plugin'
6262
LABEL summary='Intel® IAA device plugin for Kubernetes'

build/docker/intel-qat-initcontainer.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5555
###
5656
FROM ${FINAL_BASE}
5757
LABEL vendor='Intel®'
58-
LABEL version='devel'
58+
LABEL version='0.26.0'
5959
LABEL release='1'
6060
LABEL name='intel-qat-initcontainer'
6161
LABEL summary='Intel® QAT initcontainer for Kubernetes'

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-ku
5757
else mkdir -p /install_root/licenses/$CMD/go-licenses/ && cd licenses/$CMD && cp -r * /install_root/licenses/$CMD/go-licenses/ ; fi
5858
FROM debian:unstable-slim
5959
LABEL vendor='Intel®'
60-
LABEL version='devel'
60+
LABEL version='0.26.0'
6161
LABEL release='1'
6262
LABEL name='intel-qat-plugin-kerneldrv'
6363
LABEL summary='Intel® QAT device plugin kerneldrv for Kubernetes'

build/docker/intel-qat-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_qat_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-qat-plugin'
6262
LABEL summary='Intel® QAT device plugin for Kubernetes'

build/docker/intel-sgx-admissionwebhook.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_sgx_admissionwebhook"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-sgx-admissionwebhook'
6262
LABEL summary='Intel® SGX admission controller webhook for Kubernetes'

build/docker/intel-sgx-initcontainer.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
6969
###
7070
FROM ${FINAL_BASE}
7171
LABEL vendor='Intel®'
72-
LABEL version='devel'
72+
LABEL version='0.26.0'
7373
LABEL release='1'
7474
LABEL name='intel-sgx-initcontainer'
7575
LABEL summary='Intel® SGX NFD hook for Kubernetes'

build/docker/intel-sgx-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_sgx_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-sgx-plugin'
6262
LABEL summary='Intel® SGX device plugin for Kubernetes'

build/docker/intel-vpu-plugin.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN install -D ${DIR}/LICENSE /install_root/licenses/intel-device-plugins-for-ku
5555
else mkdir -p /install_root/licenses/$CMD/go-licenses/ && cd licenses/$CMD && cp -r * /install_root/licenses/$CMD/go-licenses/ ; fi
5656
FROM debian:unstable-slim
5757
LABEL vendor='Intel®'
58-
LABEL version='devel'
58+
LABEL version='0.26.0'
5959
LABEL release='1'
6060
LABEL name='intel-vpu-plugin'
6161
LABEL summary='Intel® VPU device plugin for Kubernetes'

build/docker/intel-xpumanager-sidecar.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_xpumanager_sidecar"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.26.0'
6060
LABEL release='1'
6161
LABEL name='intel-xpumanager-sidecar'
6262
LABEL summary='Intel® xpumanager sidecar'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
LABEL vendor='Intel®'
2-
LABEL version='devel'
2+
LABEL version='0.26.0'
33
LABEL release='1'

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

+1-1
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.26.0
1010
imagePullPolicy: IfNotPresent
1111
resources:
1212
limits:

demo/dlb-libdlb-demo-pod.yaml

+2-2
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.26.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.26.0
2222
imagePullPolicy: IfNotPresent
2323
resources:
2424
limits:

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

+1-1
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.26.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

+1-1
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.26.0
1111
imagePullPolicy: IfNotPresent
1212
resources:
1313
limits:

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

+1-1
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.26.0
1111
command: [ "/bin/bash", "-c", "cd /test && /bin/bash -e ./iaa_user_test_runner.sh" ]
1212
imagePullPolicy: IfNotPresent
1313
resources:

demo/intelfpga-job.yaml

+1-1
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.26.0
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/openssl-qat-engine-cpa-sample-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: openssl-qat-engine
10-
image: intel/openssl-qat-engine:devel
10+
image: intel/openssl-qat-engine:0.26.0
1111
imagePullPolicy: IfNotPresent
1212
command: [ "cpa_sample_code", "runTests=4", "signOfLife=1" ]
1313
securityContext:

demo/test-fpga-orchestrated.yaml

+1-1
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.26.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

demo/test-fpga-preprogrammed.yaml

+1-1
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.26.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

deployments/dlb_plugin/base/intel-dlb-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
valueFrom:
2222
fieldRef:
2323
fieldPath: spec.nodeName
24-
image: intel/intel-dlb-plugin:devel
24+
image: intel/intel-dlb-plugin:0.26.0
2525
imagePullPolicy: IfNotPresent
2626
securityContext:
2727
readOnlyRootFilesystem: true

deployments/dlb_plugin/overlays/dlb_initcontainer/dlb_initcontainer.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
spec:
88
initContainers:
99
- name: intel-dlb-initcontainer
10-
image: intel/intel-dlb-initcontainer:devel
10+
image: intel/intel-dlb-initcontainer:0.26.0
1111
securityContext:
1212
readOnlyRootFilesystem: true
1313
privileged: true

deployments/dsa_plugin/base/intel-dsa-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
valueFrom:
2222
fieldRef:
2323
fieldPath: spec.nodeName
24-
image: intel/intel-dsa-plugin:devel
24+
image: intel/intel-dsa-plugin:0.26.0
2525
imagePullPolicy: IfNotPresent
2626
securityContext:
2727
readOnlyRootFilesystem: true

deployments/dsa_plugin/overlays/dsa_initcontainer/dsa_initcontainer.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
valueFrom:
1313
fieldRef:
1414
fieldPath: spec.nodeName
15-
image: intel/intel-idxd-config-initcontainer:devel
15+
image: intel/intel-idxd-config-initcontainer:0.26.0
1616
securityContext:
1717
readOnlyRootFilesystem: true
1818
privileged: true

deployments/fpga_admissionwebhook/manager/manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
control-plane: controller-manager
1717
spec:
1818
containers:
19-
- image: intel/intel-fpga-admissionwebhook:devel
19+
- image: intel/intel-fpga-admissionwebhook:0.26.0
2020
imagePullPolicy: IfNotPresent
2121
name: manager
2222
securityContext:

0 commit comments

Comments
 (0)