forked from gruntwork-io/kubergrunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpod.go
31 lines (27 loc) · 843 Bytes
/
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
package kubectl
import (
"github.com/gruntwork-io/gruntwork-cli/errors"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// ListPods will look for pods in the given namespace and return them.
func ListPods(options *KubectlOptions, namespace string, filters metav1.ListOptions) ([]corev1.Pod, error) {
client, err := GetKubernetesClientFromOptions(options)
if err != nil {
return nil, err
}
resp, err := client.CoreV1().Pods(namespace).List(filters)
if err != nil {
return nil, errors.WithStackTrace(err)
}
return resp.Items, nil
}
// IsPodReady returns True when a Pod is in the Ready status.
func IsPodReady(pod corev1.Pod) bool {
for _, condition := range pod.Status.Conditions {
if condition.Type == corev1.PodReady {
return condition.Status == corev1.ConditionTrue
}
}
return false
}