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'

0 commit comments

Comments
 (0)