forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.go
111 lines (96 loc) · 2.49 KB
/
services.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package kube
import (
"fmt"
"sort"
"strings"
"time"
v1 "k8s.io/api/core/v1"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/kubernetes"
)
const (
ExposeURLAnnotation = "fabric8.io/exposeUrl"
)
type ServiceURL struct {
Name string
URL string
}
func GetServiceNames(client *kubernetes.Clientset, ns string, filter string) ([]string, error) {
names := []string{}
list, err := client.CoreV1().Services(ns).List(meta_v1.ListOptions{})
if err != nil {
return names, fmt.Errorf("Failed to load Services %s", err)
}
for _, r := range list.Items {
name := r.Name
if filter == "" || strings.Contains(name, filter) {
names = append(names, name)
}
}
sort.Strings(names)
return names, nil
}
func FindServiceURL(client *kubernetes.Clientset, namespace string, name string) (string, error) {
options := meta_v1.GetOptions{}
svc, err := client.CoreV1().Services(namespace).Get(name, options)
if err != nil {
return "", err
}
return getServiceURL(svc), nil
}
func getServiceURL(svc *v1.Service) string {
url := ""
if svc.Annotations != nil {
url = svc.Annotations[ExposeURLAnnotation]
}
return url
}
func FindServiceURLs(client *kubernetes.Clientset, namespace string) ([]ServiceURL, error) {
options := meta_v1.ListOptions{}
urls := []ServiceURL{}
svcs, err := client.CoreV1().Services(namespace).List(options)
if err != nil {
return urls, err
}
for _, svc := range svcs.Items {
url := getServiceURL(&svc)
if len(url) > 0 {
urls = append(urls, ServiceURL{
Name: svc.Name,
URL: url,
})
}
}
return urls, nil
}
// waits for the pods of a deployment to become ready
func WaitForExternalIP(client *kubernetes.Clientset, name, namespace string, timeout time.Duration) error {
options := meta_v1.ListOptions{
FieldSelector: fields.OneTermEqualSelector("metadata.name", name).String(),
}
w, err := client.CoreV1().Services(namespace).Watch(options)
if err != nil {
return err
}
defer w.Stop()
condition := func(event watch.Event) (bool, error) {
svc := event.Object.(*v1.Service)
return HasExternalAddress(svc), nil
}
_, err = watch.Until(timeout, w, condition)
if err == wait.ErrWaitTimeout {
return fmt.Errorf("service %s never became ready", name)
}
return nil
}
func HasExternalAddress(svc *v1.Service) bool {
for _, v := range svc.Status.LoadBalancer.Ingress {
if v.IP != "" || v.Hostname != "" {
return true
}
}
return false
}