Skip to content

Commit aec8aa2

Browse files
authored
Merge pull request #1206 from mythi/sgx-plugin-topologymanager-fix
release-0.24: trigger 0.24.1
2 parents 330b56b + 7c9be98 commit aec8aa2

File tree

57 files changed

+70
-70
lines changed

Some content is hidden

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

57 files changed

+70
-70
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
uses: actions/checkout@v3
177177
- name: Install terrascan
178178
run: |
179-
curl -L "$(curl -s https://api.github.com/repos/accurics/terrascan/releases/latest | grep -o -E "https://.+?_Linux_x86_64.tar.gz")" > terrascan.tar.gz
179+
curl -L "$(curl -s https://api.github.com/repos/tenable/terrascan/releases/latest | grep -o -E "https://.+?_Linux_x86_64.tar.gz")" > terrascan.tar.gz
180180
tar -xf terrascan.tar.gz terrascan && rm terrascan.tar.gz
181181
install terrascan /usr/local/bin && rm terrascan
182182
- name: Run Terrascan

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ pipeline {
151151
stage('make test-with-kind') {
152152
steps {
153153
dir(path: "$REPO_DIR") {
154-
sh "make test-with-kind REG=intel/ TAG=0.24.0"
154+
sh "make test-with-kind REG=intel/ TAG=0.24.1"
155155
}
156156
}
157157
}

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?=0.24.0
138+
TAG?=0.24.1
139139
export TAG
140140

141141
e2e-fpga:

README.md

Lines changed: 1 addition & 1 deletion

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=0.24.0
52+
LABEL version=0.24.1
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=0.24.0
52+
LABEL version=0.24.1
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=0.24.0
52+
LABEL version=0.24.1
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=0.24.0
52+
LABEL version=0.24.1
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=0.24.0
81+
LABEL version=0.24.1
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=0.24.0
52+
LABEL version=0.24.1
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'

0 commit comments

Comments
 (0)