-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathk6_initialize.go
190 lines (152 loc) · 6.56 KB
/
k6_initialize.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
package controllers
import (
"context"
"fmt"
"time"
"github.com/grafana/k6-operator/pkg/types"
"github.com/go-logr/logr"
"github.com/grafana/k6-operator/api/v1alpha1"
"github.com/grafana/k6-operator/pkg/cloud"
"github.com/grafana/k6-operator/pkg/resources/jobs"
batchv1 "k8s.io/api/batch/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
ctrl "sigs.k8s.io/controller-runtime"
)
// InitializeJobs creates jobs that will run initial checks for distributed test if any are necessary
func InitializeJobs(ctx context.Context, log logr.Logger, k6 *v1alpha1.TestRun, r *TestRunReconciler) (res ctrl.Result, err error) {
// initializer is a quick job so check in frequently
res = ctrl.Result{RequeueAfter: time.Second * 5}
cli := types.ParseCLI(k6.GetSpec().Arguments)
var initializer *batchv1.Job
if initializer, err = jobs.NewInitializerJob(k6, cli.ArchiveArgs); err != nil {
return res, err
}
log.Info(fmt.Sprintf("Initializer job is ready to start with image `%s` and command `%s`",
initializer.Spec.Template.Spec.Containers[0].Image, initializer.Spec.Template.Spec.Containers[0].Command))
if err = ctrl.SetControllerReference(k6, initializer, r.Scheme); err != nil {
log.Error(err, "Failed to set controller reference for the initialize job")
return res, err
}
if err = r.Create(ctx, initializer); err != nil {
log.Error(err, "Failed to launch k6 test initializer")
return res, err
}
return res, nil
}
func RunValidations(ctx context.Context, log logr.Logger, k6 *v1alpha1.TestRun, r *TestRunReconciler) (
res ctrl.Result, ready bool, err error,
) {
// initializer is a quick job so check in frequently
res = ctrl.Result{RequeueAfter: time.Second * 5}
cli := types.ParseCLI(k6.GetSpec().Arguments)
inspectOutput, inspectReady, err := inspectTestRun(ctx, log, k6, r.Client)
if err != nil {
// Cloud output test run is not created yet at this point, so sending
// events is possible only for PLZ test run.
if v1alpha1.IsTrue(k6, v1alpha1.CloudPLZTestRun) {
// This error won't allow to start a test so let k6 Cloud know of it
events := cloud.ErrorEvent(cloud.K6OperatorStartError).
WithDetail(fmt.Sprintf("Failed to inspect the test script: %v", err)).
WithAbort()
cloud.SendTestRunEvents(r.k6CloudClient, k6.TestRunID(), log, events)
} else {
// if there is any error, we have to reflect it on the K6 manifest
k6.GetStatus().Stage = "error"
if _, err := r.UpdateStatus(ctx, k6, log); err != nil {
return ctrl.Result{}, ready, err
}
return ctrl.Result{}, ready, nil
}
// inspectTestRun made a log message already so just return without requeue
return ctrl.Result{}, ready, err
}
if !inspectReady {
return res, ready, nil
}
log.Info(fmt.Sprintf("k6 inspect: %+v", inspectOutput))
if int32(inspectOutput.MaxVUs) < k6.GetSpec().Parallelism {
err = fmt.Errorf("number of instances > number of VUs")
// TODO maybe change this to a warning and simply set parallelism = maxVUs and proceed with execution?
// But logr doesn't seem to have warning level by default, only with V() method...
// It makes sense to return to this after / during logr VS logrus issue https://github.com/grafana/k6-operator/issues/84
log.Error(err, "Parallelism argument cannot be larger than maximum VUs in the script",
"maxVUs", inspectOutput.MaxVUs,
"parallelism", k6.GetSpec().Parallelism)
k6.GetStatus().Stage = "error"
if _, err := r.UpdateStatus(ctx, k6, log); err != nil {
return ctrl.Result{}, ready, err
}
// Don't requeue in case of this error; unless it's made into a warning as described above.
return ctrl.Result{}, ready, nil
}
if cli.HasCloudOut {
v1alpha1.UpdateCondition(k6, v1alpha1.CloudTestRun, metav1.ConditionTrue)
if v1alpha1.IsUnknown(k6, v1alpha1.CloudTestRunCreated) {
// In case of PLZ test run, this is already set to true
v1alpha1.UpdateCondition(k6, v1alpha1.CloudTestRunCreated, metav1.ConditionFalse)
}
v1alpha1.UpdateCondition(k6, v1alpha1.CloudTestRunFinalized, metav1.ConditionFalse)
} else {
v1alpha1.UpdateCondition(k6, v1alpha1.CloudTestRun, metav1.ConditionFalse)
}
if _, err := r.UpdateStatus(ctx, k6, log); err != nil {
return ctrl.Result{}, ready, err
}
ready = true
return res, ready, nil
}
// SetupCloudTest inspects the output of initializer and creates a new
// test run. It is meant to be used only in cloud output mode.
func SetupCloudTest(ctx context.Context, log logr.Logger, k6 *v1alpha1.TestRun, r *TestRunReconciler) (res ctrl.Result, err error) {
res = ctrl.Result{RequeueAfter: time.Second * 5}
inspectOutput, inspectReady, err := inspectTestRun(ctx, log, k6, r.Client)
if err != nil {
// This *shouldn't* fail since it was already done once. Don't requeue.
// Alternatively: store inspect options in K6 Status? Get rid off reading logs?
return ctrl.Result{}, nil
}
if !inspectReady {
return res, nil
}
token, tokenReady, err := loadToken(ctx, log, r.Client, "", nil)
if err != nil {
// An error here means a very likely mis-configuration of the token.
// Consider updating status to error to let a user know quicker?
log.Error(err, "A problem while getting token.")
return ctrl.Result{}, nil
}
if !tokenReady {
return res, nil
}
host := getEnvVar(k6.GetSpec().Runner.Env, "K6_CLOUD_HOST")
if v1alpha1.IsFalse(k6, v1alpha1.CloudTestRunCreated) {
// If CloudTestRunCreated has just been updated, wait for a bit before
// acting, to avoid race condition between different reconcile loops.
t, _ := v1alpha1.LastUpdate(k6, v1alpha1.CloudTestRunCreated)
if time.Since(t) < 5*time.Second {
return ctrl.Result{RequeueAfter: time.Second * 2}, nil
}
if len(inspectOutput.TestName()) < 1 {
// script has already been parsed for initializer job definition,
// so this is safe
script, _ := k6.GetSpec().ParseScript()
inspectOutput.SetTestName(script.Filename)
}
if testRunData, err := cloud.CreateTestRun(inspectOutput, k6.GetSpec().Parallelism, host, token, log); err != nil {
log.Error(err, "Failed to create a new cloud test run.")
return res, nil
} else {
log = log.WithValues("testRunId", testRunData.ReferenceID)
log.Info(fmt.Sprintf("Created cloud test run: %s", testRunData.ReferenceID))
k6.GetStatus().TestRunID = testRunData.ReferenceID
v1alpha1.UpdateCondition(k6, v1alpha1.CloudTestRunCreated, metav1.ConditionTrue)
k6.GetStatus().AggregationVars = cloud.EncodeAggregationConfig(testRunData.ConfigOverride)
_, err := r.UpdateStatus(ctx, k6, log)
// log.Info(fmt.Sprintf("Debug updating status after create %v", updateHappened))
if err != nil {
return ctrl.Result{}, err
}
}
}
return ctrl.Result{}, nil
}