This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpod.go
417 lines (363 loc) · 15.4 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
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
/*
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package k8sutil for Kubernetes helpers.
package k8sutil
import (
"context"
"fmt"
"io"
"os"
"path"
"strconv"
"strings"
"github.com/pkg/errors"
"github.com/rook/rook/pkg/clusterd"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
const (
// AppAttr app label
AppAttr = "app"
// ClusterAttr cluster label
ClusterAttr = "rook_cluster"
// PublicIPEnvVar public IP env var
PublicIPEnvVar = "ROOK_PUBLIC_IP"
// PrivateIPEnvVar pod IP env var
PrivateIPEnvVar = "ROOK_PRIVATE_IP"
// DefaultRepoPrefix repo prefix
DefaultRepoPrefix = "rook"
// ConfigOverrideName config override name
ConfigOverrideName = "rook-config-override"
// ConfigOverrideVal config override value
ConfigOverrideVal = "config"
configMountDir = "/etc/rook/config"
overrideFilename = "override.conf"
ObservedGenerationNotAvailable int64 = -1
)
// ConfigOverrideMount is an override mount
func ConfigOverrideMount() v1.VolumeMount {
return v1.VolumeMount{Name: ConfigOverrideName, MountPath: configMountDir}
}
// ConfigOverrideVolume is an override volume
func ConfigOverrideVolume() v1.Volume {
cmSource := &v1.ConfigMapVolumeSource{Items: []v1.KeyToPath{{Key: ConfigOverrideVal, Path: overrideFilename}}}
cmSource.Name = ConfigOverrideName
return v1.Volume{Name: ConfigOverrideName, VolumeSource: v1.VolumeSource{ConfigMap: cmSource}}
}
// ConfigOverrideEnvVar config override env var
func ConfigOverrideEnvVar() v1.EnvVar {
return v1.EnvVar{Name: "ROOK_CEPH_CONFIG_OVERRIDE", Value: path.Join(configMountDir, overrideFilename)}
}
// PodIPEnvVar returns an env var such that the pod's ip will be mapped to the given property (env
// var) name within the container.
func PodIPEnvVar(property string) v1.EnvVar {
return v1.EnvVar{Name: property, ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "status.podIP"}}}
}
// NamespaceEnvVar namespace env var
func NamespaceEnvVar() v1.EnvVar {
return v1.EnvVar{Name: PodNamespaceEnvVar, ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "metadata.namespace"}}}
}
// NameEnvVar pod name env var
func NameEnvVar() v1.EnvVar {
return v1.EnvVar{Name: PodNameEnvVar, ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "metadata.name"}}}
}
// NodeEnvVar node env var
func NodeEnvVar() v1.EnvVar {
return v1.EnvVar{Name: NodeNameEnvVar, ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "spec.nodeName"}}}
}
// ConfigDirEnvVar config dir env var
func ConfigDirEnvVar(dataDir string) v1.EnvVar {
return v1.EnvVar{Name: "ROOK_CONFIG_DIR", Value: dataDir}
}
// GetContainerImage returns the container image
// matching the given name for a pod. If the pod
// only has a single container, the name argument
// is ignored.
func GetContainerImage(pod *v1.Pod, name string) (string, error) {
return GetSpecContainerImage(pod.Spec, name, false)
}
// GetSpecContainerImage returns the container image
// for a podspec, given a container name. The name is
// ignored if the podspec has a single container, in
// which case the image for that container is returned.
func GetSpecContainerImage(spec v1.PodSpec, name string, initContainer bool) (string, error) {
containers := spec.Containers
if initContainer {
containers = spec.InitContainers
}
image, err := GetMatchingContainer(containers, name)
if err != nil {
return "", err
}
return image.Image, nil
}
// Replaces the pod default toleration of 300s used when the node controller
// detect a not ready node (node.kubernetes.io/unreachable)
func AddUnreachableNodeToleration(podSpec *v1.PodSpec) {
// The amount of time for this pod toleration can be modified by users
// changing the value of <ROOK_UNREACHABLE_NODE_TOLERATION_SECONDS> Rook operator
// variable.
// Node controller will wait 40 seconds by default before mark a node as
// unreachable. After 40s + ROOK_UNREACHABLE_NODE_TOLERATION_SECONDS the pod
// will be scheduled in other node
// Only one <toleration> to <unreachable> nodes can be added
var tolerationSeconds int64 = 5
urTolerationSeconds := os.Getenv("ROOK_UNREACHABLE_NODE_TOLERATION_SECONDS")
if urTolerationSeconds != "" {
if duration, err := strconv.ParseInt(urTolerationSeconds, 10, 64); err != nil {
logger.Warningf("using default value for <node.kubernetes.io/unreachable> toleration: %v seconds", tolerationSeconds)
} else {
tolerationSeconds = duration
}
}
urToleration := v1.Toleration{Key: "node.kubernetes.io/unreachable",
Operator: "Exists",
Effect: "NoExecute",
TolerationSeconds: &tolerationSeconds}
for index, item := range podSpec.Tolerations {
if item.Key == "node.kubernetes.io/unreachable" {
podSpec.Tolerations[index] = urToleration
return
}
}
podSpec.Tolerations = append(podSpec.Tolerations, urToleration)
}
// GetRunningPod reads the name and namespace of a pod from the
// environment, and returns the pod (if it exists).
func GetRunningPod(ctx context.Context, clientset kubernetes.Interface) (*v1.Pod, error) {
podName := os.Getenv(PodNameEnvVar)
if podName == "" {
return nil, fmt.Errorf("cannot detect the pod name. Please provide it using the downward API in the manifest file")
}
podNamespace := os.Getenv(PodNamespaceEnvVar)
if podName == "" {
return nil, fmt.Errorf("cannot detect the pod namespace. Please provide it using the downward API in the manifest file")
}
pod, err := clientset.CoreV1().Pods(podNamespace).Get(ctx, podName, metav1.GetOptions{})
if err != nil {
return nil, err
}
return pod, nil
}
// GetMatchingContainer takes a list of containers and a name,
// and returns the first container in the list matching the
// name. If the list contains a single container it is always
// returned, even if the name does not match.
func GetMatchingContainer(containers []v1.Container, name string) (v1.Container, error) {
var result *v1.Container
if len(containers) == 1 {
// if there is only one pod, use its image rather than require a set container name
result = &containers[0]
} else {
// if there are multiple pods, we require the container to have the expected name
for _, container := range containers {
if container.Name == name {
localcontainer := container
result = &localcontainer
break
}
}
}
if result == nil {
return v1.Container{}, fmt.Errorf("failed to find image for container %s", name)
}
return *result, nil
}
// PodsRunningWithLabel returns the number of running pods with the given label
func PodsRunningWithLabel(ctx context.Context, clientset kubernetes.Interface, namespace, label string) (int, error) {
running, _, err := podStatusWithLabel(ctx, clientset, namespace, label)
return running, err
}
// PodsWithLabelAreAllRunning returns whether all pods with the label are in running state
func PodsWithLabelAreAllRunning(ctx context.Context, clientset kubernetes.Interface, namespace, label string) (bool, error) {
running, notRunning, err := podStatusWithLabel(ctx, clientset, namespace, label)
if err != nil {
return false, err
}
// At least one pod must be running and none should be in another state
return running > 0 && notRunning == 0, err
}
func podStatusWithLabel(ctx context.Context, clientset kubernetes.Interface, namespace, label string) (int, int, error) {
pods, err := clientset.CoreV1().Pods(namespace).List(ctx, metav1.ListOptions{LabelSelector: label})
if err != nil {
return 0, 0, err
}
running := 0
notRunning := 0
for _, pod := range pods.Items {
if pod.Status.Phase == v1.PodRunning {
running++
} else {
notRunning++
}
}
return running, notRunning, nil
}
// GetPodPhaseMap takes a list of pods and returns a map of pod phases to the names of pods that are in that phase
func GetPodPhaseMap(pods *v1.PodList) map[v1.PodPhase][]string {
podPhaseMap := map[v1.PodPhase][]string{} // status to list of pod names with that phase
for _, pod := range pods.Items {
podPhase := pod.Status.Phase
podList, ok := podPhaseMap[podPhase]
if !ok {
// haven't seen this status yet, create a slice to keep track of pod names with this status
podPhaseMap[podPhase] = []string{pod.Name}
} else {
// add this pod name to the list of pods already seen with this status
podPhaseMap[podPhase] = append(podList, pod.Name)
}
}
return podPhaseMap
}
// GetJobLog gets the logs for the pod. If there is more than one pod with the label selector, the logs from
// the first pod will be returned.
func GetPodLog(ctx context.Context, clientset kubernetes.Interface, namespace string, labelSelector string) (string, error) {
opts := metav1.ListOptions{
LabelSelector: labelSelector,
}
pods, err := clientset.CoreV1().Pods(namespace).List(ctx, opts)
if err != nil {
return "", fmt.Errorf("failed to get version pod. %+v", err)
}
for _, pod := range pods.Items {
req := clientset.CoreV1().Pods(namespace).GetLogs(pod.Name, &v1.PodLogOptions{})
readCloser, err := req.Stream(ctx)
if err != nil {
return "", fmt.Errorf("failed to read from stream. %+v", err)
}
builder := &strings.Builder{}
defer readCloser.Close()
_, err = io.Copy(builder, readCloser)
if err != nil {
return "", errors.Wrapf(err, "error copying file from %s to %s", builder, readCloser)
}
return builder.String(), err //nolint // no else statement needed
}
return "", fmt.Errorf("did not find any pods with label %s", labelSelector)
}
// ClusterDaemonEnvVars Environment variables used by storage cluster daemon
func ClusterDaemonEnvVars(image string) []v1.EnvVar {
return []v1.EnvVar{
{Name: "CONTAINER_IMAGE", Value: image},
{Name: "POD_NAME", ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "metadata.name"}}},
{Name: "POD_NAMESPACE", ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "metadata.namespace"}}},
{Name: "NODE_NAME", ValueFrom: &v1.EnvVarSource{FieldRef: &v1.ObjectFieldSelector{FieldPath: "spec.nodeName"}}},
// If limits.memory is not set in the pod definition, Kubernetes will populate that value with the total memory available on the host
// If a user sets 0, all available memory on the host will be used
{Name: "POD_MEMORY_LIMIT", ValueFrom: &v1.EnvVarSource{ResourceFieldRef: &v1.ResourceFieldSelector{Resource: "limits.memory"}}}, // Bytes
// If requests.memory is not set in the pod definition, Kubernetes will use the formula "requests.memory = limits.memory" during pods's scheduling
// Kubernetes will set this variable to 0 or equal to limits.memory if set
{Name: "POD_MEMORY_REQUEST", ValueFrom: &v1.EnvVarSource{ResourceFieldRef: &v1.ResourceFieldSelector{Resource: "requests.memory"}}}, // Bytes
// If limits.cpu is not set in the pod definition, Kubernetes will set this variable to number of CPUs available on the host
// If a user sets 0, all CPUs will be used
{Name: "POD_CPU_LIMIT", ValueFrom: &v1.EnvVarSource{ResourceFieldRef: &v1.ResourceFieldSelector{Resource: "limits.cpu", Divisor: resource.MustParse("1")}}},
// If request.cpu is not set in the pod definition, Kubernetes will use the formula "requests.cpu = limits.cpu" during pods's scheduling
// Kubernetes will set this variable to 0 or equal to limits.cpu if set
{Name: "POD_CPU_REQUEST", ValueFrom: &v1.EnvVarSource{ResourceFieldRef: &v1.ResourceFieldSelector{Resource: "requests.cpu"}}},
// All ceph daemons using msgr in a containerized environment expect to set a random nonce at startup
{Name: "CEPH_USE_RANDOM_NONCE", Value: "true"},
}
}
// SetNodeAntiAffinityForPod assign pod anti-affinity when pod should not be co-located
func SetNodeAntiAffinityForPod(pod *v1.PodSpec, requiredDuringScheduling bool, topologyKey string, labels, nodeSelector map[string]string) {
pod.NodeSelector = nodeSelector
// when a node selector is being used, skip the affinity business below
if nodeSelector != nil {
return
}
// label selector used in anti-affinity rules
podAntiAffinity := v1.PodAffinityTerm{
LabelSelector: &metav1.LabelSelector{
MatchLabels: labels,
},
TopologyKey: topologyKey,
}
// Ensures that pod.Affinity is non-nil
if pod.Affinity.PodAntiAffinity == nil {
pod.Affinity.PodAntiAffinity = &v1.PodAntiAffinity{}
}
paa := pod.Affinity.PodAntiAffinity
// Set pod anti-affinity rules when pod should never be
// co-located (e.g. HostNetworking, not AllowMultiplePerHost)
if requiredDuringScheduling {
paa.RequiredDuringSchedulingIgnoredDuringExecution =
append(paa.RequiredDuringSchedulingIgnoredDuringExecution, podAntiAffinity)
} else {
paa.PreferredDuringSchedulingIgnoredDuringExecution =
append(paa.PreferredDuringSchedulingIgnoredDuringExecution, v1.WeightedPodAffinityTerm{
Weight: 50,
PodAffinityTerm: podAntiAffinity,
})
}
}
func ForceDeletePodIfStuck(ctx context.Context, clusterdContext *clusterd.Context, pod v1.Pod) error {
logger.Debugf("checking if pod %q is stuck and should be force deleted", pod.Name)
if pod.DeletionTimestamp.IsZero() {
logger.Debugf("skipping pod %q restart since the pod is not deleted", pod.Name)
return nil
}
node, err := clusterdContext.Clientset.CoreV1().Nodes().Get(ctx, pod.Spec.NodeName, metav1.GetOptions{})
if err != nil {
return errors.Wrap(err, "node status is not available")
}
if NodeIsReady(*node) {
logger.Debugf("skipping restart of pod %q since the node status is ready", pod.Name)
return nil
}
logger.Infof("force deleting pod %q that appears to be stuck terminating", pod.Name)
var gracePeriod int64
deleteOpts := metav1.DeleteOptions{GracePeriodSeconds: &gracePeriod}
if err := clusterdContext.Clientset.CoreV1().Pods(pod.Namespace).Delete(ctx, pod.Name, deleteOpts); err != nil {
logger.Warningf("pod %q deletion failed. %v", pod.Name, err)
return nil
}
logger.Infof("pod %q deletion succeeded", pod.Name)
return nil
}
func RemoveDuplicateEnvVars(pod *v1.PodSpec) {
for i := range pod.Containers {
removeDuplicateEnvVarsFromContainer(&pod.Containers[i])
}
for i := range pod.InitContainers {
removeDuplicateEnvVarsFromContainer(&pod.InitContainers[i])
}
}
func removeDuplicateEnvVarsFromContainer(container *v1.Container) {
foundVars := map[string]string{}
vars := []v1.EnvVar{}
for _, v := range container.Env {
if _, ok := foundVars[v.Name]; ok {
logger.Debugf("duplicate env var %q skipped on container %q", v.Name, container.Name)
continue
}
vars = append(vars, v)
foundVars[v.Name] = v.Value
}
container.Env = vars
}
func IsPodScheduled(ctx context.Context, clientSet kubernetes.Interface, namespace, selector string) (bool, error) {
listOpts := metav1.ListOptions{LabelSelector: selector}
podList, err := clientSet.CoreV1().Pods(namespace).List(ctx, listOpts)
if err != nil {
return false, errors.Wrapf(err, "failed to list pods with label selector %q in namespace %q", selector, namespace)
}
if len(podList.Items) == 0 {
return false, errors.Errorf("no pods found with label selector %q in namespace %q", selector, namespace)
}
if podList.Items[0].Spec.NodeName == "" {
return false, nil
}
return true, nil
}