-
Notifications
You must be signed in to change notification settings - Fork 1
/
placement.go
202 lines (190 loc) · 4.85 KB
/
placement.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
// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
package kube
import (
"context"
"fmt"
"strings"
"github.com/gdt-dev/gdt/debug"
"github.com/samber/lo"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/selection"
"sigs.k8s.io/controller-runtime/pkg/client"
)
type node struct {
name string
allocatable map[string]resource.Quantity
labels map[string]string
}
// getNodes returns a slice of node objects in the Kubernetes cluster
func getNodes(
ctx context.Context,
c *connection,
) []node {
gvk := schema.GroupVersionKind{
Kind: "Node",
}
res, err := c.gvrFromGVK(gvk)
if err != nil {
panic(err)
}
opts := metav1.ListOptions{}
list, err := c.client.Resource(res).Namespace("").List(
ctx, opts,
)
if err != nil {
panic(err)
}
nodes := make([]node, len(list.Items))
for x, n := range list.Items {
labels, _, _ := unstructured.NestedStringMap(n.UnstructuredContent(), "metadata", "labels")
allocs := map[string]resource.Quantity{}
allocatable, _, _ := unstructured.NestedStringMap(n.UnstructuredContent(), "status", "allocatable")
for k, v := range allocatable {
allocs[k] = resource.MustParse(v)
}
nodes[x] = node{
name: n.GetName(),
allocatable: allocs,
labels: labels,
}
}
return nodes
}
type pod struct {
name string
nodename string
}
// getPods returns a slice of pod objects in the supplied Deployment or StatefulSet
func getPods(
ctx context.Context,
c *connection,
r *unstructured.Unstructured,
) []pod {
kind := strings.ToLower(r.GetKind())
ns := r.GetNamespace()
ls := labels.NewSelector()
switch kind {
case "deployment":
case "statefulset":
selector, _, _ := unstructured.NestedMap(r.UnstructuredContent(), "spec", "selector")
matchLabels, found := selector["matchLabels"]
if found {
for k, v := range matchLabels.(map[string]string) {
r, err := labels.NewRequirement(k, selection.Equals, []string{v})
if err != nil {
panic(err)
}
ls = ls.Add(*r)
}
}
default:
panic("unsupported placement Kind: " + kind)
}
gvk := schema.GroupVersionKind{
Kind: "Pod",
}
res, err := c.gvrFromGVK(gvk)
if err != nil {
panic(err)
}
opts := client.ListOptions{
LabelSelector: ls,
Namespace: ns,
}
list, err := c.client.Resource(res).Namespace(ns).List(
ctx, *opts.AsListOptions(),
)
if err != nil {
panic(err)
}
pods := make([]pod, len(list.Items))
for x, p := range list.Items {
nodename, _, _ := unstructured.NestedString(p.UnstructuredContent(), "spec", "nodeName")
pods[x] = pod{
name: p.GetName(),
nodename: nodename,
}
}
return pods
}
// placementSpreadOK returns true if the Pods in the subject are evenly spread
// across hosts with the supplied topology keys
func (a *assertions) placementSpreadOK(
ctx context.Context,
res *unstructured.Unstructured,
topoKeys []string,
) bool {
if len(topoKeys) == 0 {
return true
}
nodes := getNodes(ctx, a.c)
domainNodes := map[string][]string{}
for _, k := range topoKeys {
domainNodes[k] = []string{}
for _, n := range nodes {
_, found := n.labels[k]
if found {
domainNodes[k] = append(domainNodes[k], n.name)
}
}
}
// we construct a map, keyed by topology key, of maps, keyed by the value
// of the topology key (the domain), with counts of pods scheduled to that
// domain.
pods := getPods(ctx, a.c, res)
podDomains := map[string]map[string]int{}
for _, k := range topoKeys {
podDomains[k] = map[string]int{}
for _, dom := range domainNodes[k] {
podDomains[k][dom] = 0
for _, pod := range pods {
podNode := pod.nodename
if dom == podNode {
podDomains[k][dom]++
}
}
}
}
// Pods are evenly spread across domains defined by the topology key when
// the min and max number of pods on each domain is not greater than 1.
for domain, nodes := range domainNodes {
debug.Println(
ctx, "placement-spread: domain: %s, unique nodes: %d",
domain, len(nodes),
)
if len(nodes) > 0 {
nodeCounts := lo.Values(podDomains[domain])
debug.Println(
ctx, "placement-spread: domain: %s, pods per node: %d",
domain, nodeCounts,
)
minCount := lo.Min(nodeCounts)
maxCount := lo.Max(nodeCounts)
skew := maxCount - minCount
if skew >= 1 {
msg := fmt.Sprintf(
"found uneven spread skew of %d for domain %s",
skew, domain,
)
a.Fail(fmt.Errorf(msg))
return false
}
}
}
return true
}
// placementPackOK returns true if the Pods in the subject are packed onto
// hosts with the supplied topology keys
func (a *assertions) placementPackOK(
ctx context.Context,
res *unstructured.Unstructured,
topoKeys []string,
) bool {
return true
}