mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 01:38:43 +00:00
Remove namespace from app URL (#334)
This commit is contained in:
parent
279b01a180
commit
e58bdab492
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ func appURL(acdClient argocdclient.Client, app *argoappv1.Application) string {
|
|||
server = server[0 : len(server)-4]
|
||||
}
|
||||
}
|
||||
return fmt.Sprintf("%s://%s/applications/%s/%s", scheme, server, app.Namespace, app.Name)
|
||||
return fmt.Sprintf("%s://%s/applications/%s", scheme, server, app.Name)
|
||||
}
|
||||
|
||||
func truncateString(str string, num int) string {
|
||||
|
|
|
|||
Loading…
Reference in a new issue