From cef5d5b615da796a9121ef8e3cdd2050d448a00c Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Thu, 21 Dec 2023 07:48:57 +0200 Subject: [PATCH 1/2] doc: update helm instructions Signed-off-by: Mikko Ylinen --- INSTALL.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 087cb6f5a..2f3d4a246 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -44,9 +44,7 @@ NOTE: cert-manager install takes a while to complete. ```bash helm install nfd nfd/node-feature-discovery \ - --namespace node-feature-discovery --create-namespace --version 0.12.1 \ - --set 'master.extraLabelNs={gpu.intel.com,sgx.intel.com}' \ - --set 'master.resourceLabels={gpu.intel.com/millicores,gpu.intel.com/memory.max,gpu.intel.com/tiles,sgx.intel.com/epc}' + --namespace node-feature-discovery --create-namespace --version 0.14.3 ``` ### Installing operator @@ -129,4 +127,4 @@ helm uninstall -n inteldeviceplugins-system helm uninstall -n inteldeviceplugins-system dp-operator helm uninstall -n node-feature-discovery nfd helm uninstall -n cert-manager cert-manager -``` \ No newline at end of file +``` From b1041e99a7cb4278c05755331cb020be1231d3bb Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Thu, 21 Dec 2023 07:49:23 +0200 Subject: [PATCH 2/2] demo: move to released DPDK version Signed-off-by: Mikko Ylinen --- demo/crypto-perf/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/crypto-perf/Dockerfile b/demo/crypto-perf/Dockerfile index 3f4dc3879..02e7b985d 100644 --- a/demo/crypto-perf/Dockerfile +++ b/demo/crypto-perf/Dockerfile @@ -8,8 +8,8 @@ RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \ RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev # Download & unpack DPDK tarball -ARG DPDK_TARBALL=dpdk-23.11-rc3.tar.xz -ARG DPDK_TARBALL_SHA256="cacd8b6d796f9983479f8c5989830cb86705922f8d6a813d83ecb82034088993" +ARG DPDK_TARBALL=dpdk-23.11.tar.xz +ARG DPDK_TARBALL_SHA256="64fa58fdfc9e9510e8e414e3bedd165bd3d4ca465a231b280323f83cd53fd865" RUN wget -q https://git.dpdk.org/dpdk/snapshot/$DPDK_TARBALL \ && echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \