File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ type ExecutorSpec struct {
40
40
41
41
// Image for kube-job
42
42
Image string `json:"image,omitempty"`
43
- // container executor binary arguments
43
+ // executor binary arguments
44
44
Args []string `json:"args,omitempty"`
45
- // container executor default binary command
45
+ // executor default binary command
46
46
Command []string `json:"command,omitempty"`
47
47
// container executor default image pull secrets
48
48
ImagePullSecrets []v1.LocalObjectReference `json:"imagePullSecrets,omitempty"`
Original file line number Diff line number Diff line change @@ -165,7 +165,9 @@ type ExecutionRequest struct {
165
165
TestSuiteSecretUUID string `json:"testSuiteSecretUUID,omitempty"`
166
166
// additional executor binary arguments
167
167
Args []string `json:"args,omitempty"`
168
- // container executor binary command
168
+ // usage mode for arguments
169
+ ArgsMode string `json:"argsMode,omitempty"`
170
+ // executor binary command
169
171
Command []string `json:"command,omitempty"`
170
172
// container executor image
171
173
Image string `json:"image,omitempty"`
Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ spec:
36
36
description : ExecutorSpec defines the desired state of Executor
37
37
properties :
38
38
args :
39
- description : container executor binary arguments
39
+ description : executor binary arguments
40
40
items :
41
41
type : string
42
42
type : array
43
43
command :
44
- description : container executor default binary command
44
+ description : executor default binary command
45
45
items :
46
46
type : string
47
47
type : array
Original file line number Diff line number Diff line change @@ -451,6 +451,9 @@ spec:
451
451
items :
452
452
type : string
453
453
type : array
454
+ argsMode :
455
+ description : usage mode for arguments
456
+ type : string
454
457
artifactRequest :
455
458
description : artifact request body for container executors with
456
459
test artifacts
@@ -471,7 +474,7 @@ spec:
471
474
- volumeMountPath
472
475
type : object
473
476
command :
474
- description : container executor binary command
477
+ description : executor binary command
475
478
items :
476
479
type : string
477
480
type : array
You can’t perform that action at this time.
0 commit comments