Skip to content

Update versions (dlb demo and cert-manager, kind) #1543

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ BUILDTAGS ?= ""
BUILDER ?= "docker"
EXTRA_BUILD_ARGS ?= ""

CERT_MANAGER_VERSION ?= v1.12.2
CERT_MANAGER_VERSION ?= v1.13.2
CONTROLLER_GEN_VERSION ?= v0.13.0
GOLANGCI_LINT_VERSION ?= v1.54.2
KIND_VERSION ?= v0.19.0
KIND_VERSION ?= v0.20.0
GOLICENSES_VERSION ?= v1.6.0
# Default bundle image tag
BUNDLE_IMG ?= intel-device-plugins-controller-bundle:$(TAG)
Expand Down
4 changes: 2 additions & 2 deletions cmd/dlb_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ If you configure SR-IOV/VF (virtual functions), continue the following configura

Patch dpdk sources to work with DLB:
```bash
$ wget -q https://fast.dpdk.org/rel/dpdk-21.11.tar.xz -O- | tar -Jx
$ wget -q https://downloadmirror.intel.com/763709/dlb_linux_src_release8.0.0.txz -O- | tar -Jx
$ wget -q https://fast.dpdk.org/rel/dpdk-22.11.2.tar.xz -O- | tar -Jx
$ wget -q https://downloadmirror.intel.com/791459/dlb_linux_src_release8.5.2.txz -O- | tar -Jx
$ cd ./dpdk-*/ && patch -p1 < ../dlb/dpdk/dpdk_dlb_*_diff.patch
$ sed -i 's/270b,2710,2714/270b,2710,2711,2714/g' ./usertools/dpdk-devbind.py
```
Expand Down
10 changes: 5 additions & 5 deletions demo/dlb-dpdk-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ WORKDIR $DIR
RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip

# Download & unpack DLB tarball
ARG DLB_TARBALL="dlb_linux_src_release_8.3.0.txz"
ARG DLB_TARBALL_SHA256="ce2141f055e6ecca9a51ead30b0cd24a89af74afef0daa0440ae48b3f3cbc27d"
ARG DLB_TARBALL="dlb_linux_src_release_8.5.2.txz"
ARG DLB_TARBALL_SHA256="99b666e7ce948e20a91e8c2507ec972e10b35fcb1f2061247343dabfdf71d9dd"

RUN wget https://downloadmirror.intel.com/776610/$DLB_TARBALL \
RUN wget https://downloadmirror.intel.com/791459/$DLB_TARBALL \
&& echo "$DLB_TARBALL_SHA256 $DLB_TARBALL" | sha256sum -c - \
&& tar -Jxf $DLB_TARBALL --no-same-owner && rm $DLB_TARBALL

# Download & unpack DPDK tarball
ARG DPDK_TARBALL=dpdk-21.11.tar.xz
ARG DPDK_TARBALL_SHA256="3246e3ed68ee2b369a5d8be2c06cf108a669e157f4d41c5bcbbb216bf5abd3a1"
ARG DPDK_TARBALL=dpdk-22.11.2.tar.xz
ARG DPDK_TARBALL_SHA256="af64bdda15087ff8d429894b9ea6cbbbb6ee7a932bdb344f82b0dc366379a2d4"

RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
Expand Down
6 changes: 3 additions & 3 deletions demo/dlb-libdlb-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ WORKDIR /dlb-build
RUN apt-get update && apt-get install -y wget xz-utils make gcc

# Download and unpack DLB tarball
ARG DLB_TARBALL="dlb_linux_src_release_8.3.0.txz"
ARG DLB_TARBALL_SHA256="ce2141f055e6ecca9a51ead30b0cd24a89af74afef0daa0440ae48b3f3cbc27d"
ARG DLB_TARBALL="dlb_linux_src_release_8.5.2.txz"
ARG DLB_TARBALL_SHA256="99b666e7ce948e20a91e8c2507ec972e10b35fcb1f2061247343dabfdf71d9dd"

RUN wget https://downloadmirror.intel.com/776610/$DLB_TARBALL \
RUN wget https://downloadmirror.intel.com/791459/$DLB_TARBALL \
&& echo "$DLB_TARBALL_SHA256 $DLB_TARBALL" | sha256sum -c - \
&& tar -xvf *.txz --no-same-owner

Expand Down