From 7a555fe8ee50e9bf0d50394932200c6ad43b001c Mon Sep 17 00:00:00 2001 From: Mike Kolesnik Date: Wed, 14 Sep 2022 14:36:02 +0300 Subject: [PATCH] Preload LH images in case of LH & GN deployment Due to a bug in LH which was fixed in devel, but not yet backported, we have to preload the LH images to get latest versions (and operator due to a similar reason). Signed-off-by: Mike Kolesnik --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index fcf9fc0..cb8faa2 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,15 @@ CHARTS_VERSION=0.13.0-rc2 HELM_DOCS_VERSION=0.15.0 REPO_URL=$(shell git config remote.origin.url) +# TODO: Remove once a 0.14.0/0.13.1 helm chart is released +# This is needed because the operator was erroneously using image names for overrides, and it has been fixed on devel +# Also we need the fix https://github.com/submariner-io/lighthouse/pull/833 +ifeq ($(LIGHTHOUSE),true) +ifeq ($(GLOBALNET),true) +PRELOAD_IMAGES := lighthouse-agent lighthouse-coredns submariner-operator +endif +endif + # Targets to make e2e: E2E_ARGS=cluster1 cluster2