From 84283677e216982f33d8d27400ee4c2700262d91 Mon Sep 17 00:00:00 2001 From: Ruslan Gainanov Date: Tue, 21 Nov 2023 09:45:54 +0300 Subject: [PATCH] Include default MinIO credentials (#410) #3458 Include default MinIO credentials in sandbox console readout Signed-off-by: Ruslan Gainanov --- pkg/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/util.go b/pkg/util/util.go index 146ba6ec..1eaa28ea 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -93,7 +93,7 @@ func PrintDemoStartMessage(flyteConsolePort int, kubeconfigLocation string, dryR fmt.Printf(" export KUBECONFIG=%v \n", kubeconfig) } fmt.Printf("%s Flyte sandbox ships with a Docker registry. Tag and push custom workflow images to localhost:30000\n", emoji.Whale) - fmt.Printf("%s The Minio API is hosted on localhost:30002. Use http://localhost:30080/minio/login for Minio console\n", emoji.OpenFileFolder) + fmt.Printf("%s The Minio API is hosted on localhost:30002. Use http://localhost:30080/minio/login for Minio console, default credentials - username: minio, password: miniostorage\n", emoji.OpenFileFolder) } // PrintSandboxStartMessage will print sandbox start success message