Skip to content

Commit 6b407d1

Browse files
authored
Merge pull request #1855 from tkatila/prep-0.31
Release 0.31 preparation
2 parents b505897 + bcd7612 commit 6b407d1

File tree

69 files changed

+88
-87
lines changed

Some content is hidden

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

69 files changed

+88
-87
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.28
87
- release-0.29
98
- release-0.30
9+
- release-0.31
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.28
51-
- name: Build release-0.28
50+
ref: release-0.29
51+
- name: Build release-0.29
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.28
57+
mv _build/html $HOME/output/0.29
5858
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.29
62-
- name: Build release-0.29
61+
ref: release-0.30
62+
- name: Build release-0.30
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.29
68+
mv _build/html $HOME/output/0.30
6969
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.30
73-
- name: Build release-0.30
72+
ref: release-0.31
73+
- name: Build release-0.31
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.30
79+
mv _build/html $HOME/output/0.31
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.31.0
141141
export TAG
142142

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

README.md

Lines changed: 4 additions & 3 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.30 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.30/).
11+
The [v0.31 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.31/).
1313

1414
Table of Contents
1515

@@ -261,9 +261,10 @@ matching Kubernetes versions are listed below:
261261

262262
| Branch | Kubernetes branch/version | Status |
263263
|:------------------|:-------------------------------|:------------|
264+
| release-0.31 | Kubernetes 1.31 branch v1.31.x | supported |
264265
| release-0.30 | Kubernetes 1.30 branch v1.30.x | supported |
265266
| release-0.29 | Kubernetes 1.29 branch v1.29.x | supported |
266-
| release-0.28 | Kubernetes 1.28 branch v1.28.x | supported |
267+
| release-0.28 | Kubernetes 1.28 branch v1.28.x | unsupported |
267268
| release-0.27 | Kubernetes 1.27 branch v1.27.x | unsupported |
268269
| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported |
269270
| release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported |

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.31.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5757
###
5858
FROM ${FINAL_BASE}
5959
LABEL vendor='Intel®'
60-
LABEL version='devel'
60+
LABEL version='0.31.0'
6161
LABEL release='1'
6262
COPY --from=builder /install_root /
6363
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.31.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.31.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.31.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
@@ -83,7 +83,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
8383
###
8484
FROM ${FINAL_BASE}
8585
LABEL vendor='Intel®'
86-
LABEL version='devel'
86+
LABEL version='0.31.0'
8787
LABEL release='1'
8888
LABEL name='intel-fpga-initcontainer'
8989
LABEL summary='Intel® FPGA programming CDI 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.31.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)