Skip to content

Commit 63cfcd2

Browse files
authored
Merge pull request #1215 from mythi/PR-2022-075
release-0.25: prepare for the release
2 parents b690ca3 + ef6ecb7 commit 63cfcd2

File tree

64 files changed

+85
-84
lines changed

Some content is hidden

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

64 files changed

+85
-84
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.22
87
- release-0.23
98
- release-0.24
9+
- release-0.25
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.22
51-
- name: Build release-0.22
50+
ref: release-0.23
51+
- name: Build release-0.23
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.22
57+
mv _build/html $HOME/output/0.23
5858
- uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.23
62-
- name: Build release-0.23
61+
ref: release-0.24
62+
- name: Build release-0.24
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.23
68+
mv _build/html $HOME/output/0.24
6969
- uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.24
73-
- name: Build release-0.24
72+
ref: release-0.25
73+
- name: Build release-0.25
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.24
79+
mv _build/html $HOME/output/0.25
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.25.0"
146146
}
147147
}
148148
}

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ clean:
138138

139139
ORG?=intel
140140
REG?=$(ORG)/
141-
TAG?=devel
141+
TAG?=0.25.0
142142
export TAG
143143

144144
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.24 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.24/).
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/).
1212

1313
Table of Contents
1414

@@ -257,9 +257,10 @@ matching Kubernetes versions are listed below:
257257

258258
| Branch | Kubernetes branch/version | Status |
259259
|:------------------|:-------------------------------|:------------|
260+
| release-0.25 | Kubernetes 1.25 branch v1.25.x | supported |
260261
| release-0.24 | Kubernetes 1.24 branch v1.24.x | supported |
261262
| release-0.23 | Kubernetes 1.23 branch v1.23.x | supported |
262-
| release-0.22 | Kubernetes 1.22 branch v1.22.x | supported |
263+
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
263264
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |
264265
| release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported |
265266
| release-0.19 | Kubernetes 1.19 branch v1.19.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.25.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.25.0
5959
LABEL release='1'
6060
COPY --from=builder /install_root /
6161
COPY demo/dlb-init.sh /usr/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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.0
5959
LABEL release='1'
6060
LABEL name='intel-vpu-plugin'
6161
LABEL summary='Intel® VPU device plugin for Kubernetes'
+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.25.0
33
LABEL release='1'

demo/crypto-perf/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The main branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:1d865a4614b6c362f6a0aeabca7773e66cbcf0a7fe18957c71e5a6704f28d62c
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=37450"
1414

1515
RUN mkdir /install_root && \
1616
swupd os-install \

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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.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.25.0
1616
securityContext:
1717
readOnlyRootFilesystem: true
1818
privileged: true

0 commit comments

Comments
 (0)