-
Notifications
You must be signed in to change notification settings - Fork 442
/
utils.go
319 lines (280 loc) · 9.8 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
/*
Copyright 2022 The Kubeflow Authors.
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 pod
import (
"context"
"errors"
"fmt"
"path/filepath"
"strings"
"github.com/google/go-containerregistry/pkg/authn"
"github.com/google/go-containerregistry/pkg/authn/k8schain"
"github.com/google/go-containerregistry/pkg/name"
crv1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/remote"
v1 "k8s.io/api/core/v1"
common "github.com/kubeflow/katib/pkg/apis/controller/common/v1beta1"
trialsv1beta1 "github.com/kubeflow/katib/pkg/apis/controller/trials/v1beta1"
"github.com/kubeflow/katib/pkg/controller.v1beta1/consts"
mccommon "github.com/kubeflow/katib/pkg/metricscollector/v1beta1/common"
)
var errPrimaryContainerNotFound = errors.New("unable to find primary container in mutated pod containers")
func isPrimaryPod(podLabels, primaryLabels map[string]string) bool {
for primaryKey, primaryValue := range primaryLabels {
if podValue, ok := podLabels[primaryKey]; ok {
if podValue != primaryValue {
return false
}
} else {
return false
}
}
return true
}
func getPrimaryContainerIndex(containers []v1.Container, primaryContainerName string) int {
primaryContainerIndex := -1
for i, c := range containers {
if c.Name == primaryContainerName {
primaryContainerIndex = i
break
}
}
return primaryContainerIndex
}
func getRemoteImage(pod *v1.Pod, namespace string, containerIndex int) (crv1.Image, error) {
// verify the image name, then download the remote config file
c := pod.Spec.Containers[containerIndex]
ref, err := name.ParseReference(c.Image, name.WeakValidation)
if err != nil {
return nil, fmt.Errorf("Failed to parse image %q: %v", c.Image, err)
}
imagePullSecrets := []string{}
for _, s := range pod.Spec.ImagePullSecrets {
imagePullSecrets = append(imagePullSecrets, s.Name)
}
kc, err := k8schain.NewInCluster(context.TODO(),
k8schain.Options{
Namespace: namespace,
ServiceAccountName: pod.Spec.ServiceAccountName,
ImagePullSecrets: imagePullSecrets,
})
if err != nil {
return nil, fmt.Errorf("Failed to create k8schain: %v", err)
}
mkc := authn.NewMultiKeychain(kc)
img, err := remote.Image(ref, remote.WithAuthFromKeychain(mkc))
if err != nil {
return nil, fmt.Errorf("Failed to get container image %q info from registry: %v", c.Image, err)
}
return img, nil
}
func getContainerCommand(pod *v1.Pod, namespace string, containerIndex int) ([]string, error) {
// https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes
var err error
var img crv1.Image
var cfg *crv1.ConfigFile
args := []string{}
c := pod.Spec.Containers[containerIndex]
if len(c.Command) != 0 {
args = append(args, c.Command...)
} else {
img, err = getRemoteImage(pod, namespace, containerIndex)
if err != nil {
return nil, err
}
cfg, err = img.ConfigFile()
if err != nil {
return nil, fmt.Errorf("Failed to get config for image %q: %v", c.Image, err)
}
if len(cfg.Config.Entrypoint) != 0 {
args = append(args, cfg.Config.Entrypoint...)
}
}
if len(c.Args) != 0 {
args = append(args, c.Args...)
} else {
if cfg != nil && len(cfg.Config.Cmd) != 0 {
args = append(args, cfg.Config.Cmd...)
}
}
return args, nil
}
func getMountPath(mc common.MetricsCollectorSpec) (string, common.FileSystemKind) {
if mc.Collector.Kind == common.StdOutCollector {
return common.DefaultFilePath, common.FileKind
} else if mc.Collector.Kind == common.FileCollector {
return mc.Source.FileSystemPath.Path, common.FileKind
} else if mc.Collector.Kind == common.TfEventCollector {
return mc.Source.FileSystemPath.Path, common.DirectoryKind
} else if mc.Collector.Kind == common.CustomCollector {
if mc.Source == nil || mc.Source.FileSystemPath == nil {
return "", common.InvalidKind
}
return mc.Source.FileSystemPath.Path, mc.Source.FileSystemPath.Kind
} else {
return "", common.InvalidKind
}
}
func needWrapWorkerContainer(mc common.MetricsCollectorSpec) bool {
mcKind := mc.Collector.Kind
for _, kind := range NeedWrapWorkerMetricsCollectorList {
if mcKind == kind {
return true
}
}
return false
}
func wrapWorkerContainer(trial *trialsv1beta1.Trial, pod *v1.Pod, namespace,
metricsFile string, pathKind common.FileSystemKind) error {
// Search for primary container.
index := getPrimaryContainerIndex(pod.Spec.Containers, trial.Spec.PrimaryContainerName)
if index >= 0 {
command := []string{"sh", "-c"}
args, err := getContainerCommand(pod, namespace, index)
if err != nil {
return err
}
// If the first two commands are sh -c, we do not inject command.
if args[0] == "sh" || args[0] == "bash" {
if args[1] == "-c" {
command = args[0:2]
args = args[2:]
}
}
mc := trial.Spec.MetricsCollector
if mc.Collector.Kind == common.StdOutCollector {
redirectStr := fmt.Sprintf("1>%s 2>&1", metricsFile)
args = append(args, redirectStr)
}
// Get metrics file directory
metricsFileDir := metricsFile
if pathKind == common.FileKind {
metricsFileDir = filepath.Dir(metricsFile)
}
// If early stopping is set add appropriate command
if trial.Spec.EarlyStoppingRules != nil {
args = append(args, "||", getEarlyStoppingCommand(metricsFileDir, pathKind))
}
// Add completed command to run without early stopping
args = append(args, "&&", getMarkCompletedCommand(metricsFileDir, pathKind))
argsStr := strings.Join(args, " ")
c := &pod.Spec.Containers[index]
c.Command = command
c.Args = []string{argsStr}
} else {
return fmt.Errorf("%w: primary container: %v, mutated pod containers: %v", errPrimaryContainerNotFound, trial.Spec.PrimaryContainerName, pod.Spec.Containers)
}
return nil
}
func getEarlyStoppingCommand(metricsFileDir string, pathKind common.FileSystemKind) string {
// $$$$ is process id in shell
// In condition: [ $(head -n $$.pid) ], process id can be received with $$
pidFile := filepath.Join(metricsFileDir, "$$$$.pid")
pidFileCondition := filepath.Join(metricsFileDir, "$$.pid")
containerStopped := "Training Container was Early Stopped"
containerFailed := "Training Container was Failed"
// If main training process failed, it checks that $$.pid (e.g. 6.pid) file exists and contains "early-stopped" line.
// Otherwise, training was failed and Job must be failed. In that case, we execute "exit 1" at the end
return fmt.Sprintf(`if test -f %v && [ $(head -n 1 %v) = %v ]; then echo %v; else echo %v; exit 1; fi`,
pidFile, pidFileCondition, mccommon.TrainingEarlyStopped, containerStopped, containerFailed)
}
func getMarkCompletedCommand(metricsFileDir string, pathKind common.FileSystemKind) string {
// $$$$ is process id in shell
pidFile := filepath.Join(metricsFileDir, "$$$$.pid")
return fmt.Sprintf("echo %s > %s", mccommon.TrainingCompleted, pidFile)
}
func addContainerVolumeMount(c *v1.Container, vm *v1.VolumeMount) {
if c.VolumeMounts == nil {
c.VolumeMounts = make([]v1.VolumeMount, 0)
}
c.VolumeMounts = append(c.VolumeMounts, *vm)
}
func mutateMetricsCollectorVolume(pod *v1.Pod, mountPath, sidecarContainerName, primaryContainerName string, pathKind common.FileSystemKind) error {
metricsVol := v1.Volume{
Name: common.MetricsVolume,
VolumeSource: v1.VolumeSource{
EmptyDir: &v1.EmptyDirVolumeSource{},
},
}
dir := mountPath
if pathKind == common.FileKind {
dir = filepath.Dir(mountPath)
}
vm := v1.VolumeMount{
Name: metricsVol.Name,
MountPath: dir,
}
indexList := []int{}
for i, c := range pod.Spec.Containers {
shouldMount := false
// We should mount volume only on sidecar and primary containers
if c.Name == sidecarContainerName || c.Name == primaryContainerName {
shouldMount = true
}
if shouldMount {
indexList = append(indexList, i)
}
}
for _, i := range indexList {
addContainerVolumeMount(&pod.Spec.Containers[i], &vm)
}
pod.Spec.Volumes = append(pod.Spec.Volumes, metricsVol)
return nil
}
func mutatePodMetadata(pod *v1.Pod, trial *trialsv1beta1.Trial) {
podLabels := map[string]string{}
// Get labels from the created pod.
if pod.Labels != nil {
podLabels = pod.Labels
}
// Get labels from Trial.
for k, v := range trial.Labels {
podLabels[k] = v
}
// Add Trial name label.
podLabels[consts.LabelTrialName] = trial.GetName()
// Append label to the Pod metadata.
pod.Labels = podLabels
}
func mutatePodEnv(pod *v1.Pod, trial *trialsv1beta1.Trial) error {
// Search for the primary container
index := getPrimaryContainerIndex(pod.Spec.Containers, trial.Spec.PrimaryContainerName)
if index >= 0 {
if pod.Spec.Containers[index].Env == nil {
pod.Spec.Containers[index].Env = []v1.EnvVar{}
}
// Pass env variable KATIB_TRIAL_NAME to the primary container using fieldPath
pod.Spec.Containers[index].Env = append(
pod.Spec.Containers[index].Env,
v1.EnvVar{
Name: consts.EnvTrialName,
ValueFrom: &v1.EnvVarSource{
FieldRef: &v1.ObjectFieldSelector{
FieldPath: fmt.Sprintf("metadata.labels['%s']", consts.LabelTrialName),
},
},
},
)
return nil
} else {
return fmt.Errorf("Unable to find primary container %v in mutated pod containers %v",
trial.Spec.PrimaryContainerName, pod.Spec.Containers)
}
}
func getSidecarContainerName(cKind common.CollectorKind) string {
if cKind == common.StdOutCollector || cKind == common.FileCollector {
return mccommon.MetricLoggerCollectorContainerName
} else {
return mccommon.MetricCollectorContainerName
}
}