-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.go
77 lines (65 loc) · 1.4 KB
/
run.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package sprintsd
import (
"context"
"errors"
"fmt"
"strings"
"cloud.google.com/go/compute/metadata"
run "cloud.google.com/go/run/apiv2"
runpb "cloud.google.com/go/run/apiv2/runpb"
)
var ErrNotAvailable = errors.New("not available")
// GetRunServiceURL retrieves the URL of a cloud run service.
func GetRunServiceURL(ctx context.Context, name string) (string, error) {
c, err := run.NewServicesClient(ctx)
if err != nil {
return "", fmt.Errorf(
"unable to to create new services client: %w: %v",
ErrNotAvailable,
err,
)
}
defer c.Close()
projectID, err := metadata.NumericProjectID()
if err != nil {
return "", fmt.Errorf(
"unable to get project id: %w: %v",
ErrNotAvailable,
err,
)
}
region, err := metadata.Get("instance/region")
if err != nil {
return "", fmt.Errorf(
"unable to get instance region: %w: %v",
ErrNotAvailable,
err,
)
}
location := extractLocation(region)
svcName := fmt.Sprintf(
"projects/%s/locations/%s/services/%s",
projectID,
location,
name,
)
req := &runpb.GetServiceRequest{
Name: svcName,
}
resp, err := c.GetService(ctx, req)
if err != nil {
return "", fmt.Errorf(
"unable to get service information: %w: %v",
ErrNotAvailable,
err,
)
}
return resp.GetUri(), nil
}
func extractLocation(region string) string {
parts := strings.Split(region, "/regions/")
if len(parts) >= 2 {
return parts[1]
}
return ""
}