Skip to content

Commit 2f8c275

Browse files
committed
docs: create documentation for v0.34 release
Signed-off-by: Tuomas Katila <[email protected]>
1 parent 759daaf commit 2f8c275

File tree

2 files changed

+22
-27
lines changed

2 files changed

+22
-27
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.30
87
- release-0.31
98
- release-0.32
9+
- release-0.34
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.30
51-
- name: Build release-0.30
50+
ref: release-0.31
51+
- name: Build release-0.31
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.30
57+
mv _build/html $HOME/output/0.31
5858
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.31
62-
- name: Build release-0.31
61+
ref: release-0.32
62+
- name: Build release-0.32
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.31
68+
mv _build/html $HOME/output/0.32
6969
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.32
73-
- name: Build release-0.32
72+
ref: release-0.34
73+
- name: Build release-0.34
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.32
79+
mv _build/html $HOME/output/0.34
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

README.md

Lines changed: 12 additions & 17 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.32.0 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.32/).
11+
The [v0.34.0 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.34/).
1313

1414
Table of Contents
1515

@@ -262,21 +262,16 @@ this repository, see the [Developers Guide](DEVEL.md).
262262
Releases are made under the github [releases area](https://github.com/intel/intel-device-plugins-for-kubernetes/releases). Supported releases and
263263
matching Kubernetes versions are listed below:
264264

265-
| Branch | Kubernetes branch/version | Status |
266-
|:------------------|:-------------------------------|:------------|
267-
| release-0.32 | Kubernetes 1.32 branch v1.32.x | supported |
268-
| release-0.31 | Kubernetes 1.31 branch v1.31.x | supported |
269-
| release-0.30 | Kubernetes 1.30 branch v1.30.x | supported |
270-
| release-0.29 | Kubernetes 1.29 branch v1.29.x | unsupported |
271-
| release-0.28 | Kubernetes 1.28 branch v1.28.x | unsupported |
272-
| release-0.27 | Kubernetes 1.27 branch v1.27.x | unsupported |
273-
| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported |
274-
| release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported |
275-
| release-0.24 | Kubernetes 1.24 branch v1.24.x | unsupported |
276-
| release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported |
277-
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
278-
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |
279-
| release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported |
265+
| Branch | Kubernetes version | Status |
266+
|:------------------|:---------------------|:------------|
267+
| release-0.34 | Kubernetes 1.33-1.34 | supported |
268+
| release-0.32 | Kubernetes 1.32 | supported |
269+
| release-0.31 | Kubernetes 1.31 | supported |
270+
| release-0.30 | Kubernetes 1.30 | unsupported |
271+
| release-0.29 | Kubernetes 1.29 | unsupported |
272+
| release-0.28 | Kubernetes 1.28 | unsupported |
273+
| release-0.27 | Kubernetes 1.27 | unsupported |
274+
| release-0.26 | Kubernetes 1.26 | unsupported |
280275

281276
*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.
282277

0 commit comments

Comments
 (0)