Skip to content

Commit 76f8fcf

Browse files
authored
Merge pull request #2293 from tkatila/prep-0.36.0
Prepare 0.36.0
2 parents b55bbaa + 4138ac7 commit 76f8fcf

83 files changed

Lines changed: 108 additions & 106 deletions

File tree

Some content is hidden

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

.github/workflows/lib-codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
sudo apt-get update
3030
sudo apt-get install -y libze1 libze-dev
3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v3
32+
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
3333
with:
3434
languages: 'go'
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v3
37+
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
3838
with:
3939
category: "/language:go"

.github/workflows/lib-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
if: ${{ !contains(fromJson(env.no_base_check), matrix.image) }}
101101
run: IMG=${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }} make test-image-base-layer BUILDER=docker
102102
- name: Login
103-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
103+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
104104
with:
105105
username: ${{ secrets.DOCKERHUB_USER }}
106106
password: ${{ secrets.DOCKERHUB_PASS }}

.github/workflows/lib-scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
results_format: sarif
2727
publish_results: true
2828
- name: "Upload results to security"
29-
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v3
29+
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
3030
with:
3131
sarif_file: results.sarif

.github/workflows/lib-validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
sudo apt-get update
4545
sudo apt-get install -y libze1 libze-dev
4646
- name: golangci-lint
47-
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v7
47+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v7
4848
with:
4949
version: v2.9.0
5050
args: -v --timeout 5m

.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.32
87
- release-0.34
98
- release-0.35
9+
- release-0.36
1010

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

.github/workflows/trivy-periodic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
format: sarif
3232
output: trivy-report.sarif
3333
- name: Upload sarif report to GitHub Security tab
34-
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v3
34+
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
3535
with:
3636
sarif_file: trivy-report.sarif

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ mirror-images-ocp:
141141

142142
ORG?=intel
143143
REG?=$(ORG)/
144-
TAG?=devel
144+
TAG?=0.36.0
145145
export TAG
146146

147147
# Set dry-run arg if E2E_DRYRUN is set

README.md

Lines changed: 4 additions & 3 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.35.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.35/).
11+
The [v0.36.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.36/).
1313

1414
Table of Contents
1515

@@ -264,9 +264,10 @@ matching Kubernetes versions are listed below:
264264

265265
| Branch | Kubernetes version | Status |
266266
|:------------------|:---------------------|:------------|
267+
| release-0.36 | Kubernetes 1.36 | supported |
267268
| release-0.35 | Kubernetes 1.35 | supported |
268269
| release-0.34 | Kubernetes 1.33-1.34 | supported |
269-
| release-0.32 | Kubernetes 1.32 | supported |
270+
| release-0.32 | Kubernetes 1.32 | unsupported |
270271
| release-0.31 | Kubernetes 1.31 | unsupported |
271272
| release-0.30 | Kubernetes 1.30 | unsupported |
272273
| release-0.29 | Kubernetes 1.29 | unsupported |

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ ENTRYPOINT ["/usr/local/bin/intel_deviceplugin_operator"]
6262
LABEL vendor='Intel®'
6363
LABEL org.opencontainers.image.source='https://github.com/intel/intel-device-plugins-for-kubernetes'
6464
LABEL maintainer="Intel®"
65-
LABEL version='devel'
65+
LABEL version='0.36.0'
6666
LABEL release='1'
6767
LABEL name='intel-deviceplugin-operator'
6868
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
@@ -59,7 +59,7 @@ FROM ${FINAL_BASE}
5959
LABEL vendor='Intel®'
6060
LABEL org.opencontainers.image.source='https://github.com/intel/intel-device-plugins-for-kubernetes'
6161
LABEL maintainer="Intel®"
62-
LABEL version='devel'
62+
LABEL version='0.36.0'
6363
LABEL release='1'
6464
COPY --from=builder /install_root /
6565
COPY demo/dlb-init.sh /usr/local/bin/

0 commit comments

Comments
 (0)