From 1bbcbe93b7a29561d1b03f1e68decce9e6dd1980 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 20 Sep 2022 16:59:41 +0200 Subject: [PATCH] Remove reference to dockerhub image Signed-off-by: Jean-Philippe Evrard --- Makefile | 2 +- kured-ds.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4b20e30..7dadb4c 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ minikube-publish: image $(SUDO) docker save ghcr.io/$(DH_ORG)/kured | (eval $$(minikube docker-env) && docker load) manifest: - sed -i "s#image: docker.io/.*kured.*#image: docker.io/$(DH_ORG)/kured:$(VERSION)#g" kured-ds.yaml + sed -i "s#image: ghcr.io/.*kured.*#image: ghcr.io/$(DH_ORG)/kured:$(VERSION)#g" kured-ds.yaml echo "Please generate combined manifest if necessary" test: tests diff --git a/kured-ds.yaml b/kured-ds.yaml index d3bd85e..d1a3070 100644 --- a/kured-ds.yaml +++ b/kured-ds.yaml @@ -31,7 +31,7 @@ spec: restartPolicy: Always containers: - name: kured - image: docker.io/weaveworks/kured:1.10.2 + image: ghcr.io/kubereboot/kured:1.10.2 # If you find yourself here wondering why there is no # :latest tag on Docker Hub,see the FAQ in the README imagePullPolicy: IfNotPresent