diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 93d25b20..ad77a683 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,9 +4,9 @@ on: push: branches: - main - - release-0.26 - release-0.27 - release-0.28 + - release-0.29 permissions: contents: read @@ -44,17 +44,6 @@ jobs: rm -rf _work/venv make vhtml mv _build/html/* $HOME/output/ - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: release-0.26 - - name: Build release-0.26 - run: | - GITHUB_SHA=$(git rev-parse HEAD) - export GITHUB_SHA - rm -rf _work/venv - make vhtml - mv _build/html $HOME/output/0.26 - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -77,6 +66,17 @@ jobs: rm -rf _work/venv make vhtml mv _build/html $HOME/output/0.28 + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: release-0.29 + - name: Build release-0.29 + run: | + GITHUB_SHA=$(git rev-parse HEAD) + export GITHUB_SHA + rm -rf _work/venv + make vhtml + mv _build/html $HOME/output/0.29 - name: Deploy the docs shell: bash env: diff --git a/README.md b/README.md index cd786aa3..8417a91e 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ 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.28 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.28/). +The [v0.29 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.29/). Table of Contents @@ -252,20 +252,16 @@ matching Kubernetes versions are listed below: | Branch | Kubernetes branch/version | Status | |:------------------|:-------------------------------|:------------| +| release-0.29 | Kubernetes 1.29 branch v1.29.x | supported | | release-0.28 | Kubernetes 1.28 branch v1.28.x | supported | | release-0.27 | Kubernetes 1.27 branch v1.27.x | supported | -| release-0.26 | Kubernetes 1.26 branch v1.26.x | supported | +| release-0.26 | Kubernetes 1.26 branch v1.26.x | unsupported | | release-0.25 | Kubernetes 1.25 branch v1.25.x | unsupported | | release-0.24 | Kubernetes 1.24 branch v1.24.x | unsupported | | release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported | | release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported | | release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported | | release-0.20 | Kubernetes 1.20 branch v1.20.x | unsupported | -| release-0.19 | Kubernetes 1.19 branch v1.19.x | unsupported | -| release-0.18 | Kubernetes 1.18 branch v1.18.x | unsupported | -| release-0.17 | Kubernetes 1.17 branch v1.17.x | unsupported | -| release-0.15 | Kubernetes 1.15 branch v1.15.x | unsupported | -| release-0.11 | Kubernetes 1.11 branch v1.11.x | unsupported | *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.