Skip to content

Commit abd7ba5

Browse files
authored
Merge pull request #1498 from tkatila/prepare-0.26.2
Prepare 0.26.2 release
2 parents c17149f + 45c6399 commit abd7ba5

File tree

50 files changed

+160
-145
lines changed

Some content is hidden

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

50 files changed

+160
-145
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pipeline {
4646
echo -e 'unqualified-search-registries = ["docker.io"]' | sudo tee -a /etc/containers/registries.conf
4747
'''
4848
sh "sudo curl -L https://dl.k8s.io/release/v${K8S_VERSION}/bin/linux/amd64/kubectl -o /usr/bin/kubectl"
49-
sh "sudo chmod +x /usr/bin/kubectl"
49+
sh "sudo chmod +x /usr/bin/kubectl"
5050
}
5151
}
5252
stage("make go-mod-tidy") {
@@ -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=0.26.1"
145+
sh "make test-with-kind REG=intel/ TAG=0.26.2"
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?=0.26.1
139+
TAG?=0.26.2
140140
export TAG
141141

142142
e2e-fpga:

cmd/qat_plugin/dpdkdrv/dpdkdrv.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,9 @@ func getDeviceCapabilities(device string) (string, error) {
399399
}
400400

401401
devicesWithCapabilities := map[string]struct{}{
402-
"4941": {}, // Check QAT Gen4 (4xxx) VF PCI ID only
402+
"4941": {}, // QAT Gen4 (4xxx) VF PCI ID
403+
"4943": {}, // QAT Gen4 (401xx) VF PCI ID
404+
"4945": {}, // QAT Gen4 (402xx) VF PCI ID
403405
}
404406

405407
if _, ok := devicesWithCapabilities[devID]; !ok {

demo/dlb-libdlb-demo-pf-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: dlb-libdlb-demo-pf-pod
9-
image: intel/dlb-libdlb-demo:0.26.1
9+
image: intel/dlb-libdlb-demo:0.26.2
1010
imagePullPolicy: IfNotPresent
1111
resources:
1212
limits:

demo/dlb-libdlb-demo-pod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: pf
9-
image: intel/dlb-libdlb-demo:0.26.1
9+
image: intel/dlb-libdlb-demo:0.26.2
1010
imagePullPolicy: IfNotPresent
1111
resources:
1212
limits:
@@ -18,7 +18,7 @@ spec:
1818
cpu: 1
1919
memory: 200Mi
2020
- name: vf
21-
image: intel/dlb-libdlb-demo:0.26.1
21+
image: intel/dlb-libdlb-demo:0.26.2
2222
imagePullPolicy: IfNotPresent
2323
resources:
2424
limits:

demo/dlb-libdlb-demo-vf-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: dlb-libdlb-demo-vf-pod
9-
image: intel/dlb-libdlb-demo:0.26.1
9+
image: intel/dlb-libdlb-demo:0.26.2
1010
command: [ "sh", "-c", "/usr/local/bin/dir_traffic -n 8 -w epoll -d $(ls /dev/dlb* | sed 's/\\/dev\\/dlb//')" ]
1111
imagePullPolicy: IfNotPresent
1212
resources:

demo/dsa-accel-config-demo-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: dsa-accel-config-demo
10-
image: intel/accel-config-demo:0.26.1
10+
image: intel/accel-config-demo:0.26.2
1111
imagePullPolicy: IfNotPresent
1212
resources:
1313
limits:

demo/iaa-accel-config-demo-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: iaa-accel-config-demo
10-
image: intel/accel-config-demo:0.26.1
10+
image: intel/accel-config-demo:0.26.2
1111
command: [ "/bin/bash", "-c", "cd /test && /bin/bash -e ./iaa_user_test_runner.sh" ]
1212
imagePullPolicy: IfNotPresent
1313
resources:

demo/intelfpga-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
restartPolicy: Never
1414
containers:
1515
- name: intelfpga-demo-job-1
16-
image: intel/opae-nlb-demo:0.26.1
16+
image: intel/opae-nlb-demo:0.26.2
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/opae-nlb-demo/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ FROM debian:unstable-slim AS builder
44
RUN apt-get update && apt-get install -y curl python3-dev git gcc g++ make cmake uuid-dev libjson-c-dev libedit-dev libudev-dev
55

66
# Download and unpack OPAE tarball
7-
ARG OPAE_RELEASE=2.1.0-1
8-
ARG OPAE_SHA256=0c9f52ff1279ca5e34e64828ddf3a6c001fb2969a6349a966cd9515c1048ea01
7+
ARG OPAE_RELEASE=2.2.0-1
8+
ARG OPAE_SHA256=1f80f73a652b456adee87a260c7ec66fe3cbb35184b7d7b531766fb6bb0295d7
99

1010
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1111
RUN mkdir -p /usr/src/opae && \
1212
cd /usr/src/opae && \
13-
curl -fsSL https://github.com/OPAE/opae-sdk/archive/${OPAE_RELEASE}.tar.gz -o opae.tar.gz && \
13+
curl -fsSL https://github.com/OFS/opae-sdk/archive/${OPAE_RELEASE}.tar.gz -o opae.tar.gz && \
1414
echo "$OPAE_SHA256 opae.tar.gz" | sha256sum -c - && \
1515
tar -xzf opae.tar.gz && \
1616
rm -f opae.tar.gz

0 commit comments

Comments
 (0)