We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df72b32 commit 988a5c4Copy full SHA for 988a5c4
pkg/deployer/k8s/describer.go
@@ -49,7 +49,7 @@ func (d *Describer) Describe(ctx context.Context, name, namespace string) (fn.In
49
return fn.Instance{}, fmt.Errorf("unable to get deployment %q: %v", name, err)
50
}
51
52
- primaryRouteURL := fmt.Sprintf("%s.%s.svc", name, namespace) // TODO: full URL with scheme?
+ primaryRouteURL := fmt.Sprintf("http://%s.%s.svc", name, namespace) // TODO: get correct scheme?
53
54
description := fn.Instance{
55
Name: name,
0 commit comments