From 915aa9a1d47070a7a6b1db0c3f0d1461c7248707 Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Thu, 21 Apr 2022 12:38:58 -0700 Subject: [PATCH] Use cri-dockerd fork from rancher-sandbox instead It includes the "Fix metrics performance issue" PR that isn't getting merged by Mirantis: https://github.com/Mirantis/cri-dockerd/pull/38. Signed-off-by: Jan Dubois --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 61b8483..e09a47d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ NERDCTL_VERSION = 0.17.1 AGENT_VERSION = 0.1.2 -CRI_DOCKERD_VERSION = 0.2.0 +CRI_DOCKERD_VERSION = 0.2.0-1 distro.tar: @@ -19,7 +19,7 @@ rancher-desktop-guestagent-$(AGENT_VERSION): cri-dockerd-$(CRI_DOCKERD_VERSION).tgz: wget -O "$@" \ - "https://github.com/Mirantis/cri-dockerd/releases/download/v${CRI_DOCKERD_VERSION}/cri-dockerd-v${CRI_DOCKERD_VERSION}-linux-amd64.tar.gz" + "https://github.com/rancher-sandbox/cri-dockerd/releases/download/v${CRI_DOCKERD_VERSION}/cri-dockerd-v${CRI_DOCKERD_VERSION}-linux-amd64.tar.gz" image-id: Dockerfile $(wildcard files/*) nerdctl-$(NERDCTL_VERSION).tgz rancher-desktop-guestagent-$(AGENT_VERSION) cri-dockerd-$(CRI_DOCKERD_VERSION).tgz docker build $(foreach a,$(args),$(call arg,$(a))) --iidfile "$@" --file "$<" .