-
Notifications
You must be signed in to change notification settings - Fork 867
/
experiment.go
800 lines (741 loc) · 32.9 KB
/
experiment.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
package experiments
import (
"context"
"fmt"
"time"
"github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1"
clientset "github.com/argoproj/argo-rollouts/pkg/client/clientset/versioned"
rolloutslisters "github.com/argoproj/argo-rollouts/pkg/client/listers/rollouts/v1alpha1"
analysisutil "github.com/argoproj/argo-rollouts/utils/analysis"
"github.com/argoproj/argo-rollouts/utils/defaults"
experimentutil "github.com/argoproj/argo-rollouts/utils/experiment"
logutil "github.com/argoproj/argo-rollouts/utils/log"
"github.com/argoproj/argo-rollouts/utils/record"
replicasetutil "github.com/argoproj/argo-rollouts/utils/replicaset"
templateutil "github.com/argoproj/argo-rollouts/utils/template"
timeutil "github.com/argoproj/argo-rollouts/utils/time"
log "github.com/sirupsen/logrus"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
k8serrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
"k8s.io/client-go/kubernetes"
appslisters "k8s.io/client-go/listers/apps/v1"
v1 "k8s.io/client-go/listers/core/v1"
"k8s.io/utils/pointer"
)
const (
requiredAnalysisCompletedMessage = "Required AnalysisRuns completed"
)
type experimentContext struct {
// parameters supplied to the context
ex *v1alpha1.Experiment
templateRSs map[string]*appsv1.ReplicaSet
templateServices map[string]*corev1.Service
kubeclientset kubernetes.Interface
argoProjClientset clientset.Interface
analysisTemplateLister rolloutslisters.AnalysisTemplateLister
clusterAnalysisTemplateLister rolloutslisters.ClusterAnalysisTemplateLister
analysisRunLister rolloutslisters.AnalysisRunLister
replicaSetLister appslisters.ReplicaSetLister
serviceLister v1.ServiceLister
recorder record.EventRecorder
enqueueExperimentAfter func(obj any, duration time.Duration)
resyncPeriod time.Duration
// calculated values during reconciliation
log *log.Entry
newStatus *v1alpha1.ExperimentStatus
// if isTerminating is true, will not create any analysis runs or replicasets, will scale down
// all existing replicasets, and terminate all analysis runs
isTerminating bool
}
func newExperimentContext(
experiment *v1alpha1.Experiment,
templateRSs map[string]*appsv1.ReplicaSet,
templateServices map[string]*corev1.Service,
kubeclientset kubernetes.Interface,
argoProjClientset clientset.Interface,
replicaSetLister appslisters.ReplicaSetLister,
analysisTemplateLister rolloutslisters.AnalysisTemplateLister,
clusterAnalysisTemplateLister rolloutslisters.ClusterAnalysisTemplateLister,
analysisRunLister rolloutslisters.AnalysisRunLister,
serviceLister v1.ServiceLister,
recorder record.EventRecorder,
resyncPeriod time.Duration,
enqueueExperimentAfter func(obj any, duration time.Duration),
) *experimentContext {
exCtx := experimentContext{
ex: experiment,
templateRSs: templateRSs,
templateServices: templateServices,
kubeclientset: kubeclientset,
argoProjClientset: argoProjClientset,
replicaSetLister: replicaSetLister,
analysisTemplateLister: analysisTemplateLister,
clusterAnalysisTemplateLister: clusterAnalysisTemplateLister,
analysisRunLister: analysisRunLister,
serviceLister: serviceLister,
recorder: recorder,
enqueueExperimentAfter: enqueueExperimentAfter,
resyncPeriod: resyncPeriod,
log: log.WithField(logutil.ExperimentKey, experiment.Name).WithField(logutil.NamespaceKey, experiment.Namespace),
newStatus: experiment.Status.DeepCopy(),
isTerminating: experimentutil.IsTerminating(experiment),
}
return &exCtx
}
func (ec *experimentContext) reconcile() *v1alpha1.ExperimentStatus {
for _, template := range ec.ex.Spec.Templates {
ec.reconcileTemplate(template)
}
for _, analysis := range ec.ex.Spec.Analyses {
ec.reconcileAnalysisRun(analysis, ec.ex.Spec.DryRun, ec.ex.Spec.MeasurementRetention, &ec.ex.Spec.AnalysisRunMetadata)
}
newStatus := ec.calculateStatus()
if duration := calculateEnqueueDuration(ec.ex, newStatus); duration != nil {
ec.log.Infof("Enqueueing Experiment in %s seconds", duration.String())
ec.enqueueExperimentAfter(ec.ex, *duration)
}
return newStatus
}
// reconcileTemplate reconciles a template to a ReplicaSet and/or Service. Creates or scales them down as necessary
// will update status.templateStatuses with the current assessed values
func (ec *experimentContext) reconcileTemplate(template v1alpha1.TemplateSpec) {
logCtx := ec.log.WithField("template", template.Name)
logCtx.Info("Reconciling template")
templateStatus := experimentutil.GetTemplateStatus(ec.ex.Status, template.Name)
if templateStatus == nil {
templateStatus = &v1alpha1.TemplateStatus{
Name: template.Name,
}
}
prevStatus := templateStatus.DeepCopy()
desiredReplicaCount := experimentutil.CalculateTemplateReplicasCount(ec.ex, template)
now := timeutil.MetaNow()
rs := ec.templateRSs[template.Name]
// Create ReplicaSet if does not exist
if rs == nil {
ec.createReplicaSetForTemplate(template, templateStatus, logCtx, now)
rs = ec.templateRSs[template.Name]
} else {
if template.Service != nil {
// Create service for template if service field is set
if desiredReplicaCount != 0 {
ec.createTemplateService(&template, templateStatus, rs)
}
} else {
// If service field nil but service exists, then delete it
// Code should not enter this path
svc := ec.templateServices[template.Name]
ec.deleteTemplateService(svc, templateStatus, template.Name)
}
// add scaleDownDelaySeconds if replicas will be scaled down
if desiredReplicaCount == 0 {
ec.addScaleDownDelayToTemplateRS(rs, template.Name)
rs = ec.templateRSs[template.Name]
}
// Replicaset exists. We ensure it is scaled properly based on termination, or changed replica count
if *rs.Spec.Replicas != desiredReplicaCount {
experimentReplicas := defaults.GetReplicasOrDefault(template.Replicas)
ec.scaleTemplateRS(rs, template, templateStatus, desiredReplicaCount, experimentReplicas)
templateStatus.LastTransitionTime = &now
}
}
if rs == nil {
templateStatus.Replicas = 0
templateStatus.UpdatedReplicas = 0
templateStatus.ReadyReplicas = 0
templateStatus.AvailableReplicas = 0
} else {
templateStatus.Replicas = replicasetutil.GetActualReplicaCountForReplicaSets([]*appsv1.ReplicaSet{rs})
templateStatus.UpdatedReplicas = replicasetutil.GetActualReplicaCountForReplicaSets([]*appsv1.ReplicaSet{rs})
templateStatus.ReadyReplicas = replicasetutil.GetReadyReplicaCountForReplicaSets([]*appsv1.ReplicaSet{rs})
templateStatus.AvailableReplicas = replicasetutil.GetAvailableReplicaCountForReplicaSets([]*appsv1.ReplicaSet{rs})
}
if prevStatus.Replicas != templateStatus.Replicas ||
prevStatus.UpdatedReplicas != templateStatus.UpdatedReplicas ||
prevStatus.ReadyReplicas != templateStatus.ReadyReplicas ||
prevStatus.AvailableReplicas != templateStatus.AvailableReplicas {
logCtx.Info("Template progressed")
logCtx.Infof("Prev status: Current: %d, Updated: %d, Ready: %d, Available: %d",
prevStatus.Replicas, prevStatus.UpdatedReplicas, prevStatus.ReadyReplicas, prevStatus.AvailableReplicas)
logCtx.Infof("New status: Current: %d, Updated: %d, Ready: %d, Available: %d",
templateStatus.Replicas, templateStatus.UpdatedReplicas, templateStatus.ReadyReplicas, templateStatus.AvailableReplicas)
templateStatus.LastTransitionTime = &now
}
// Don't allow template statuses to transition out of completed statuses
if !templateStatus.Status.Completed() {
if desiredReplicaCount == templateStatus.AvailableReplicas {
passedDuration, _ := experimentutil.PassedDurations(ec.ex)
if passedDuration {
templateStatus.Status = v1alpha1.TemplateStatusSuccessful
} else if ec.isTerminating {
templateStatus.Status = v1alpha1.TemplateStatusSuccessful
} else {
templateStatus.Status = v1alpha1.TemplateStatusRunning
}
} else {
from := now
if templateStatus.LastTransitionTime != nil {
from = *templateStatus.LastTransitionTime
}
progressDeadlineSeconds := defaults.GetExperimentProgressDeadlineSecondsOrDefault(ec.ex)
deadline := from.Add(time.Duration(progressDeadlineSeconds) * time.Second)
if now.Time.After(deadline) {
templateStatus.Status = v1alpha1.TemplateStatusFailed
templateStatus.Message = fmt.Sprintf("Template '%s' exceeded its progressDeadlineSeconds (%d)", template.Name, progressDeadlineSeconds)
} else if ec.isTerminating {
templateStatus.Status = v1alpha1.TemplateStatusSuccessful
} else {
templateStatus.Status = v1alpha1.TemplateStatusProgressing
}
}
}
if prevStatus.Status != templateStatus.Status {
msg := fmt.Sprintf("Template '%s' transitioned from %s -> %s", template.Name, prevStatus.Status, templateStatus.Status)
if templateStatus.Message != "" {
msg = msg + ": " + templateStatus.Message
}
eventType := corev1.EventTypeNormal
switch templateStatus.Status {
case v1alpha1.TemplateStatusFailed, v1alpha1.TemplateStatusError:
eventType = corev1.EventTypeWarning
}
ec.recorder.Eventf(ec.ex, record.EventOptions{EventType: eventType, EventReason: "Template" + string(templateStatus.Status)}, msg)
}
experimentutil.SetTemplateStatus(ec.newStatus, *templateStatus)
}
func (ec *experimentContext) addScaleDownDelayToTemplateRS(rs *appsv1.ReplicaSet, templateName string) {
rsIsUpdated, err := ec.addScaleDownDelay(rs)
if err != nil {
ec.log.Warnf("Unable to add scaleDownDelay label on rs '%s'", rs.Name)
} else {
if rsIsUpdated {
ctx := context.TODO()
rs, err = ec.kubeclientset.AppsV1().ReplicaSets(ec.ex.Namespace).Get(ctx, rs.Name, metav1.GetOptions{})
if err != nil {
ec.log.Warnf("Unable to get rs '%s' with added scaleDownDelay", rs.Name)
} else {
ec.templateRSs[templateName] = rs
}
}
}
}
func (ec *experimentContext) scaleTemplateRS(rs *appsv1.ReplicaSet, template v1alpha1.TemplateSpec, templateStatus *v1alpha1.TemplateStatus, desiredReplicaCount int32, experimentReplicas int32) {
if desiredReplicaCount == 0 {
// Add delay before scaling
remainingTime, err := replicasetutil.GetTimeRemainingBeforeScaleDownDeadline(rs)
if err != nil {
ec.log.Warnf("%v", err)
} else if remainingTime != nil {
ec.log.Infof("RS '%s' has not reached the scaleDownTime", rs.Name)
if *remainingTime < ec.resyncPeriod {
ec.enqueueExperimentAfter(ec.ex, *remainingTime)
}
desiredReplicaCount = experimentReplicas
}
} else {
ctx := context.TODO()
updatedRS, err := ec.kubeclientset.AppsV1().ReplicaSets(ec.ex.Namespace).Get(ctx, rs.Name, metav1.GetOptions{})
if err != nil {
ec.log.Warnf("Unable to get updated rs '%s'", updatedRS.Name)
} else {
ec.templateRSs[template.Name] = updatedRS
}
rs = updatedRS
}
_, _, err := ec.scaleReplicaSetAndRecordEvent(rs, desiredReplicaCount)
if err != nil {
templateStatus.Status = v1alpha1.TemplateStatusError
templateStatus.Message = fmt.Sprintf("Unable to scale ReplicaSet for template '%s' to desired replica count '%v': %v", templateStatus.Name, desiredReplicaCount, err)
} else {
if desiredReplicaCount == 0 && template.Service != nil {
svc := ec.templateServices[template.Name]
ec.deleteTemplateService(svc, templateStatus, template.Name)
}
}
}
// createServiceTemplate creates service for given experiment template
func (ec *experimentContext) createTemplateService(template *v1alpha1.TemplateSpec, templateStatus *v1alpha1.TemplateStatus, rs *appsv1.ReplicaSet) {
// Create service with has same name, podTemplateHash, and labels as RS
podTemplateHash := rs.Labels[v1alpha1.DefaultRolloutUniqueLabelKey]
svc := ec.templateServices[template.Name]
var ports []corev1.ServicePort
for _, ctr := range rs.Spec.Template.Spec.Containers {
for _, port := range ctr.Ports {
servicePort := corev1.ServicePort{
Protocol: port.Protocol,
Port: port.ContainerPort,
TargetPort: intstr.FromInt(int(port.ContainerPort)),
}
if port.Name != "" {
servicePort.Name = port.Name
}
ports = append(ports, servicePort)
}
}
if (svc == nil || svc.Name != rs.Name) && len(ports) > 0 {
serviceName := rs.Name
if template.Service.Name != "" {
serviceName = template.Service.Name
}
newService, err := ec.CreateService(serviceName, *template, rs.Labels, ports)
if err != nil {
templateStatus.Status = v1alpha1.TemplateStatusError
templateStatus.Message = fmt.Sprintf("Failed to create Service %s for template '%s': %v", serviceName, template.Name, err)
} else {
ec.templateServices[template.Name] = newService
templateStatus.ServiceName = newService.Name
templateStatus.PodTemplateHash = podTemplateHash
}
}
}
// createReplicaSetForTemplate initializes ReplicaSet with zero replicas for given experiment template
func (ec *experimentContext) createReplicaSetForTemplate(template v1alpha1.TemplateSpec, templateStatus *v1alpha1.TemplateStatus, logCtx *log.Entry, now metav1.Time) {
template.Replicas = pointer.Int32Ptr(0)
rs, err := ec.createReplicaSet(template, templateStatus.CollisionCount)
if err != nil {
logCtx.Warnf("Failed to create ReplicaSet: %v", err)
if !k8serrors.IsAlreadyExists(err) {
templateStatus.Status = v1alpha1.TemplateStatusError
templateStatus.Message = fmt.Sprintf("Failed to create ReplicaSet for template '%s': %v", template.Name, err)
}
}
if rs != nil {
ec.templateRSs[template.Name] = rs
templateStatus.LastTransitionTime = &now
}
}
func (ec *experimentContext) deleteTemplateService(svc *corev1.Service, templateStatus *v1alpha1.TemplateStatus, templateName string) {
if svc != nil {
err := ec.deleteService(*svc)
if err != nil {
templateStatus.Status = v1alpha1.TemplateStatusError
templateStatus.Message = fmt.Sprintf("Failed to delete Service for template '%s': %v", templateName, err)
} else {
ec.templateServices[templateName] = nil
templateStatus.ServiceName = ""
templateStatus.PodTemplateHash = ""
}
}
}
// calculateEnqueueDuration returns an appropriate duration to requeue the experiment. This will be
// the shortest of:
// * status.availableAt + spec.duration
// * status.templateStatuses[].lastTransitionTime + spec.progressDeadlineSeconds
// Returns nil if there is no need to requeue
func calculateEnqueueDuration(ex *v1alpha1.Experiment, newStatus *v1alpha1.ExperimentStatus) *time.Duration {
ex = ex.DeepCopy()
ex.Status = *(newStatus.DeepCopy())
if experimentutil.IsTerminating(ex) {
return nil
}
var candidateDuration *time.Duration
if ex.Status.AvailableAt != nil && ex.Spec.Duration != "" {
// Set candidate duration to status.availableAt + duration
passedDuration, timeRemaining := experimentutil.PassedDurations(ex)
if !passedDuration {
candidateDuration = &timeRemaining
}
}
deadlineSeconds := defaults.GetExperimentProgressDeadlineSecondsOrDefault(ex)
now := timeutil.Now()
for _, template := range ex.Spec.Templates {
// Set candidate to the earliest of LastTransitionTime + progressDeadlineSeconds
ts := experimentutil.GetTemplateStatus(ex.Status, template.Name)
if ts == nil || (ts.Status != v1alpha1.TemplateStatusProgressing && ts.Status != v1alpha1.TemplateStatusRunning) {
continue
}
desiredReplicaCount := experimentutil.CalculateTemplateReplicasCount(ex, template)
// only requeue if we are not meeting our desired replicas, since if we are at our desired
// replicas, then theres nothing to check on
if ts.AvailableReplicas != desiredReplicaCount && ts.LastTransitionTime != nil {
progressDeadlineDuration := ts.LastTransitionTime.Add(time.Second * time.Duration(deadlineSeconds)).Sub(now)
if candidateDuration == nil || progressDeadlineDuration < *candidateDuration {
candidateDuration = &progressDeadlineDuration
}
}
}
return candidateDuration
}
// reconcileAnalysisRun reconciles a single analysis run, creating or terminating it as necessary.
// Updates the analysis run statuses, which may subsequently fail the experiment.
func (ec *experimentContext) reconcileAnalysisRun(analysis v1alpha1.ExperimentAnalysisTemplateRef, dryRunMetrics []v1alpha1.DryRun, measurementRetentionMetrics []v1alpha1.MeasurementRetention, analysisRunMetadata *v1alpha1.AnalysisRunMetadata) {
logCtx := ec.log.WithField("analysis", analysis.Name)
logCtx.Infof("Reconciling analysis")
prevStatus := experimentutil.GetAnalysisRunStatus(ec.ex.Status, analysis.Name)
if prevStatus == nil {
prevStatus = &v1alpha1.ExperimentAnalysisRunStatus{
Name: analysis.Name,
}
}
newStatus := prevStatus.DeepCopy()
// setAnalysisRunStatus is a convenience method to:
// 1. update the runStatus
// 2. log a message and emit an event on status changes
defer func() {
if prevStatus.Phase != newStatus.Phase && newStatus.Phase != "" {
msg := fmt.Sprintf("AnalysisRun '%s' transitioned from %s -> %s", analysis.Name, prevStatus.Phase, newStatus.Phase)
if newStatus.Message != "" {
msg = msg + ": " + newStatus.Message
}
eventType := corev1.EventTypeNormal
switch newStatus.Phase {
case v1alpha1.AnalysisPhaseFailed, v1alpha1.AnalysisPhaseError, v1alpha1.AnalysisPhaseInconclusive:
eventType = corev1.EventTypeWarning
}
ec.recorder.Eventf(ec.ex, record.EventOptions{EventType: eventType, EventReason: "AnalysisRun" + string(newStatus.Phase)}, msg)
}
experimentutil.SetAnalysisRunStatus(ec.newStatus, *newStatus)
}()
if ec.ex.Status.AvailableAt == nil {
// If we are not not available yet, don't start any runs
if analysis.ClusterScope {
if err := ec.verifyClusterAnalysisTemplate(analysis); err != nil {
msg := fmt.Sprintf("ClusterAnalysisTemplate verification failed for analysis '%s': %v", analysis.Name, err.Error())
newStatus.Phase = v1alpha1.AnalysisPhaseError
newStatus.Message = msg
logCtx.Warn(msg)
}
} else {
if err := ec.verifyAnalysisTemplate(analysis); err != nil {
msg := fmt.Sprintf("AnalysisTemplate verification failed for analysis '%s': %v", analysis.Name, err.Error())
newStatus.Phase = v1alpha1.AnalysisPhaseError
newStatus.Message = msg
logCtx.Warn(msg)
}
}
return
}
if prevStatus.AnalysisRun == "" {
// AnalysisRun needs to be created (unless we are terminating)
if ec.isTerminating {
logCtx.Warnf("Skipping AnalysisRun creation for analysis %s: experiment is terminating", analysis.Name)
return
}
run, err := ec.createAnalysisRun(analysis, dryRunMetrics, measurementRetentionMetrics, analysisRunMetadata)
if err != nil {
msg := fmt.Sprintf("Failed to create AnalysisRun for analysis '%s': %v", analysis.Name, err.Error())
newStatus.Phase = v1alpha1.AnalysisPhaseError
newStatus.Message = msg
logCtx.Warn(msg)
} else {
newStatus.Phase = v1alpha1.AnalysisPhasePending
newStatus.AnalysisRun = run.Name
logCtx.Infof("Created %s", run.Name)
}
return
}
// If we get here, analysis run has been previously created and we are just checking its status
if prevStatus.Phase.Completed() {
// runStatus is already completed. nothing to do
return
}
run, err := ec.analysisRunLister.AnalysisRuns(ec.ex.Namespace).Get(prevStatus.AnalysisRun)
if err != nil {
newStatus.Phase = v1alpha1.AnalysisPhaseError
newStatus.Message = err.Error()
return
}
if ec.isTerminating {
if !run.Status.Phase.Completed() && !run.Spec.Terminate {
ec.recorder.Eventf(ec.ex, record.EventOptions{EventReason: "AnalysisRunTerminating"}, "Terminating %s (%s)", analysis.Name, run.Name)
analysisRunIf := ec.argoProjClientset.ArgoprojV1alpha1().AnalysisRuns(ec.ex.Namespace)
err := analysisutil.TerminateRun(analysisRunIf, run.Name)
if err != nil {
newStatus.Phase = v1alpha1.AnalysisPhaseError
newStatus.Message = err.Error()
}
}
return
}
newStatus.Phase = run.Status.Phase
newStatus.Message = run.Status.Message
}
// createAnalysisRun creates the analysis run. If an existing runs exists with same name, is
// semantically equal, and is not complete, returns the existing one, otherwise creates a new
// run with a collision counter increase.
func (ec *experimentContext) createAnalysisRun(analysis v1alpha1.ExperimentAnalysisTemplateRef, dryRunMetrics []v1alpha1.DryRun, measurementRetentionMetrics []v1alpha1.MeasurementRetention, analysisRunMetadata *v1alpha1.AnalysisRunMetadata) (*v1alpha1.AnalysisRun, error) {
analysisRunIf := ec.argoProjClientset.ArgoprojV1alpha1().AnalysisRuns(ec.ex.Namespace)
args, err := ec.ResolveAnalysisRunArgs(analysis.Args)
if err != nil {
return nil, err
}
run, err := ec.newAnalysisRun(analysis, args, dryRunMetrics, measurementRetentionMetrics, analysisRunMetadata)
if err != nil {
return nil, err
}
return analysisutil.CreateWithCollisionCounter(ec.log, analysisRunIf, *run)
}
func (ec *experimentContext) ResolveAnalysisRunArgs(args []v1alpha1.Argument) ([]v1alpha1.Argument, error) {
resolvedArgs := []v1alpha1.Argument{}
for _, arg := range args {
resolvedArg := v1alpha1.Argument{Name: arg.Name}
if arg.Value != nil {
value, err := templateutil.ResolveExperimentArgsValue(*arg.Value, ec.ex, ec.templateRSs)
if err != nil {
return nil, err
}
resolvedArg.Value = &value
}
resolvedArgs = append(resolvedArgs, resolvedArg)
}
return resolvedArgs, nil
}
func (ec *experimentContext) calculateStatus() *v1alpha1.ExperimentStatus {
prevStatus := ec.newStatus.DeepCopy()
switch ec.newStatus.Phase {
case "":
ec.newStatus.Phase = v1alpha1.AnalysisPhasePending
case v1alpha1.AnalysisPhasePending, v1alpha1.AnalysisPhaseRunning:
templateStatus, templateMessage := ec.assessTemplates()
analysesStatus, analysesMessage := ec.assessAnalysisRuns()
if templateStatus == v1alpha1.AnalysisPhaseRunning && ec.newStatus.AvailableAt == nil {
now := timeutil.MetaNow()
ec.newStatus.AvailableAt = &now
ec.log.Infof("Marked AvailableAt: %v", now)
}
if templateStatus.Completed() {
analysisRun := analysesStatus.Completed() || experimentutil.HasRequiredAnalysisRuns(ec.ex)
if templateStatus == v1alpha1.AnalysisPhaseSuccessful && analysisRun {
// If the templates have completed successfully (e.g. it ran without degrading for
// the entire duration), and there are required analysis runs or they have completed, then
// the status of the Experiment is deferred to the status of the analyses results.
ec.newStatus.Phase = analysesStatus
ec.newStatus.Message = analysesMessage
} else {
// Otherwise, use the Failed/Error template status as the Experiment status
ec.newStatus.Phase = templateStatus
ec.newStatus.Message = templateMessage
}
} else {
if analysesStatus.Completed() && analysesStatus != v1alpha1.AnalysisPhaseSuccessful {
// The templates are still Running, but analysis failed, errored or was inconclusive
// We will now fail the experiment.
ec.newStatus.Phase = analysesStatus
ec.newStatus.Message = analysesMessage
} else if experimentutil.RequiredAnalysisRunsSuccessful(ec.ex, ec.newStatus) {
// All the required analysis runs have completed successfully so we can conclude the experiment
// successfully.
ec.newStatus.Phase = analysesStatus
ec.newStatus.Message = analysesMessage
} else {
// The templates are still Running/Progressing, and the analysis are either still
// Running/Pending/Successful.
ec.newStatus.Phase = templateStatus
ec.newStatus.Message = templateMessage
}
}
}
ec.newStatus = calculateExperimentConditions(ec.ex, *ec.newStatus)
if prevStatus.Phase != ec.newStatus.Phase {
eventType := corev1.EventTypeNormal
switch ec.newStatus.Phase {
case v1alpha1.AnalysisPhaseError, v1alpha1.AnalysisPhaseFailed, v1alpha1.AnalysisPhaseInconclusive:
eventType = corev1.EventTypeWarning
}
ec.recorder.Eventf(ec.ex, record.EventOptions{EventType: eventType, EventReason: "Experiment" + string(ec.newStatus.Phase)}, "Experiment transitioned from %s -> %s", prevStatus.Phase, ec.newStatus.Phase)
}
return ec.newStatus
}
// assessTemplates examines at all the template statuses, and returns the worst of them to be
// considered as the experiment status, along with the message
func (ec *experimentContext) assessTemplates() (v1alpha1.AnalysisPhase, string) {
worstStatus := v1alpha1.TemplateStatusSuccessful
message := ""
for _, template := range ec.ex.Spec.Templates {
templateStatus := experimentutil.GetTemplateStatus(*ec.newStatus, template.Name)
if templateStatus == nil {
worstStatus = experimentutil.Worst(worstStatus, v1alpha1.TemplateStatusProgressing)
} else {
if experimentutil.TemplateIsWorse(worstStatus, templateStatus.Status) {
worstStatus = templateStatus.Status
message = templateStatus.Message
}
}
}
switch worstStatus {
case v1alpha1.TemplateStatusProgressing:
return v1alpha1.AnalysisPhasePending, message
case v1alpha1.TemplateStatusFailed:
return v1alpha1.AnalysisPhaseFailed, message
case v1alpha1.TemplateStatusError:
return v1alpha1.AnalysisPhaseError, message
case v1alpha1.TemplateStatusSuccessful:
return v1alpha1.AnalysisPhaseSuccessful, message
}
return v1alpha1.AnalysisPhaseRunning, message
}
// assessTemplates examines all the analysisrun statuses, and returns the worst of the statuses.
// This status will be under consideration as the experiment status (dependant on other factors).
// Any Failed, Error, Inconclusive runs will cause the Experiment to complete prematurely. If there
// are no analyses, will return AnalysisPhaseSuccessful.
func (ec *experimentContext) assessAnalysisRuns() (v1alpha1.AnalysisPhase, string) {
worstStatus := v1alpha1.AnalysisPhaseSuccessful
message := ""
for _, a := range ec.ex.Spec.Analyses {
as := experimentutil.GetAnalysisRunStatus(*ec.newStatus, a.Name)
if analysisutil.IsWorse(worstStatus, as.Phase) {
worstStatus = as.Phase
message = as.Message
}
}
if experimentutil.RequiredAnalysisRunsSuccessful(ec.ex, ec.newStatus) && analysisutil.IsWorse(worstStatus, v1alpha1.AnalysisPhaseRunning) {
return v1alpha1.AnalysisPhaseSuccessful, requiredAnalysisCompletedMessage
}
if worstStatus == v1alpha1.AnalysisPhasePending {
// since this will be used as experiment status, we should return Running instead of Pending
worstStatus = v1alpha1.AnalysisPhaseRunning
}
return worstStatus, message
}
// newAnalysisRun generates an AnalysisRun from the experiment and template
func (ec *experimentContext) newAnalysisRun(analysis v1alpha1.ExperimentAnalysisTemplateRef, args []v1alpha1.Argument, dryRunMetrics []v1alpha1.DryRun, measurementRetentionMetrics []v1alpha1.MeasurementRetention, analysisRunMetadata *v1alpha1.AnalysisRunMetadata) (*v1alpha1.AnalysisRun, error) {
if analysis.ClusterScope {
analysisTemplates, clusterAnalysisTemplates, err := ec.getAnalysisTemplatesFromClusterAnalysis(analysis)
if err != nil {
return nil, err
}
name := fmt.Sprintf("%s-%s", ec.ex.Name, analysis.Name)
runLabels := map[string]string{}
runAnnotations := map[string]string{}
instanceID := analysisutil.GetInstanceID(ec.ex)
if instanceID != "" {
runLabels[v1alpha1.LabelKeyControllerInstanceID] = ec.ex.Labels[v1alpha1.LabelKeyControllerInstanceID]
}
if analysisRunMetadata != nil {
for k, v := range analysisRunMetadata.Labels {
runLabels[k] = v
}
for k, v := range analysisRunMetadata.Annotations {
runAnnotations[k] = v
}
}
run, err := analysisutil.NewAnalysisRunFromTemplates(analysisTemplates, clusterAnalysisTemplates, args, dryRunMetrics, measurementRetentionMetrics, runLabels, runAnnotations, name, "", ec.ex.Namespace)
if err != nil {
return nil, err
}
run.OwnerReferences = []metav1.OwnerReference{*metav1.NewControllerRef(ec.ex, controllerKind)}
return run, nil
} else {
analysisTemplates, clusterAnalysisTemplates, err := ec.getAnalysisTemplatesFromAnalysis(analysis)
if err != nil {
return nil, err
}
name := fmt.Sprintf("%s-%s", ec.ex.Name, analysis.Name)
runLabels := map[string]string{}
runAnnotations := map[string]string{}
instanceID := analysisutil.GetInstanceID(ec.ex)
if instanceID != "" {
runLabels[v1alpha1.LabelKeyControllerInstanceID] = ec.ex.Labels[v1alpha1.LabelKeyControllerInstanceID]
}
if analysisRunMetadata != nil {
for k, v := range analysisRunMetadata.Labels {
runLabels[k] = v
}
for k, v := range analysisRunMetadata.Annotations {
runAnnotations[k] = v
}
}
run, err := analysisutil.NewAnalysisRunFromTemplates(analysisTemplates, clusterAnalysisTemplates, args, dryRunMetrics, measurementRetentionMetrics, runLabels, runAnnotations, name, "", ec.ex.Namespace)
if err != nil {
return nil, err
}
run.OwnerReferences = []metav1.OwnerReference{*metav1.NewControllerRef(ec.ex, controllerKind)}
return run, nil
}
}
func (ec *experimentContext) getAnalysisTemplatesFromClusterAnalysis(analysis v1alpha1.ExperimentAnalysisTemplateRef) ([]*v1alpha1.AnalysisTemplate, []*v1alpha1.ClusterAnalysisTemplate, error) {
clusterTemplate, err := ec.clusterAnalysisTemplateLister.Get(analysis.TemplateName)
if err != nil {
return nil, nil, err
}
templates := make([]*v1alpha1.AnalysisTemplate, 0)
clusterTemplates := make([]*v1alpha1.ClusterAnalysisTemplate, 0)
clusterTemplates = append(clusterTemplates, clusterTemplate)
if clusterTemplate.Spec.Templates != nil {
innerTemplates, innerClusterTemplates, innerErr := ec.getAnalysisTemplatesFromRefs(&clusterTemplate.Spec.Templates)
if innerErr != nil {
return nil, nil, innerErr
}
clusterTemplates = append(clusterTemplates, innerClusterTemplates...)
templates = append(templates, innerTemplates...)
}
uniqueTemplates, uniqueClusterTemplates := analysisutil.FilterUniqueTemplates(templates, clusterTemplates)
return uniqueTemplates, uniqueClusterTemplates, nil
}
func (ec *experimentContext) getAnalysisTemplatesFromAnalysis(analysis v1alpha1.ExperimentAnalysisTemplateRef) ([]*v1alpha1.AnalysisTemplate, []*v1alpha1.ClusterAnalysisTemplate, error) {
template, err := ec.analysisTemplateLister.AnalysisTemplates(ec.ex.Namespace).Get(analysis.TemplateName)
if err != nil {
return nil, nil, err
}
templates := make([]*v1alpha1.AnalysisTemplate, 0)
clusterTemplates := make([]*v1alpha1.ClusterAnalysisTemplate, 0)
templates = append(templates, template)
if template.Spec.Templates != nil {
innerTemplates, innerClusterTemplates, innerErr := ec.getAnalysisTemplatesFromRefs(&template.Spec.Templates)
if innerErr != nil {
return nil, nil, innerErr
}
clusterTemplates = append(clusterTemplates, innerClusterTemplates...)
templates = append(templates, innerTemplates...)
}
uniqueTemplates, uniqueClusterTemplates := analysisutil.FilterUniqueTemplates(templates, clusterTemplates)
return uniqueTemplates, uniqueClusterTemplates, nil
}
func (ec *experimentContext) getAnalysisTemplatesFromRefs(templateRefs *[]v1alpha1.AnalysisTemplateRef) ([]*v1alpha1.AnalysisTemplate, []*v1alpha1.ClusterAnalysisTemplate, error) {
templates := make([]*v1alpha1.AnalysisTemplate, 0)
clusterTemplates := make([]*v1alpha1.ClusterAnalysisTemplate, 0)
for _, templateRef := range *templateRefs {
if templateRef.ClusterScope {
template, err := ec.clusterAnalysisTemplateLister.Get(templateRef.TemplateName)
if err != nil {
if k8serrors.IsNotFound(err) {
ec.log.Warnf("ClusterAnalysisTemplate '%s' not found", templateRef.TemplateName)
}
return nil, nil, err
}
clusterTemplates = append(clusterTemplates, template)
// Look for nested templates
if template.Spec.Templates != nil {
innerTemplates, innerClusterTemplates, innerErr := ec.getAnalysisTemplatesFromRefs(&template.Spec.Templates)
if innerErr != nil {
return nil, nil, innerErr
}
clusterTemplates = append(clusterTemplates, innerClusterTemplates...)
templates = append(templates, innerTemplates...)
}
} else {
template, err := ec.analysisTemplateLister.AnalysisTemplates(ec.ex.Namespace).Get(templateRef.TemplateName)
if err != nil {
if k8serrors.IsNotFound(err) {
ec.log.Warnf("AnalysisTemplate '%s' not found", templateRef.TemplateName)
}
return nil, nil, err
}
templates = append(templates, template)
// Look for nested templates
if template.Spec.Templates != nil {
innerTemplates, innerClusterTemplates, innerErr := ec.getAnalysisTemplatesFromRefs(&template.Spec.Templates)
if innerErr != nil {
return nil, nil, innerErr
}
clusterTemplates = append(clusterTemplates, innerClusterTemplates...)
templates = append(templates, innerTemplates...)
}
}
}
uniqueTemplates, uniqueClusterTemplates := analysisutil.FilterUniqueTemplates(templates, clusterTemplates)
return uniqueTemplates, uniqueClusterTemplates, nil
}
// verifyAnalysisTemplate verifies an AnalysisTemplate. For now, it simply means that it exists
func (ec *experimentContext) verifyAnalysisTemplate(analysis v1alpha1.ExperimentAnalysisTemplateRef) error {
_, err := ec.analysisTemplateLister.AnalysisTemplates(ec.ex.Namespace).Get(analysis.TemplateName)
return err
}
// verifyAnalysisTemplate verifies a ClusterAnalysisTemplate. For now, it simply means that it exists
func (ec *experimentContext) verifyClusterAnalysisTemplate(analysis v1alpha1.ExperimentAnalysisTemplateRef) error {
_, err := ec.clusterAnalysisTemplateLister.Get(analysis.TemplateName)
return err
}