-
Notifications
You must be signed in to change notification settings - Fork 90
/
pod.go
114 lines (95 loc) · 2.54 KB
/
pod.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
package k8sutil
import (
"bytes"
"context"
"io"
"time"
"github.com/pkg/errors"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
var (
ErrWaitForPodTimeout = errors.New("timeout waiting for pod")
)
func GetPodLogs(ctx context.Context, clientset kubernetes.Interface, pod *corev1.Pod, follow bool, maxLines *int64) ([]byte, error) {
defaultMaxLines := int64(10000)
podLogOpts := corev1.PodLogOptions{
Container: pod.Spec.Containers[0].Name,
Follow: follow,
TailLines: &defaultMaxLines,
}
if maxLines != nil {
podLogOpts.TailLines = maxLines
}
req := clientset.CoreV1().Pods(pod.Namespace).GetLogs(pod.Name, &podLogOpts)
podLogs, err := req.Stream(ctx)
if err != nil {
return nil, errors.Wrap(err, "failed to get log stream")
}
defer podLogs.Close()
buf := new(bytes.Buffer)
errChan := make(chan error, 0)
go func() {
_, err := io.Copy(buf, podLogs)
errChan <- err
}()
select {
case resErr := <-errChan:
if resErr != nil {
return nil, errors.Wrap(resErr, "failed to copy logs")
} else {
return buf.Bytes(), nil
}
case <-ctx.Done():
return nil, errors.Wrap(ctx.Err(), "context ended copying logs")
}
}
func WaitForPod(ctx context.Context, clientset kubernetes.Interface, namespace string, podName string, timeoutWaitingForPod time.Duration) error {
start := time.Now()
for {
pod, err := clientset.CoreV1().Pods(namespace).Get(ctx, podName, metav1.GetOptions{})
if err != nil {
return errors.Wrap(err, "failed to get pod")
}
if pod.Status.Phase == corev1.PodRunning ||
pod.Status.Phase == corev1.PodFailed ||
pod.Status.Phase == corev1.PodSucceeded {
return nil
}
if pod.Status.Phase == corev1.PodPending {
for _, v := range pod.Status.ContainerStatuses {
if v.State.Waiting != nil && v.State.Waiting.Reason == "ImagePullBackOff" {
return errors.New("wait for pod aborted after getting pod status 'ImagePullBackOff'")
}
}
}
time.Sleep(time.Second)
if time.Now().Sub(start) > timeoutWaitingForPod {
return ErrWaitForPodTimeout
}
}
}
func PodsHaveTheSameOwner(pods []corev1.Pod) bool {
if len(pods) == 0 {
return false
}
for _, pod := range pods {
if len(pod.OwnerReferences) == 0 {
return false
}
}
owner := pods[0].OwnerReferences[0]
for _, pod := range pods {
if pod.OwnerReferences[0].APIVersion != owner.APIVersion {
return false
}
if pod.OwnerReferences[0].Kind != owner.Kind {
return false
}
if pod.OwnerReferences[0].Name != owner.Name {
return false
}
}
return true
}