Skip to content

Commit 7daa87a

Browse files
authored
Merge pull request #1727 from mythi/PR-2024-011
minor version updates
2 parents ff91a97 + f0cfac0 commit 7daa87a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

demo/accel-config-demo/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ FROM debian:unstable-slim AS builder
1717
RUN apt-get update && apt-get install -y --no-install-recommends libaccel-config-dev \
1818
gcc g++ nasm make cmake autoconf automake libtool pkg-config git ca-certificates uuid-dev
1919

20-
RUN cd / && git clone --recurse-submodules --branch v1.1.1 --depth 1 https://github.com/intel/DML.git && \
20+
RUN cd / && git clone --recurse-submodules --branch v1.1.2 --depth 1 https://github.com/intel/DML.git && \
2121
mkdir DML/build && cd DML/build && \
2222
cmake .. && \
2323
make install && \
2424
mv -v /usr/local/bin/tests /usr/local/bin/dml_tests && \
2525
mv -v /usr/local/bin/tests_mt /usr/local/bin/dml_tests_mt
2626

27-
RUN cd / && git clone --recursive --depth 1 --branch v1.3.1 https://github.com/intel/qpl.git && \
27+
RUN cd / && git clone --recurse-submodules --depth 1 --branch v1.5.0 https://github.com/intel/qpl.git && \
2828
mkdir qpl/build && cd qpl/build && \
2929
cmake -DLOG_HW_INIT=ON .. && \
3030
make install

demo/sgx-sdk-demo/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN apt-get update && \
2323
# SGX SDK is installed in /opt/intel directory.
2424
WORKDIR /opt/intel
2525

26-
ARG DCAP_VERSION=DCAP_1.19
26+
ARG DCAP_VERSION=DCAP_1.21
2727

2828
RUN echo "deb [arch=amd64 signed-by=/usr/share/keyrings/intel-sgx.gpg] https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main" | \
2929
tee -a /etc/apt/sources.list.d/intel-sgx.list \
@@ -37,7 +37,7 @@ RUN echo "deb [arch=amd64 signed-by=/usr/share/keyrings/intel-sgx.gpg] https://d
3737
libsgx-quote-ex-dev
3838

3939
# Install SGX SDK
40-
ARG SGX_SDK_URL=https://download.01.org/intel-sgx/sgx-linux/2.22/distro/ubuntu22.04-server/sgx_linux_x64_sdk_2.22.100.3.bin
40+
ARG SGX_SDK_URL=https://download.01.org/intel-sgx/sgx-linux/2.24/distro/ubuntu22.04-server/sgx_linux_x64_sdk_2.24.100.3.bin
4141
RUN wget ${SGX_SDK_URL} \
4242
&& export SGX_SDK_INSTALLER=$(basename $SGX_SDK_URL) \
4343
&& chmod +x $SGX_SDK_INSTALLER \
@@ -49,7 +49,7 @@ RUN cd sgxsdk/SampleCode/SampleEnclave \
4949
&& make \
5050
&& cd -
5151

52-
ARG DCAP_TARBALL_SHA256="ed96f583581be108f9370d7e97577664a704914a98f27a7e117a650651c13e56"
52+
ARG DCAP_TARBALL_SHA256="f0336fef8263b4c53664efb8486c021ca3d996817eb63b0671324a0acf706310"
5353

5454
RUN wget -q https://github.com/intel/SGXDataCenterAttestationPrimitives/archive/$DCAP_VERSION.tar.gz && \
5555
echo "$DCAP_TARBALL_SHA256 $DCAP_VERSION.tar.gz" | sha256sum -c - && \

deployments/nfd/base/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
resources:
4-
- "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.15.1"
4+
- "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.15.4"
55
configMapGenerator:
66
- name: nfd-worker-conf
77
behavior: replace

deployments/operator/default/manager_auth_proxy_patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
containers:
1212
- name: kube-rbac-proxy
13-
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.15.0
13+
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.16.0
1414
args:
1515
- "--secure-listen-address=0.0.0.0:8443"
1616
- "--upstream=http://127.0.0.1:8080/"

0 commit comments

Comments
 (0)