forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verify.go
141 lines (130 loc) · 3.71 KB
/
verify.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package util
import (
"fmt"
"net"
"strconv"
imageapi "github.com/openshift/origin/pkg/image/api"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/util/intstr"
)
type ValidateFunc func(string) error
// VerifyImage verifies if the latest image in given ImageStream is valid
func VerifyImage(stream *imageapi.ImageStream, tag, ns string, validator ValidateFunc) error {
pod := CreatePodFromImage(stream, tag, ns)
if pod == nil {
return fmt.Errorf("Unable to create Pod for %+v", stream.Status.DockerImageRepository)
}
service := CreateServiceForPod(pod, ns)
if service == nil {
return fmt.Errorf("Unable to create Service for %+v", service)
}
defer CleanupServiceAndPod(pod, service, ns)
address, err := WaitForAddress(pod, service, ns)
if err != nil {
return fmt.Errorf("Failed to obtain address: %v", err)
}
return validator(address)
}
// WaitForAddress waits for the Pod to be running and then for the Service to
// get the endpoint.
func WaitForAddress(pod *kapi.Pod, service *kapi.Service, ns string) (string, error) {
client, err := GetClusterAdminKubeClient(KubeConfigPath())
if err != nil {
return "", err
}
watcher, err := client.Core().Endpoints(ns).Watch(kapi.ListOptions{})
if err != nil {
return "", fmt.Errorf("Unexpected error: %v", err)
}
defer watcher.Stop()
for event := range watcher.ResultChan() {
eventEndpoint, ok := event.Object.(*kapi.Endpoints)
if !ok {
return "", fmt.Errorf("Unable to convert object %+v to Endpoints", eventEndpoint)
}
if eventEndpoint.Name != service.Name {
continue
}
if len(eventEndpoint.Subsets) == 0 {
fmt.Printf("Waiting for %s address\n", eventEndpoint.Name)
continue
}
for _, s := range eventEndpoint.Subsets {
for _, p := range s.Ports {
for _, a := range s.Addresses {
addr := net.JoinHostPort(a.IP, strconv.Itoa(int(p.Port)))
fmt.Printf("Discovered new %s endpoint: %s\n", service.Name, addr)
return addr, nil
}
}
}
}
return "", fmt.Errorf("Service does not get any endpoints")
}
// CreatePodFromImage creates a Pod from the latest image available in the Image
// Stream
func CreatePodFromImage(stream *imageapi.ImageStream, tag, ns string) *kapi.Pod {
client, err := GetClusterAdminKubeClient(KubeConfigPath())
if err != nil {
return nil
}
imageName := stream.Status.DockerImageRepository
if len(tag) > 0 {
imageName += ":" + tag
}
pod := &kapi.Pod{
ObjectMeta: kapi.ObjectMeta{
Name: ns,
Labels: map[string]string{"name": ns},
},
Spec: kapi.PodSpec{
Containers: []kapi.Container{
{
Name: "sample",
Image: imageName,
},
},
RestartPolicy: kapi.RestartPolicyNever,
},
}
if pod, err := client.Core().Pods(ns).Create(pod); err != nil {
fmt.Printf("%v\n", err)
return nil
} else {
return pod
}
}
// CreateServiceForPod creates a service to serve the provided Pod
func CreateServiceForPod(pod *kapi.Pod, ns string) *kapi.Service {
client, err := GetClusterAdminKubeClient(KubeConfigPath())
if err != nil {
return nil
}
service := &kapi.Service{
ObjectMeta: kapi.ObjectMeta{
Name: ns,
},
Spec: kapi.ServiceSpec{
Selector: map[string]string{"name": ns},
Ports: []kapi.ServicePort{{
Port: 8080,
TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 8080},
}},
},
}
if service, err := client.Core().Services(ns).Create(service); err != nil {
fmt.Printf("%v\n", err)
return nil
} else {
return service
}
}
// CleanupServiceAndPod removes the Service and the Pod
func CleanupServiceAndPod(pod *kapi.Pod, service *kapi.Service, ns string) {
client, err := GetClusterAdminKubeClient(KubeConfigPath())
if err != nil {
return
}
client.Core().Pods(ns).Delete(pod.Name, nil)
client.Core().Services(ns).Delete(service.Name, nil)
}