Skip to content

Commit 988a5c4

Browse files
committed
tmp: Use http scheme for url in describer
1 parent df72b32 commit 988a5c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/deployer/k8s/describer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (d *Describer) Describe(ctx context.Context, name, namespace string) (fn.In
4949
return fn.Instance{}, fmt.Errorf("unable to get deployment %q: %v", name, err)
5050
}
5151

52-
primaryRouteURL := fmt.Sprintf("%s.%s.svc", name, namespace) // TODO: full URL with scheme?
52+
primaryRouteURL := fmt.Sprintf("http://%s.%s.svc", name, namespace) // TODO: get correct scheme?
5353

5454
description := fn.Instance{
5555
Name: name,

0 commit comments

Comments
 (0)