Skip to content

Commit 7c365e8

Browse files
authored
Merge pull request #1859 from tkatila/post-0.31-updates
Post 0.31 updates
2 parents b505897 + 94decfc commit 7c365e8

10 files changed

+27
-26
lines changed

Diff for: .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.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:

Diff for: README.md

+4-3
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 |

Diff for: deployments/operator/samples/deviceplugin_v1_dlbdeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ metadata:
99
# annotations:
1010
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
1111
spec:
12-
image: intel/intel-dlb-plugin:0.30.0
13-
initImage: intel/intel-dlb-initcontainer:0.30.0
12+
image: intel/intel-dlb-plugin:0.31.0
13+
initImage: intel/intel-dlb-initcontainer:0.31.0
1414
logLevel: 4
1515
nodeSelector:
1616
intel.feature.node.kubernetes.io/dlb: 'true'

Diff for: deployments/operator/samples/deviceplugin_v1_dsadeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: DsaDevicePlugin
33
metadata:
44
name: dsadeviceplugin-sample
55
spec:
6-
image: intel/intel-dsa-plugin:0.30.0
7-
initImage: intel/intel-idxd-config-initcontainer:0.30.0
6+
image: intel/intel-dsa-plugin:0.31.0
7+
initImage: intel/intel-idxd-config-initcontainer:0.31.0
88
sharedDevNum: 10
99
logLevel: 4
1010
nodeSelector:

Diff for: deployments/operator/samples/deviceplugin_v1_fpgadeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: FpgaDevicePlugin
33
metadata:
44
name: fpgadeviceplugin-sample
55
spec:
6-
image: intel/intel-fpga-plugin:0.30.0
7-
initImage: intel/intel-fpga-initcontainer:0.30.0
6+
image: intel/intel-fpga-plugin:0.31.0
7+
initImage: intel/intel-fpga-initcontainer:0.31.0
88
mode: region
99
logLevel: 4
1010
nodeSelector:

Diff for: deployments/operator/samples/deviceplugin_v1_gpudeviceplugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: GpuDevicePlugin
33
metadata:
44
name: gpudeviceplugin-sample
55
spec:
6-
image: intel/intel-gpu-plugin:0.30.0
6+
image: intel/intel-gpu-plugin:0.31.0
77
sharedDevNum: 10
88
logLevel: 4
99
enableMonitoring: true

Diff for: deployments/operator/samples/deviceplugin_v1_iaadeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: IaaDevicePlugin
33
metadata:
44
name: iaadeviceplugin-sample
55
spec:
6-
image: intel/intel-iaa-plugin:0.30.0
7-
initImage: intel/intel-idxd-config-initcontainer:0.30.0
6+
image: intel/intel-iaa-plugin:0.31.0
7+
initImage: intel/intel-idxd-config-initcontainer:0.31.0
88
sharedDevNum: 10
99
logLevel: 4
1010
nodeSelector:

Diff for: deployments/operator/samples/deviceplugin_v1_qatdeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ metadata:
99
# annotations:
1010
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
1111
spec:
12-
image: intel/intel-qat-plugin:0.30.0
13-
initImage: intel/intel-qat-initcontainer:0.30.0
12+
image: intel/intel-qat-plugin:0.31.0
13+
initImage: intel/intel-qat-initcontainer:0.31.0
1414
dpdkDriver: vfio-pci
1515
kernelVfDrivers:
1616
- 4xxxvf

Diff for: deployments/operator/samples/deviceplugin_v1_sgxdeviceplugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: SgxDevicePlugin
33
metadata:
44
name: sgxdeviceplugin-sample
55
spec:
6-
image: intel/intel-sgx-plugin:0.30.0
6+
image: intel/intel-sgx-plugin:0.31.0
77
enclaveLimit: 110
88
provisionLimit: 110
99
logLevel: 4

Diff for: pkg/controllers/reconciler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
)
3939

4040
var (
41-
ImageMinVersion = versionutil.MustParseSemantic("0.30.0")
41+
ImageMinVersion = versionutil.MustParseSemantic("0.31.0")
4242
)
4343

4444
const (

0 commit comments

Comments
 (0)