diff --git a/components/playground/playground.go b/components/playground/playground.go index 8c4e3f6e3e..26827ef64e 100644 --- a/components/playground/playground.go +++ b/components/playground/playground.go @@ -989,6 +989,15 @@ func (p *Playground) bootCluster(ctx context.Context, env *environment.Environme colorCmd.Printf("http://%s/dashboard\n", pdAddr) } + if p.bootOptions.Mode == "tikv-slim" { + var pdAddrs []string + for _, pd := range p.pds { + pdAddrs = append(pdAddrs, pd.Addr()) + } + fmt.Printf("PD Endpoints: ") + colorCmd.Printf("%s\n", strings.Join(pdAddrs, ",")) + } + if monitorInfo != nil { p.updateMonitorTopology(spec.ComponentPrometheus, *monitorInfo) }