Skip to content

Commit f333145

Browse files
authored
Merge pull request #1441 from tkatila/release-0.27-prep
Release 0.27 creation
2 parents 819d302 + 64beeed commit f333145

File tree

67 files changed

+93
-92
lines changed

Some content is hidden

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

67 files changed

+93
-92
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.24
87
- release-0.25
98
- release-0.26
9+
- release-0.27
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.24
51-
- name: Build release-0.24
50+
ref: release-0.25
51+
- name: Build release-0.25
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.24
57+
mv _build/html $HOME/output/0.25
5858
- uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.25
62-
- name: Build release-0.25
61+
ref: release-0.26
62+
- name: Build release-0.26
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.25
68+
mv _build/html $HOME/output/0.26
6969
- uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.26
73-
- name: Build release-0.26
72+
ref: release-0.27
73+
- name: Build release-0.27
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.26
79+
mv _build/html $HOME/output/0.27
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.27.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.27.0
140140
export TAG
141141

142142
e2e-fpga:

README.md

+6-5
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.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/).
10+
The [v0.27 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.27/).
1212

1313
Table of Contents
1414

@@ -166,10 +166,10 @@ as a standalone [SGX Admission webhook image](cmd/sgx_admissionwebhook/README.md
166166
#### Intel SGX EPC memory registration
167167

168168
The Intel SGX EPC memory available on each node is registered as a Kubernetes extended resource using
169-
node-feature-discovery (NFD). A custom NFD source hook is installed as part of
169+
node-feature-discovery (NFD). An NFD Node Feature Rule is installed as part of
170170
[SGX device plugin](cmd/sgx_plugin/README.md)
171171
operator deployment and NFD is configured to register the Intel SGX EPC memory
172-
extended resource reported by the hook.
172+
extended resource.
173173

174174
Containers requesting Intel SGX EPC resources in the cluster use
175175
`sgx.intel.com/epc` resource which is of
@@ -262,9 +262,10 @@ matching Kubernetes versions are listed below:
262262

263263
| Branch | Kubernetes branch/version | Status |
264264
|:------------------|:-------------------------------|:------------|
265+
| release-0.27 | Kubernetes 1.27 branch v1.27.x | supported |
265266
| release-0.26 | Kubernetes 1.26 branch v1.26.x | supported |
266267
| release-0.25 | Kubernetes 1.25 branch v1.25.x | supported |
267-
| release-0.24 | Kubernetes 1.24 branch v1.24.x | supported |
268+
| release-0.24 | Kubernetes 1.24 branch v1.24.x | unsupported |
268269
| release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported |
269270
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
270271
| release-0.21 | Kubernetes 1.21 branch v1.21.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.27.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.27.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.27.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.27.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.27.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.27.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.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-fpga-plugin'
6262
LABEL summary='Intel® FPGA device plugin for Kubernetes'

build/docker/intel-gpu-fakedev.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_fakedev"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-gpu-fakedev'
6262
LABEL summary='Fake device file generator for Intel® GPU plugin'

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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.0'
33
LABEL release='1'

cmd/sgx_plugin/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Table of Contents
1919
The Intel SGX device plugin and related components allow workloads to use Intel SGX on
2020
platforms with SGX Flexible Launch Control enabled, e.g.,:
2121

22-
- 3rd Generation Intel® Xeon® Scalable Platform, code-named “Ice Lake”
22+
- 3rd/4th Generation Intel® Xeon® Scalable Platforms
2323
- Intel® Xeon® E3
2424
- Intel® NUC Kit NUC7CJYH
2525

@@ -122,7 +122,7 @@ $ kubectl apply -k 'https://github.com/intel/intel-device-plugins-for-kubernetes
122122
$ kubectl apply -k 'https://github.com/intel/intel-device-plugins-for-kubernetes/deployments/sgx_plugin/overlays/epc-nfd/'
123123
```
124124

125-
The second approach has a lesser deployment footprint. It does not require NFD, but a helper daemonset that creates `sgx.intel.com/capable='true'` node label and advertises EPC capacity to the API server.
125+
The second approach has a lesser deployment footprint. It does not require NFD, but a helper daemonset that creates `sgx.intel.com/capable='true'` node label and advertises EPC capacity directly to the API server.
126126

127127
The following kustomization is used for this approach:
128128
```bash

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.27.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.27.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.27.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.27.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.27.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.27.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.27.0
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/openssl-qat-engine/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM ubuntu:22.04 as builder
22

33
ARG QATLIB_VERSION="23.02.0"
4-
ARG QAT_ENGINE_VERSION="v0.6.19"
4+
ARG QAT_ENGINE_VERSION="v1.1.0"
55
ARG ASYNC_NGINX_VERSION="v0.5.0"
66
ARG IPSEC_MB_VERSION="v1.3"
7-
ARG IPP_CRYPTO_VERSION="ippcp_2021.7"
7+
ARG IPP_CRYPTO_VERSION="ippcp_2021.7.1"
88

99
RUN apt update && \
1010
env DEBIAN_FRONTEND=noninteractive apt install -y \
@@ -74,7 +74,7 @@ COPY --from=builder /usr/bin/*_sample* /usr/bin/
7474
COPY --from=builder /usr/lib/libqat.so.3.0.3 /usr/lib/
7575
COPY --from=builder /usr/lib/libusdm.so.0.1.0 /usr/lib/
7676
COPY --from=builder /usr/lib64/libIPSec_MB.so.1 /usr/lib/x86_64-linux-gnu/
77-
COPY --from=builder /usr/local/lib/libcrypto_mb.so.11.5 /usr/lib/x86_64-linux-gnu/
77+
COPY --from=builder /usr/local/lib/libcrypto_mb.so.11.6 /usr/lib/x86_64-linux-gnu/
7878
COPY --from=builder /usr/lib/x86_64-linux-gnu/engines-3/qatengine.so /usr/lib/x86_64-linux-gnu/engines-3/qatengine.so
7979
COPY --from=builder /var/www/ /var/www/
8080
COPY --from=builder /usr/lib64/nginx/* /usr/lib64/nginx/

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

0 commit comments

Comments
 (0)