From 46df6035b252a185a57977d5c8b739e3a2d96c81 Mon Sep 17 00:00:00 2001 From: Rogger Vasquez Date: Fri, 1 Mar 2024 10:05:59 -0800 Subject: [PATCH] rpk: replace web UI url for cloud clusters We are migrating from cloudv2 -> cloud now (cherry picked from commit e3d2b23dd4d71e58f06334eb4fa9c33a9eff8b20) --- src/go/rpk/pkg/cli/profile/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/rpk/pkg/cli/profile/create.go b/src/go/rpk/pkg/cli/profile/create.go index 2417d0889ace1..80e99cde59813 100644 --- a/src/go/rpk/pkg/cli/profile/create.go +++ b/src/go/rpk/pkg/cli/profile/create.go @@ -347,7 +347,7 @@ them in rpk with func CloudClusterMessage(p config.RpkProfile, clusterName, clusterID string) string { return fmt.Sprintf(` Cluster %s - Web UI: https://cloudv2.redpanda.com/clusters/%s/overview + Web UI: https://cloud.redpanda.com/clusters/%s/overview Redpanda Seed Brokers: [%s] `, clusterName, clusterID, strings.Join(p.KafkaAPI.Brokers, ", ")) }