Skip to content

Commit 52e87db

Browse files
authored
Merge pull request #1003 from mythi/PR-2022-034
release-0.24: prepare for the release
2 parents 0be55c4 + edc7d0b commit 52e87db

File tree

56 files changed

+80
-79
lines changed

Some content is hidden

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

56 files changed

+80
-79
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.21
87
- release-0.22
98
- release-0.23
9+
- release-0.24
1010

1111
jobs:
1212
build:
@@ -42,36 +42,36 @@ jobs:
4242
- uses: actions/checkout@v3
4343
with:
4444
fetch-depth: 0
45-
ref: release-0.21
46-
- name: Build release-0.21
45+
ref: release-0.22
46+
- name: Build release-0.22
4747
run: |
4848
GITHUB_SHA=$(git rev-parse HEAD)
4949
export GITHUB_SHA
5050
rm -rf _work/venv
5151
make vhtml
52-
mv _build/html $HOME/output/0.21
52+
mv _build/html $HOME/output/0.22
5353
- uses: actions/checkout@v3
5454
with:
5555
fetch-depth: 0
56-
ref: release-0.22
57-
- name: Build release-0.22
56+
ref: release-0.23
57+
- name: Build release-0.23
5858
run: |
5959
GITHUB_SHA=$(git rev-parse HEAD)
6060
export GITHUB_SHA
6161
rm -rf _work/venv
6262
make vhtml
63-
mv _build/html $HOME/output/0.22
63+
mv _build/html $HOME/output/0.23
6464
- uses: actions/checkout@v3
6565
with:
6666
fetch-depth: 0
67-
ref: release-0.23
68-
- name: Build release-0.23
67+
ref: release-0.24
68+
- name: Build release-0.24
6969
run: |
7070
GITHUB_SHA=$(git rev-parse HEAD)
7171
export GITHUB_SHA
7272
rm -rf _work/venv
7373
make vhtml
74-
mv _build/html $HOME/output/0.23
74+
mv _build/html $HOME/output/0.24
7575
- name: Deploy the docs
7676
shell: bash
7777
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ clean:
135135

136136
ORG?=intel
137137
REG?=$(ORG)/
138-
TAG?=devel
138+
TAG?=0.24.0
139139
export TAG
140140

141141
e2e-fpga:

README.md

Lines changed: 4 additions & 3 deletions
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 utilising that framework.
99

10-
The [v0.23 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.23/).
10+
The [v0.24 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.24/).
1212

1313
Table of Contents
1414

@@ -291,9 +291,10 @@ matching Kubernetes versions are listed below:
291291

292292
| Branch | Kubernetes branch/version | Status |
293293
|:------------------|:-------------------------------|:------------|
294+
| release-0.24 | Kubernetes 1.24 branch v1.24.x | supported |
294295
| release-0.23 | Kubernetes 1.23 branch v1.23.x | supported |
295296
| release-0.22 | Kubernetes 1.22 branch v1.22.x | supported |
296-
| release-0.21 | Kubernetes 1.21 branch v1.21.x | supported |
297+
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |
297298
| release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported |
298299
| release-0.19 | Kubernetes 1.19 branch v1.19.x | unsupported |
299300
| release-0.18 | Kubernetes 1.18 branch v1.18.x | unsupported |

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM ${FINAL_BASE}
4949

5050
LABEL name='intel-deviceplugin-operator'
5151
LABEL vendor='Intel®'
52-
LABEL version='devel'
52+
LABEL version=0.24.0
5353
LABEL release='1'
5454
LABEL summary='Intel® device plugin operator for Kubernetes'
5555
LABEL description='To simplify the deployment of the device plugins, a unified device plugins operator is implemented. Currently the operator has support for the QAT, GPU, FPGA, SGX, DSA and DLB device plugins. Each device plugin has its own custom resource definition (CRD) and the corresponding controller that watches CRUD operations to those custom resources.'

build/docker/intel-dlb-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM ${FINAL_BASE}
4949

5050
LABEL name='intel-dlb-plugin'
5151
LABEL vendor='Intel®'
52-
LABEL version='devel'
52+
LABEL version=0.24.0
5353
LABEL release='1'
5454
LABEL summary='Intel® DLB device plugin for Kubernetes'
5555
LABEL description='The DLB device plugin supports Intel Dynamic Load Balancer accelerator(DLB)'

build/docker/intel-dsa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM ${FINAL_BASE}
4949

5050
LABEL name='intel-dsa-plugin'
5151
LABEL vendor='Intel®'
52-
LABEL version='devel'
52+
LABEL version=0.24.0
5353
LABEL release='1'
5454
LABEL summary='Intel® DSA device plugin for Kubernetes'
5555
LABEL description='The DSA device plugin supports acceleration using the Intel Data Streaming accelerator(DSA)'

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM ${FINAL_BASE}
4949

5050
LABEL name='intel-fpga-admissionwebhook'
5151
LABEL vendor='Intel®'
52-
LABEL version='devel'
52+
LABEL version=0.24.0
5353
LABEL release='1'
5454
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'
5555
LABEL description='The FPGA admission controller webhook is responsible for performing mapping from user-friendly function IDs to the Interface ID and Bitstream ID that are required for FPGA programming. It also implements access control by namespacing FPGA configuration information'

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ FROM ${FINAL_BASE}
7878

7979
LABEL name='intel-fpga-initcontainer'
8080
LABEL vendor='Intel®'
81-
LABEL version='devel'
81+
LABEL version=0.24.0
8282
LABEL release='1'
8383
LABEL summary='Intel® FPGA programming CRI hook for Kubernetes'
8484
LABEL description='The FPGA prestart CRI-O hook performs discovery of the requested FPGA function bitstream and programs FPGA devices based on the environment variables in the workload description'

build/docker/intel-fpga-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM ${FINAL_BASE}
4949

5050
LABEL name='intel-fpga-plugin'
5151
LABEL vendor='Intel®'
52-
LABEL version='devel'
52+
LABEL version=0.24.0
5353
LABEL release='1'
5454
LABEL summary='Intel® FPGA device plugin for Kubernetes'
5555
LABEL description='The FPGA device plugin is responsible for discovering and reporting FPGA devices to kubelet'

build/docker/intel-gpu-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ FROM ${FINAL_BASE}
6969

7070
LABEL name='intel-gpu-initcontainer'
7171
LABEL vendor='Intel®'
72-
LABEL version='devel'
72+
LABEL version=0.24.0
7373
LABEL release='1'
7474
LABEL summary='Intel® GPU NFD hook for Kubernetes'
7575
LABEL description='The GPU fractional resources, such as GPU memory is registered as a kubernetes extended resource using node-feature-discovery (NFD). A custom NFD source hook is installed as part of GPU device plugin operator deployment and NFD is configured to register the GPU memory extended resource reported by the hook'

0 commit comments

Comments
 (0)