From b7ff65a84cccc3c68b9d5a46720c0131fc44d3ec Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Fri, 16 Jan 2026 10:08:31 +0100 Subject: [PATCH 1/3] Bump fallback version to 4.9.2 --- internal/helpers/tag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/helpers/tag.go b/internal/helpers/tag.go index 95702b3f..d35c46c8 100644 --- a/internal/helpers/tag.go +++ b/internal/helpers/tag.go @@ -9,7 +9,7 @@ import ( ) const ( - defaultMainImageTag = "4.8.4" + defaultMainImageTag = "4.9.2" ) func LookupMainImageTag(log *logger.Logger) (string, error) { From ca5ca639052e7c7ff0406ae91b603f9e99d0d210 Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Fri, 16 Jan 2026 10:08:57 +0100 Subject: [PATCH 2/3] More precise output when MAIN_IMAGE_TAG is not set --- internal/helpers/tag.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/helpers/tag.go b/internal/helpers/tag.go index d35c46c8..a2ec933c 100644 --- a/internal/helpers/tag.go +++ b/internal/helpers/tag.go @@ -28,7 +28,10 @@ func LookupMainImageTag(log *logger.Logger) (string, error) { return tag, nil } - log.Dimf("Using default main image tag %s -- set MAIN_IMAGE_TAG to the desired tag", defaultMainImageTag) + log.Warningf("No MAIN_IMAGE_TAG found in the environment, using default main image tag %s for deployment", defaultMainImageTag) + log.Warning("To use a different tag, set the MAIN_IMAGE_TAG environment variable") + log.Warning("Alternatively, execute roxie from within the stackrox repository, in which case the latest stackrox tag will be used") + return defaultMainImageTag, nil } From 2752ffb51e374511c335350233efae65a81e04bb Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Fri, 16 Jan 2026 10:11:37 +0100 Subject: [PATCH 3/3] Improve wording --- internal/helpers/tag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/helpers/tag.go b/internal/helpers/tag.go index a2ec933c..a0d1903b 100644 --- a/internal/helpers/tag.go +++ b/internal/helpers/tag.go @@ -30,7 +30,7 @@ func LookupMainImageTag(log *logger.Logger) (string, error) { log.Warningf("No MAIN_IMAGE_TAG found in the environment, using default main image tag %s for deployment", defaultMainImageTag) log.Warning("To use a different tag, set the MAIN_IMAGE_TAG environment variable") - log.Warning("Alternatively, execute roxie from within the stackrox repository, in which case the latest stackrox tag will be used") + log.Warning("Alternatively, execute roxie from within the stackrox repository, in which case the currently checked out stackrox tag will be used") return defaultMainImageTag, nil }