Skip to content

update main with 0.31.1 release changes #1886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This repository contains a framework for developing plugins for the Kubernetes
[device plugins framework](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/),
along with a number of device plugin implementations utilizing that framework.

The [v0.31 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
The [v0.31.1 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.31/).

Table of Contents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ metadata:
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
spec:
image: intel/intel-dlb-plugin:0.31.0
initImage: intel/intel-dlb-initcontainer:0.31.0
image: intel/intel-dlb-plugin:0.31.1
initImage: intel/intel-dlb-initcontainer:0.31.1
logLevel: 4
nodeSelector:
intel.feature.node.kubernetes.io/dlb: 'true'
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: DsaDevicePlugin
metadata:
name: dsadeviceplugin-sample
spec:
image: intel/intel-dsa-plugin:0.31.0
initImage: intel/intel-idxd-config-initcontainer:0.31.0
image: intel/intel-dsa-plugin:0.31.1
initImage: intel/intel-idxd-config-initcontainer:0.31.1
sharedDevNum: 10
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: FpgaDevicePlugin
metadata:
name: fpgadeviceplugin-sample
spec:
image: intel/intel-fpga-plugin:0.31.0
initImage: intel/intel-fpga-initcontainer:0.31.0
image: intel/intel-fpga-plugin:0.31.1
initImage: intel/intel-fpga-initcontainer:0.31.1
mode: region
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: GpuDevicePlugin
metadata:
name: gpudeviceplugin-sample
spec:
image: intel/intel-gpu-plugin:0.31.0
image: intel/intel-gpu-plugin:0.31.1
sharedDevNum: 10
logLevel: 4
enableMonitoring: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: IaaDevicePlugin
metadata:
name: iaadeviceplugin-sample
spec:
image: intel/intel-iaa-plugin:0.31.0
initImage: intel/intel-idxd-config-initcontainer:0.31.0
image: intel/intel-iaa-plugin:0.31.1
initImage: intel/intel-idxd-config-initcontainer:0.31.1
sharedDevNum: 10
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ metadata:
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
spec:
image: intel/intel-qat-plugin:0.31.0
initImage: intel/intel-qat-initcontainer:0.31.0
image: intel/intel-qat-plugin:0.31.1
initImage: intel/intel-qat-initcontainer:0.31.1
dpdkDriver: vfio-pci
kernelVfDrivers:
- 4xxxvf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: SgxDevicePlugin
metadata:
name: sgxdeviceplugin-sample
spec:
image: intel/intel-sgx-plugin:0.31.0
image: intel/intel-sgx-plugin:0.31.1
enclaveLimit: 110
provisionLimit: 110
logLevel: 4
Expand Down
2 changes: 1 addition & 1 deletion pkg/controllers/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
)

var (
ImageMinVersion = versionutil.MustParseSemantic("0.31.0")
ImageMinVersion = versionutil.MustParseSemantic("0.31.1")
)

const (
Expand Down
Loading