Skip to content

Commit

Permalink
DEV-23991-watcher-ns: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimss committed Sep 29, 2024
1 parent fb38919 commit 4f35ede
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/app/sso/central.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ func (c *CentralStateManager) depData() map[string]interface{} {
"Namespace": c.app.Namespace,
"SsoDomainId": strings.Split(c.app.Spec.ClusterDomain, ".")[0],
"Spec": c.app.Spec,
"AppUrl": fmt.Sprintf("%s://%s.%s", c.schema(), c.app.Spec.ControlPlane.WebApp.SvcName, c.app.Spec.ClusterDomain),
"AppUrl": fmt.Sprintf("%s://%s%s.%s", c.schema(),
c.app.Spec.Networking.ClusterDomainPrefix.Prefix,
c.app.Spec.ControlPlane.WebApp.SvcName,
c.app.Spec.ClusterDomain,
),
}
}

Expand Down

0 comments on commit 4f35ede

Please sign in to comment.