@@ -133,10 +133,10 @@ type submitQueueInterruptedObject struct {
133133// SubmitQueue will merge PR which meet a set of requirements.
134134// PR must have LGTM after the last commit
135135// PR must have passed all github CI checks
136- // The google internal jenkins instance must be passing the JobNames e2e tests
136+ // The google internal jenkins instance must be passing the BlockingJobNames e2e tests
137137type SubmitQueue struct {
138138 githubConfig * github.Config
139- JobNames []string
139+ BlockingJobNames []string
140140 WeakStableJobNames []string
141141
142142 // If FakeE2E is true, don't try to connect to JenkinsHost, all jobs are passing.
@@ -302,7 +302,7 @@ func (sq *SubmitQueue) internalInitialize(config *github.Config, features *featu
302302 defer sq .Unlock ()
303303
304304 // Clean up all of our flags which we wish --flag="" to mean []string{}
305- sq .JobNames = cleanStringSlice (sq .JobNames )
305+ sq .BlockingJobNames = cleanStringSlice (sq .BlockingJobNames )
306306 sq .WeakStableJobNames = cleanStringSlice (sq .WeakStableJobNames )
307307 sq .RequiredStatusContexts = cleanStringSlice (sq .RequiredStatusContexts )
308308 sq .RequiredRetestContexts = cleanStringSlice (sq .RequiredRetestContexts )
@@ -313,7 +313,7 @@ func (sq *SubmitQueue) internalInitialize(config *github.Config, features *featu
313313 // TODO: This is not how injection for tests should work.
314314 if sq .FakeE2E {
315315 sq .e2e = & fake_e2e.FakeE2ETester {
316- JobNames : sq .JobNames ,
316+ JobNames : sq .BlockingJobNames ,
317317 WeakStableJobNames : sq .WeakStableJobNames ,
318318 }
319319 } else {
@@ -325,7 +325,7 @@ func (sq *SubmitQueue) internalInitialize(config *github.Config, features *featu
325325 }
326326
327327 sq .e2e = (& e2e.RealE2ETester {
328- JobNames : sq .JobNames ,
328+ BlockingJobNames : sq .BlockingJobNames ,
329329 WeakStableJobNames : sq .WeakStableJobNames ,
330330 BuildStatus : map [string ]e2e.BuildInfo {},
331331 GoogleGCSBucketUtils : gcs ,
@@ -387,7 +387,7 @@ func (sq *SubmitQueue) EachLoop() error {
387387
388388// AddFlags will add any request flags to the cobra `cmd`
389389func (sq * SubmitQueue ) AddFlags (cmd * cobra.Command , config * github.Config ) {
390- cmd .Flags ().StringSliceVar (& sq .JobNames , "jenkins-jobs" , []string {
390+ cmd .Flags ().StringSliceVar (& sq .BlockingJobNames , "jenkins-jobs" , []string {
391391 "kubelet-gce-e2e-ci" ,
392392 "kubernetes-build" ,
393393 "kubernetes-test-go" ,
0 commit comments