Skip to content

Commit f333145

Browse files
authored
Merge pull request #1441 from tkatila/release-0.27-prep
Release 0.27 creation
2 parents 819d302 + 64beeed commit f333145

File tree

67 files changed

+93
-92
lines changed

Some content is hidden

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

67 files changed

+93
-92
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.24
87
- release-0.25
98
- release-0.26
9+
- release-0.27
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@v3
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.24
51-
- name: Build release-0.24
50+
ref: release-0.25
51+
- name: Build release-0.25
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.24
57+
mv _build/html $HOME/output/0.25
5858
- uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.25
62-
- name: Build release-0.25
61+
ref: release-0.26
62+
- name: Build release-0.26
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.25
68+
mv _build/html $HOME/output/0.26
6969
- uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.26
73-
- name: Build release-0.26
72+
ref: release-0.27
73+
- name: Build release-0.27
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.26
79+
mv _build/html $HOME/output/0.27
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ pipeline {
142142
stage('make test-with-kind') {
143143
steps {
144144
dir(path: "$REPO_DIR") {
145-
sh "make test-with-kind REG=intel/ TAG=devel"
145+
sh "make test-with-kind REG=intel/ TAG=0.27.0"
146146
}
147147
}
148148
}

Makefile

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

137137
ORG?=intel
138138
REG?=$(ORG)/
139-
TAG?=devel
139+
TAG?=0.27.0
140140
export TAG
141141

142142
e2e-fpga:

README.md

Lines changed: 6 additions & 5 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 utilizing that framework.
99

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

1313
Table of Contents
1414

@@ -166,10 +166,10 @@ as a standalone [SGX Admission webhook image](cmd/sgx_admissionwebhook/README.md
166166
#### Intel SGX EPC memory registration
167167

168168
The Intel SGX EPC memory available on each node is registered as a Kubernetes extended resource using
169-
node-feature-discovery (NFD). A custom NFD source hook is installed as part of
169+
node-feature-discovery (NFD). An NFD Node Feature Rule is installed as part of
170170
[SGX device plugin](cmd/sgx_plugin/README.md)
171171
operator deployment and NFD is configured to register the Intel SGX EPC memory
172-
extended resource reported by the hook.
172+
extended resource.
173173

174174
Containers requesting Intel SGX EPC resources in the cluster use
175175
`sgx.intel.com/epc` resource which is of
@@ -262,9 +262,10 @@ matching Kubernetes versions are listed below:
262262

263263
| Branch | Kubernetes branch/version | Status |
264264
|:------------------|:-------------------------------|:------------|
265+
| release-0.27 | Kubernetes 1.27 branch v1.27.x | supported |
265266
| release-0.26 | Kubernetes 1.26 branch v1.26.x | supported |
266267
| release-0.25 | Kubernetes 1.25 branch v1.25.x | supported |
267-
| release-0.24 | Kubernetes 1.24 branch v1.24.x | supported |
268+
| release-0.24 | Kubernetes 1.24 branch v1.24.x | unsupported |
268269
| release-0.23 | Kubernetes 1.23 branch v1.23.x | unsupported |
269270
| release-0.22 | Kubernetes 1.22 branch v1.22.x | unsupported |
270271
| release-0.21 | Kubernetes 1.21 branch v1.21.x | unsupported |

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-deviceplugin-operator'
6262
LABEL summary='Intel® device plugin operator for Kubernetes'

build/docker/intel-dlb-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
5555
###
5656
FROM ${FINAL_BASE}
5757
LABEL vendor='Intel®'
58-
LABEL version='devel'
58+
LABEL version='0.27.0'
5959
LABEL release='1'
6060
COPY --from=builder /install_root /
6161
COPY demo/dlb-init.sh /usr/local/bin/

build/docker/intel-dlb-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_dlb_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-dlb-plugin'
6262
LABEL summary='Intel® DLB device plugin for Kubernetes'

build/docker/intel-dsa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_dsa_device_plugin"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-dsa-plugin'
6262
LABEL summary='Intel® DSA device plugin for Kubernetes'

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM ${FINAL_BASE}
5656
COPY --from=builder /install_root /
5757
ENTRYPOINT ["/usr/local/bin/intel_fpga_admissionwebhook"]
5858
LABEL vendor='Intel®'
59-
LABEL version='devel'
59+
LABEL version='0.27.0'
6060
LABEL release='1'
6161
LABEL name='intel-fpga-admissionwebhook'
6262
LABEL summary='Intel® FPGA admission controller webhook for Kubernetes'

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ RUN curl -SL https://github.com/landley/toybox/archive/refs/tags/$TOYBOX_VERSION
8686
###
8787
FROM ${FINAL_BASE}
8888
LABEL vendor='Intel®'
89-
LABEL version='devel'
89+
LABEL version='0.27.0'
9090
LABEL release='1'
9191
LABEL name='intel-fpga-initcontainer'
9292
LABEL summary='Intel® FPGA programming CRI hook for Kubernetes'

0 commit comments

Comments
 (0)