From fbf27e6dc19190f039ca20e0cf9e1411ad7a2679 Mon Sep 17 00:00:00 2001 From: raghavharness Date: Wed, 9 Jul 2025 15:01:31 +0530 Subject: [PATCH] feat: [CI-17953]: Add warning if base image connector is not provided --- docker.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker.go b/docker.go index 42198a6..32e1af6 100644 --- a/docker.go +++ b/docker.go @@ -193,6 +193,9 @@ func (p Plugin) Exec() error { fmt.Println(out) return fmt.Errorf("Error authenticating base connector: exit status 1") } + } else { + fmt.Println("\033[33mTo ensure consistent and reliable pipeline execution, we recommend setting up a Base Image Connector.\033[0m\n" + + "\033[33mWhile optional at this time, configuring it helps prevent failures caused by Docker Hub's rate limits.\033[0m") } // login to the Docker registry