File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ func GetENV(experimentDetails *experimentTypes.ExperimentDetails) {
14
14
experimentDetails .EngineName = types .Getenv ("CHAOSENGINE" , "" )
15
15
experimentDetails .ChaosDuration , _ = strconv .Atoi (types .Getenv ("TOTAL_CHAOS_DURATION" , "30" ))
16
16
experimentDetails .RampTime , _ = strconv .Atoi (types .Getenv ("RAMP_TIME" , "0" ))
17
+ experimentDetails .Delay , _ = strconv .Atoi (types .Getenv ("STATUS_CHECK_DELAY" , "2" ))
17
18
experimentDetails .Timeout , _ = strconv .Atoi (types .Getenv ("STATUS_CHECK_TIMEOUT" , "180" ))
18
19
experimentDetails .LIBImagePullPolicy = types .Getenv ("LIB_IMAGE_PULL_POLICY" , "Always" )
19
20
experimentDetails .LIBImage = types .Getenv ("LIB_IMAGE" , "ghcr.io/grafana/k6-operator:latest-runner" )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ type ExperimentDetails struct {
8
8
RampTime int
9
9
ChaosNamespace string
10
10
Timeout int
11
+ Delay int
11
12
LIBImagePullPolicy string
12
13
LIBImage string
13
14
ScriptSecretName string
You can’t perform that action at this time.
0 commit comments