Skip to content

Commit

Permalink
Merge pull request #1498 from tkatila/prepare-0.26.2
Browse files Browse the repository at this point in the history
Prepare 0.26.2 release
  • Loading branch information
mythi authored Aug 9, 2023
2 parents c17149f + 45c6399 commit abd7ba5
Show file tree
Hide file tree
Showing 50 changed files with 160 additions and 145 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pipeline {
echo -e 'unqualified-search-registries = ["docker.io"]' | sudo tee -a /etc/containers/registries.conf
'''
sh "sudo curl -L https://dl.k8s.io/release/v${K8S_VERSION}/bin/linux/amd64/kubectl -o /usr/bin/kubectl"
sh "sudo chmod +x /usr/bin/kubectl"
sh "sudo chmod +x /usr/bin/kubectl"
}
}
stage("make go-mod-tidy") {
Expand Down Expand Up @@ -142,7 +142,7 @@ pipeline {
stage('make test-with-kind') {
steps {
dir(path: "$REPO_DIR") {
sh "make test-with-kind REG=intel/ TAG=0.26.1"
sh "make test-with-kind REG=intel/ TAG=0.26.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ clean:

ORG?=intel
REG?=$(ORG)/
TAG?=0.26.1
TAG?=0.26.2
export TAG

e2e-fpga:
Expand Down
4 changes: 3 additions & 1 deletion cmd/qat_plugin/dpdkdrv/dpdkdrv.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,9 @@ func getDeviceCapabilities(device string) (string, error) {
}

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

if _, ok := devicesWithCapabilities[devID]; !ok {
Expand Down
2 changes: 1 addition & 1 deletion demo/dlb-libdlb-demo-pf-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
restartPolicy: Never
containers:
- name: dlb-libdlb-demo-pf-pod
image: intel/dlb-libdlb-demo:0.26.1
image: intel/dlb-libdlb-demo:0.26.2
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
4 changes: 2 additions & 2 deletions demo/dlb-libdlb-demo-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
restartPolicy: Never
containers:
- name: pf
image: intel/dlb-libdlb-demo:0.26.1
image: intel/dlb-libdlb-demo:0.26.2
imagePullPolicy: IfNotPresent
resources:
limits:
Expand All @@ -18,7 +18,7 @@ spec:
cpu: 1
memory: 200Mi
- name: vf
image: intel/dlb-libdlb-demo:0.26.1
image: intel/dlb-libdlb-demo:0.26.2
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion demo/dlb-libdlb-demo-vf-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
restartPolicy: Never
containers:
- name: dlb-libdlb-demo-vf-pod
image: intel/dlb-libdlb-demo:0.26.1
image: intel/dlb-libdlb-demo:0.26.2
command: [ "sh", "-c", "/usr/local/bin/dir_traffic -n 8 -w epoll -d $(ls /dev/dlb* | sed 's/\\/dev\\/dlb//')" ]
imagePullPolicy: IfNotPresent
resources:
Expand Down
2 changes: 1 addition & 1 deletion demo/dsa-accel-config-demo-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: dsa-accel-config-demo
image: intel/accel-config-demo:0.26.1
image: intel/accel-config-demo:0.26.2
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion demo/iaa-accel-config-demo-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: iaa-accel-config-demo
image: intel/accel-config-demo:0.26.1
image: intel/accel-config-demo:0.26.2
command: [ "/bin/bash", "-c", "cd /test && /bin/bash -e ./iaa_user_test_runner.sh" ]
imagePullPolicy: IfNotPresent
resources:
Expand Down
2 changes: 1 addition & 1 deletion demo/intelfpga-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
restartPolicy: Never
containers:
- name: intelfpga-demo-job-1
image: intel/opae-nlb-demo:0.26.1
image: intel/opae-nlb-demo:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
6 changes: 3 additions & 3 deletions demo/opae-nlb-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ FROM debian:unstable-slim AS builder
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

# Download and unpack OPAE tarball
ARG OPAE_RELEASE=2.1.0-1
ARG OPAE_SHA256=0c9f52ff1279ca5e34e64828ddf3a6c001fb2969a6349a966cd9515c1048ea01
ARG OPAE_RELEASE=2.2.0-1
ARG OPAE_SHA256=1f80f73a652b456adee87a260c7ec66fe3cbb35184b7d7b531766fb6bb0295d7

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN mkdir -p /usr/src/opae && \
cd /usr/src/opae && \
curl -fsSL https://github.com/OPAE/opae-sdk/archive/${OPAE_RELEASE}.tar.gz -o opae.tar.gz && \
curl -fsSL https://github.com/OFS/opae-sdk/archive/${OPAE_RELEASE}.tar.gz -o opae.tar.gz && \
echo "$OPAE_SHA256 opae.tar.gz" | sha256sum -c - && \
tar -xzf opae.tar.gz && \
rm -f opae.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion demo/openssl-qat-engine-cpa-sample-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: openssl-qat-engine
image: intel/openssl-qat-engine:0.26.1
image: intel/openssl-qat-engine:0.26.2
imagePullPolicy: IfNotPresent
command: [ "cpa_sample_code", "runTests=4", "signOfLife=1" ]
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion demo/test-fpga-orchestrated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: intel/opae-nlb-demo:0.26.1
image: intel/opae-nlb-demo:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion demo/test-fpga-preprogrammed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: intel/opae-nlb-demo:0.26.1
image: intel/opae-nlb-demo:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion deployments/dlb_plugin/base/intel-dlb-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-dlb-plugin:0.26.1
image: intel/intel-dlb-plugin:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
spec:
initContainers:
- name: intel-dlb-initcontainer
image: intel/intel-dlb-initcontainer:0.26.1
image: intel/intel-dlb-initcontainer:0.26.2
securityContext:
readOnlyRootFilesystem: true
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deployments/dsa_plugin/base/intel-dsa-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-dsa-plugin:0.26.1
image: intel/intel-dsa-plugin:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-idxd-config-initcontainer:0.26.1
image: intel/intel-idxd-config-initcontainer:0.26.2
securityContext:
readOnlyRootFilesystem: true
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deployments/fpga_admissionwebhook/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
control-plane: controller-manager
spec:
containers:
- image: intel/intel-fpga-admissionwebhook:0.26.1
- image: intel/intel-fpga-admissionwebhook:0.26.2
imagePullPolicy: IfNotPresent
name: manager
securityContext:
Expand Down
4 changes: 2 additions & 2 deletions deployments/fpga_plugin/base/intel-fpga-plugin-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
initContainers:
- name: intel-fpga-initcontainer
image: intel/intel-fpga-initcontainer:0.26.1
image: intel/intel-fpga-initcontainer:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand All @@ -33,7 +33,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-fpga-plugin:0.26.1
image: intel/intel-fpga-plugin:0.26.2
imagePullPolicy: IfNotPresent
args:
- -mode=af
Expand Down
4 changes: 2 additions & 2 deletions deployments/gpu_plugin/base/intel-gpu-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
initContainers:
- name: intel-gpu-initcontainer
image: intel/intel-gpu-initcontainer:0.26.1
image: intel/intel-gpu-initcontainer:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
seLinuxOptions:
Expand All @@ -36,7 +36,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: status.hostIP
image: intel/intel-gpu-plugin:0.26.1
image: intel/intel-gpu-plugin:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
seLinuxOptions:
Expand Down
2 changes: 1 addition & 1 deletion deployments/iaa_plugin/base/intel-iaa-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-iaa-plugin:0.26.1
image: intel/intel-iaa-plugin:0.26.2
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
fieldPath: spec.nodeName
- name: DEVICE_TYPE
value: "iaa"
image: intel/intel-idxd-config-initcontainer:0.26.1
image: intel/intel-idxd-config-initcontainer:0.26.2
securityContext:
readOnlyRootFilesystem: true
privileged: true
Expand Down
6 changes: 3 additions & 3 deletions deployments/operator/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
control-plane: controller-manager
spec:
containers:
- image: docker.io/intel/intel-deviceplugin-operator:0.26.1
- image: docker.io/intel/intel-deviceplugin-operator:0.26.2
imagePullPolicy: IfNotPresent
name: manager
livenessProbe:
Expand All @@ -41,10 +41,10 @@ spec:
resources:
limits:
cpu: 100m
memory: 50Mi
memory: 120Mi
requests:
cpu: 100m
memory: 20Mi
memory: 100Mi
securityContext:
runAsNonRoot: true
runAsUser: 65532
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
alm-examples: '[]'
capabilities: Seamless Upgrades
categories: Drivers and plugins
containerImage: docker.io/intel/intel-deviceplugin-operator:0.26.1
containerImage: docker.io/intel/intel-deviceplugin-operator:0.26.2
createdAt: "2022-11-09"
description: This operator is a Kubernetes custom controller whose goal is to
serve the installation and lifecycle management of Intel device plugins for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ metadata:
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
spec:
image: intel/intel-dlb-plugin:0.26.1
initImage: intel/intel-dlb-initcontainer:0.26.1
image: intel/intel-dlb-plugin:0.26.2
initImage: intel/intel-dlb-initcontainer:0.26.2
logLevel: 4
nodeSelector:
intel.feature.node.kubernetes.io/dlb: 'true'
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: DsaDevicePlugin
metadata:
name: dsadeviceplugin-sample
spec:
image: intel/intel-dsa-plugin:0.26.1
initImage: intel/intel-idxd-config-initcontainer:0.26.1
image: intel/intel-dsa-plugin:0.26.2
initImage: intel/intel-idxd-config-initcontainer:0.26.2
sharedDevNum: 10
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: FpgaDevicePlugin
metadata:
name: fpgadeviceplugin-sample
spec:
image: intel/intel-fpga-plugin:0.26.1
initImage: intel/intel-fpga-initcontainer:0.26.1
image: intel/intel-fpga-plugin:0.26.2
initImage: intel/intel-fpga-initcontainer:0.26.2
mode: region
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: GpuDevicePlugin
metadata:
name: gpudeviceplugin-sample
spec:
image: intel/intel-gpu-plugin:0.26.1
initImage: intel/intel-gpu-initcontainer:0.26.1
image: intel/intel-gpu-plugin:0.26.2
initImage: intel/intel-gpu-initcontainer:0.26.2
sharedDevNum: 10
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: IaaDevicePlugin
metadata:
name: iaadeviceplugin-sample
spec:
image: intel/intel-iaa-plugin:0.26.1
initImage: intel/intel-idxd-config-initcontainer:0.26.1
image: intel/intel-iaa-plugin:0.26.2
initImage: intel/intel-idxd-config-initcontainer:0.26.2
sharedDevNum: 10
logLevel: 4
nodeSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ metadata:
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
spec:
image: intel/intel-qat-plugin:0.26.1
initImage: intel/intel-qat-initcontainer:0.26.1
image: intel/intel-qat-plugin:0.26.2
initImage: intel/intel-qat-initcontainer:0.26.2
dpdkDriver: vfio-pci
kernelVfDrivers:
- c6xxvf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: SgxDevicePlugin
metadata:
name: sgxdeviceplugin-sample
spec:
image: intel/intel-sgx-plugin:0.26.1
initImage: intel/intel-sgx-initcontainer:0.26.1
image: intel/intel-sgx-plugin:0.26.2
initImage: intel/intel-sgx-initcontainer:0.26.2
enclaveLimit: 110
provisionLimit: 110
logLevel: 4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: crypto-perf
image: intel/crypto-perf:0.26.1
image: intel/crypto-perf:0.26.2
imagePullPolicy: IfNotPresent
command: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 300000; done;" ]
Expand Down
2 changes: 1 addition & 1 deletion deployments/qat_plugin/base/intel-qat-kernel-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
privileged: true
image: intel/intel-qat-plugin:0.26.1
image: intel/intel-qat-plugin:0.26.2
imagePullPolicy: IfNotPresent
args: ["-mode", "kernel"]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion deployments/qat_plugin/base/intel-qat-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-qat-plugin:0.26.1
image: intel/intel-qat-plugin:0.26.2
securityContext:
seLinuxOptions:
type: "container_device_plugin_t"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-qat-initcontainer:0.26.1
image: intel/intel-qat-initcontainer:0.26.2
securityContext:
readOnlyRootFilesystem: true
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deployments/sgx_admissionwebhook/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
control-plane: controller-manager
spec:
containers:
- image: intel/intel-sgx-admissionwebhook:0.26.1
- image: intel/intel-sgx-admissionwebhook:0.26.2
imagePullPolicy: IfNotPresent
name: manager
securityContext:
Expand Down
Loading

0 comments on commit abd7ba5

Please sign in to comment.