From 8946d1acf2423f0ceaa5357fb8d68fadeca250db Mon Sep 17 00:00:00 2001 From: Kyle Schochenmaier Date: Mon, 26 Jul 2021 13:00:05 -0500 Subject: [PATCH] add some additional log msgs for connect-init (#569) * add some additional log msgs for connect-init --- subcommand/connect-init/command.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subcommand/connect-init/command.go b/subcommand/connect-init/command.go index 9a155f8382cd..d35d6e78a260 100644 --- a/subcommand/connect-init/command.go +++ b/subcommand/connect-init/command.go @@ -171,7 +171,8 @@ func (c *Command) Run(args []string) int { // Once every 10 times we're going to print this informational message to the pod logs so that // it is not "lost" to the user at the end of the retries when the pod enters a CrashLoop. if registrationRetryCount%10 == 0 { - c.logger.Info("Check to ensure a Kubernetes service has been created for this application.") + c.logger.Info("Check to ensure a Kubernetes service has been created for this application." + + " If your pod is not starting also check the connect-inject deployment logs.") } return fmt.Errorf("did not find correct number of services: %d", len(serviceList)) }