forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
utils.go
555 lines (495 loc) · 16.1 KB
/
utils.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
package cluster
import (
"encoding/json"
"fmt"
"io/ioutil"
"net"
"net/http"
"os"
"strconv"
"strings"
"time"
"unicode"
kapiv1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/util/wait"
kclientset "k8s.io/client-go/kubernetes"
"k8s.io/kubernetes/test/e2e/framework"
e2e "k8s.io/kubernetes/test/e2e/framework"
exutil "github.com/openshift/origin/test/extended/util"
)
// The number of times we re-try to create a pod
const maxRetries = 4
// ParsePods unmarshalls the json file defined in the CL config into a struct
func ParsePods(jsonFile string) (configStruct kapiv1.Pod) {
configFile, err := ioutil.ReadFile(jsonFile)
if err != nil {
framework.Failf("Cant read pod config file. Error: %v", err)
}
err = json.Unmarshal(configFile, &configStruct)
if err != nil {
e2e.Failf("Unable to unmarshal pod config. Error: %v", err)
}
e2e.Logf("The loaded config file is: %+v", configStruct.Spec.Containers)
return
}
// SyncPods waits for pods to enter a state
func SyncPods(c kclientset.Interface, ns string, selectors map[string]string, timeout time.Duration, state kapiv1.PodPhase) (err error) {
label := labels.SelectorFromSet(selectors)
err = wait.Poll(2*time.Second, timeout,
func() (bool, error) {
podList, err := framework.WaitForPodsWithLabel(c, ns, label)
if err != nil {
framework.Failf("Failed getting pods: %v", err)
return false, nil // Ignore this error (nil) and try again in "Poll" time
}
pods := podList.Items
if pods == nil || len(pods) == 0 {
return true, nil
}
for _, p := range pods {
if p.Status.Phase != state {
return false, nil
}
}
return true, nil
})
return err
}
// SyncRunningPods waits for pods to enter Running state
func SyncRunningPods(c kclientset.Interface, ns string, selectors map[string]string, timeout time.Duration) (err error) {
err = SyncPods(c, ns, selectors, timeout, kapiv1.PodRunning)
if err == nil {
// There wasn't a timeout
e2e.Logf("All pods running in %s with labels: %v", ns, selectors)
}
return err
}
// SyncSucceededPods waits for pods to enter Completed state
func SyncSucceededPods(c kclientset.Interface, ns string, selectors map[string]string, timeout time.Duration) (err error) {
err = SyncPods(c, ns, selectors, timeout, kapiv1.PodSucceeded)
if err == nil {
// There wasn't a timeout
e2e.Logf("All pods succeeded in %s with labels: %v", ns, selectors)
}
return err
}
// CreatePods creates pods in user defined namespaces with user configurable tuning sets
func CreatePods(c kclientset.Interface, appName string, ns string, labels map[string]string, spec kapiv1.PodSpec, maxCount int, tuning *TuningSetType, sync *SyncObjectType) error {
for i := 0; i < maxCount; i++ {
framework.Logf("%v/%v : Creating pod", i+1, maxCount)
// Retry on pod creation failure
for retryCount := 0; retryCount <= maxRetries; retryCount++ {
_, err := c.CoreV1().Pods(ns).Create(&kapiv1.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: fmt.Sprintf(appName+"-pod-%v", i),
Namespace: ns,
Labels: labels,
},
Spec: spec,
})
if err == nil {
break
}
framework.ExpectNoError(err)
}
if tuning != nil {
// If a rate limit has been defined we wait for N ms between creation
if tuning.Pods.RateLimit.Delay != 0 {
framework.Logf("Sleeping %d ms between podcreation.", tuning.Pods.RateLimit.Delay)
time.Sleep(tuning.Pods.RateLimit.Delay * time.Millisecond)
}
// If a stepping tuningset has been defined in the config, we wait for the step of pods to be created, and pause
if tuning.Pods.Stepping.StepSize != 0 && (i+1)%tuning.Pods.Stepping.StepSize == 0 {
framework.Logf("Waiting for pods created this step to be running")
pods, err := exutil.WaitForPods(c.CoreV1().Pods(ns), exutil.ParseLabelsOrDie(mapToString(labels)), exutil.CheckPodIsRunningFn, i+1, tuning.Pods.Stepping.Timeout*time.Second)
if err != nil {
framework.Failf("Error in wait... %v", err)
} else if len(pods) < i+1 {
framework.Failf("Only got %v out of %v", len(pods), i+1)
}
framework.Logf("We have created %d pods and are now sleeping for %d seconds", i+1, tuning.Pods.Stepping.Pause)
time.Sleep(tuning.Pods.Stepping.Pause * time.Second)
}
}
}
if sync.Running {
timeout, err := time.ParseDuration(sync.Timeout)
if err != nil {
return err
}
return SyncRunningPods(c, ns, sync.Selectors, timeout)
}
if sync.Server.Enabled {
var podCount PodCount
return Server(&podCount, sync.Server.Port, false)
}
if sync.Succeeded {
timeout, err := time.ParseDuration(sync.Timeout)
if err != nil {
return err
}
return SyncSucceededPods(c, ns, sync.Selectors, timeout)
}
return nil
}
func mapToString(m map[string]string) (s string) {
for k, v := range m {
s = fmt.Sprintf("%s=%s", k, v)
}
return
}
// GetTuningSet matches the name of the tuning set defined in the project and returns a pointer to the set
func GetTuningSet(tuningSets []TuningSetType, podTuning string) (tuning *TuningSetType) {
if podTuning != "" {
// Iterate through defined tuningSets
for _, ts := range tuningSets {
// If we have a matching tuningSet keep it
if ts.Name == podTuning {
tuning = &ts
return
}
}
framework.Failf("No pod tuning found for: %s", podTuning)
}
return nil
}
// Server is the webservice that will synchronize the start and stop of Pods
func Server(c *PodCount, port int, awaitShutdown bool) error {
const serverPort = 9090
http.HandleFunc("/start", handleStart(startHandler, c))
http.HandleFunc("/stop", handleStop(stopHandler, c))
if port <= 0 || port > 65535 {
e2e.Logf("Invalid server port %v, using %v", port, serverPort)
port = serverPort
}
server := &http.Server{Addr: fmt.Sprintf((":%d"), port), Handler: nil}
ln, err := net.Listen("tcp", server.Addr)
if err != nil {
return err
}
go server.Serve(ln)
fmt.Println("Listening on port", server.Addr)
if awaitShutdown {
select {
case <-c.Shutdown:
fmt.Println("Shutdown server")
ln.Close()
return err
}
}
return nil
}
func handleStart(fn http.HandlerFunc, c *PodCount) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
c.Started++
fn(w, r)
fmt.Printf("Start requests: %d, Stop requests: %d\n", c.Started, c.Stopped)
}
}
func startHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Hello")
}
func handleStop(fn http.HandlerFunc, c *PodCount) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
c.Stopped++
fn(w, r)
fmt.Printf("Start requests: %d, Stop requests: %d\n", c.Started, c.Stopped)
if c.Stopped == c.Started && c.Stopped > 0 {
c.Shutdown <- true
}
}
}
func stopHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Goodbye")
}
// firstLowercase conversts the first letter of a string to lowercase.
func firstLowercase(s string) string {
a := []rune(s)
a[0] = unicode.ToLower(a[0])
return string(a)
}
// convertVariables takes our loaded struct and converts it into a map[string]string.
func convertVariablesToMap(params map[string]interface{}) map[string]string {
values := make(map[string]string)
for k, v := range params {
k = firstLowercase(k)
if v != 0 && v != "" {
if _, ok := v.(int); ok {
values[k] = strconv.Itoa(v.(int))
} else {
values[k] = v.(string)
}
}
}
return values
}
func getFromFileArg(k string, v interface{}) (arg string) {
return fmt.Sprintf("--from-file=%s=%v", k, v)
}
// CreateConfigmaps creates config maps from files in user defined namespaces.
func CreateConfigmaps(oc *exutil.CLI, c kclientset.Interface, nsName string, configmaps map[string]interface{}) error {
var args []string
var err error
for k, v := range configmaps {
if v != nil && v != "" {
args = append(args, "configmap")
args = append(args, k)
args = append(args, getFromFileArg(k, v))
} else {
return fmt.Errorf("no or empty value provided for configmap filename")
}
err = oc.SetNamespace(nsName).Run("create").Args(args...).Execute()
}
return err
}
// CreateSecrets creates secrets from files in user defined namespaces.
func CreateSecrets(oc *exutil.CLI, c kclientset.Interface, nsName string, secrets map[string]interface{}) error {
var args []string
var err error
for k, v := range secrets {
if v != nil && v != "" {
args = append(args, "secret")
args = append(args, "generic")
args = append(args, k)
args = append(args, getFromFileArg(k, v))
} else {
return fmt.Errorf("no or empty value provided for secret filename")
}
err = oc.SetNamespace(nsName).Run("create").Args(args...).Execute()
}
return err
}
func convertVariablesToString(params map[string]interface{}) (args []string) {
for k, v := range params {
k = strings.ToUpper(k)
if v == nil {
// Parameter not defined, see if it is defined in the environment.
var found bool
v, found = os.LookupEnv(fmt.Sprintf("%s", k))
if !found {
// Parameter not defined in the environment, do not define it
continue
}
// Parameter defined in the environment, use the value
}
args = append(args, "-p")
args = append(args, fmt.Sprintf("%s=%v", k, v))
}
return
}
// InjectConfigMap modifies the pod struct and replaces the environment variables.
func InjectConfigMap(c kclientset.Interface, ns string, vars map[string]interface{}, config kapiv1.Pod) string {
configMapName := ns + "-configmap"
freshConfigVars := convertVariablesToMap(vars)
dirtyConfigVars := getClusterData(c, freshConfigVars)
configMap := newConfigMap(ns, configMapName, dirtyConfigVars)
framework.Logf("Creating configMap %v in namespace %v", configMap.Name, ns)
var err error
if configMap, err = c.CoreV1().ConfigMaps(ns).Create(configMap); err != nil {
framework.Failf("Unable to create test configMap %s: %v", configMap.Name, err)
}
for i, envVar := range config.Spec.Containers[0].Env {
if _, ok := dirtyConfigVars[envVar.Name]; ok {
framework.Logf("Found match to replace: %+v", envVar)
config.Spec.Containers[0].Env[i] = kapiv1.EnvVar{
Name: envVar.Name,
ValueFrom: &kapiv1.EnvVarSource{
ConfigMapKeyRef: &kapiv1.ConfigMapKeySelector{
LocalObjectReference: kapiv1.LocalObjectReference{
Name: configMapName,
},
Key: envVar.Name,
},
},
}
} else {
framework.Logf("Environment variable %v is not defined in Pod file, skipping.", envVar.Name)
}
}
return configMapName
}
// getClusterData will return map containing updated strings based on custer data
func getClusterData(c kclientset.Interface, config map[string]string) map[string]string {
newConfig := make(map[string]string)
for k, v := range config {
if k == "routerIP" {
// TODO sjug: make localhost func
//v = localhost(f)
v = "127.0.0.1"
} else if k == "targetHost" {
// getEndpointsWithLabel will not return single string
v = concatenateIP(getEndpointsWithLabel(c, config["match"]))
}
newConfig[k] = v
}
return newConfig
}
func concatenateIP(endpointInfo []ServiceInfo) (ip string) {
for i := range endpointInfo {
ip += endpointInfo[i].IP + ","
}
return
}
func getEndpointsWithLabel(c kclientset.Interface, label string) (endpointInfo []ServiceInfo) {
selector, _ := labels.Parse(label)
endpoints, err := c.CoreV1().Endpoints("").List(metav1.ListOptions{LabelSelector: selector.String()})
if err != nil {
panic(err.Error())
}
for _, v := range endpoints.Items {
if len(v.Subsets) > 0 {
for _, ep := range v.Subsets[0].Addresses {
end := ServiceInfo{v.ObjectMeta.Name, ep.IP, v.Subsets[0].Ports[0].Port}
fmt.Printf("For endpoint \"%s\", the IP is %v, the port is %d\n", end.Name, end.IP, end.Port)
endpointInfo = append(endpointInfo, end)
}
}
}
return
}
//func getPodDetailsWithLabel(f *framework.Framework, label string) (podInfo []ServiceInfo) {
// selector := v1.ListOptions{LabelSelector: label}
// pods, err := f.ClientSet.Core().Pods("").List(selector)
// if err != nil {
// panic(err.Error())
// }
// for _, v := range pods.Items {
// pod, err := f.ClientSet.Core().Pods(v.ObjectMeta.Namespace).Get(v.ObjectMeta.Name, metav1.GetOptions{})
// if err != nil {
// panic(err.Error())
// }
// info := ServiceInfo{pod.Name, pod.Status.PodIP, pod.Spec.Containers[0].Ports[0].ContainerPort}
// fmt.Printf("For pod \"%s\", the IP is %v, the port is %d\n", info.Name, info.IP, info.Port)
// podInfo = append(podInfo, info)
// }
//
// return
//}
func newConfigMap(ns string, name string, vars map[string]string) *kapiv1.ConfigMap {
return &kapiv1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Namespace: ns,
Name: name,
},
Data: vars,
}
}
// CreateTemplates creates templates in user defined namespaces with user configurable tuning sets.
func CreateTemplates(oc *exutil.CLI, c kclientset.Interface, nsName string, template ClusterLoaderObjectType, tuning *TuningSetType) error {
var allArgs []string
templateFile := mkPath(template.File)
e2e.Logf("We're loading file %v: ", templateFile)
allArgs = append(allArgs, "-f")
allArgs = append(allArgs, templateFile)
if template.Parameters == nil {
e2e.Logf("Template environment variables will not be modified.")
} else {
params := convertVariablesToString(template.Parameters)
allArgs = append(allArgs, params...)
}
for i := 0; i < template.Number; i++ {
identifier := map[string]interface{}{"IDENTIFIER": i}
identifierParams := convertVariablesToString(identifier)
idArgs := append(allArgs, identifierParams...)
e2e.Logf("args: %v", idArgs)
configFile, err := oc.SetNamespace(nsName).Run("process").Args(idArgs...).OutputToFile("config.json")
if err != nil {
e2e.Failf("Unable to process template file. Error: %v", err)
}
err = oc.SetNamespace(nsName).Run("create").Args("-f", configFile).Execute()
if err != nil {
e2e.Failf("Unable to create template objects. Error: %v", err)
}
if err != nil {
return err
}
// If there is a tuning set defined for this template
if tuning != nil {
if tuning.Templates.RateLimit.Delay != 0 {
e2e.Logf("Sleeping %d ms between template creation.", tuning.Templates.RateLimit.Delay)
time.Sleep(time.Duration(tuning.Templates.RateLimit.Delay) * time.Millisecond)
}
if tuning.Templates.Stepping.StepSize != 0 && (i+1)%tuning.Templates.Stepping.StepSize == 0 {
e2e.Logf("We have created %d templates and are now sleeping for %d seconds", i+1, tuning.Templates.Stepping.Pause)
time.Sleep(time.Duration(tuning.Templates.Stepping.Pause) * time.Second)
}
}
}
sync := template.Sync
if sync.Running {
timeout, err := time.ParseDuration(sync.Timeout)
if err != nil {
return err
}
err = SyncRunningPods(c, nsName, sync.Selectors, timeout)
if err != nil {
return err
}
}
if sync.Server.Enabled {
var podCount PodCount
err := Server(&podCount, sync.Server.Port, false)
if err != nil {
return err
}
}
if sync.Succeeded {
timeout, err := time.ParseDuration(sync.Timeout)
if err != nil {
return err
}
err = SyncSucceededPods(c, nsName, sync.Selectors, timeout)
if err != nil {
return err
}
}
return nil
}
func getNsCmdFlag(name string) string {
return fmt.Sprintf("--namespace=%v", name)
}
func SetNamespaceLabels(c kclientset.Interface, name string, labels map[string]string) (*kapiv1.Namespace, error) {
if len(labels) == 0 {
return nil, nil
}
ns, err := c.CoreV1().Namespaces().Get(name, metav1.GetOptions{})
if err != nil {
return nil, err
}
ns.Labels = labels
return c.CoreV1().Namespaces().Update(ns)
}
func ProjectExists(oc *exutil.CLI, name string) (bool, error) {
p, err := oc.AdminProjectClient().Project().Projects().Get(name, metav1.GetOptions{})
if err != nil {
if strings.Contains(err.Error(), "not found") {
return false, nil
}
return false, err
}
if (*p).Name == name {
return true, nil
}
return false, nil
}
func DeleteProject(oc *exutil.CLI, name string, interval, timeout time.Duration) error {
e2e.Logf("Deleting project %v ...", name)
err := oc.AdminProjectClient().Project().Projects().Delete(name, &metav1.DeleteOptions{})
if err != nil {
return err
}
err = wait.Poll(interval, timeout, func() (bool, error) {
exists, err := ProjectExists(oc, name)
if err != nil {
return true, err
}
if exists {
e2e.Logf("The project %v is still there", name)
return false, nil
}
return true, nil
})
return err
}