@@ -48,12 +48,12 @@ def get_amdBaseImage_for_arm(self, payload):
48
48
else :
49
49
print ("Warning! Fail to get the corresponding amd64 base image, use the default one:%s" % self .base_image )
50
50
51
- def get_job_data (self , payload , upgrade_from , upgrade_to ):
51
+ def get_job_data (self , payload , upgrade_from , upgrade_to , extra_env = None ):
52
52
data = {"job_execution_type" : "1" }
53
- env = None
54
53
if payload is not None and upgrade_from is not None and upgrade_to is not None :
55
54
print ("Error! You cannot run e2e and upgrade test at the same time!" )
56
55
sys .exit (1 )
56
+ env = None
57
57
# amd_latest env is must no mater what platforms you run
58
58
# support platforms: https://github.com/openshift/release-controller/blob/master/cmd/release-controller/sync_verify_prow.go#L203
59
59
amd_latest = "RELEASE_IMAGE_LATEST"
@@ -121,10 +121,26 @@ def get_job_data(self, payload, upgrade_from, upgrade_to):
121
121
self .get_amdBaseImage_for_arm (upgrade_from )
122
122
env = {"envs" : {amd_latest : self .base_image , arm_latest : upgrade_from }}
123
123
if env is not None :
124
+ if extra_env is not None :
125
+ old_env = env ["envs" ]
126
+ extra_env = self .string2Json (extra_env )
127
+ old_env .update (extra_env )
128
+ env ["envs" ] = old_env
124
129
data = {"job_execution_type" : "1" , "pod_spec_options" : env }
130
+ else :
131
+ if extra_env is not None :
132
+ env_json = self .string2Json (extra_env )
133
+ env = {"envs" : {"" }}
134
+ env ["envs" ] = env_json
135
+ data = {"job_execution_type" : "1" , "pod_spec_options" : env }
125
136
print (data )
126
137
return data
127
-
138
+
139
+ def string2Json (self , strings ):
140
+ pairs = [pair .split ('=' ) for pair in strings .split (',' )]
141
+ jsons = {key : value for key , value in pairs }
142
+ return jsons
143
+
128
144
def get_sha (self , url ):
129
145
res = requests .get (url = url , headers = self .get_github_headers ())
130
146
if res .status_code == 200 :
@@ -322,7 +338,7 @@ def run_required_jobs(self, channels, file_path, version):
322
338
self .run_job (job , None , None , None )
323
339
324
340
# run_job func runs job by calling the API
325
- def run_job (self , jobName , payload , upgrade_from , upgrade_to ):
341
+ def run_job (self , jobName , payload , upgrade_from , upgrade_to , extra_env = None ):
326
342
if jobName is None :
327
343
print ("Error! Please input the correct prow job name!" )
328
344
elif jobName .startswith ("periodic-ci-" ):
@@ -336,7 +352,7 @@ def run_job(self, jobName, payload, upgrade_from, upgrade_to):
336
352
337
353
res = requests .post (
338
354
url = url ,
339
- json = self .get_job_data (payload , upgrade_from , upgrade_to ),
355
+ json = self .get_job_data (payload , upgrade_from , upgrade_to , extra_env ),
340
356
headers = self .get_prow_headers (),
341
357
)
342
358
if res .status_code == 200 :
@@ -505,11 +521,12 @@ def get_cmd(job_id):
505
521
)
506
522
@click .option ("--upgrade_from" , help = "specify an original payload for upgrade test." )
507
523
@click .option ("--upgrade_to" , help = "specify a target payload for upgrade test." )
508
- def run_cmd (job_name , payload , upgrade_from , upgrade_to ):
524
+ @click .option ("--envs" , help = "specify ENV vars, multi are separated by commas, such as env1=xxx,env2=xxx" )
525
+ def run_cmd (job_name , payload , upgrade_from , upgrade_to , envs ):
509
526
"""Run a job and save results to /tmp/prow-jobs.csv. \n
510
527
For ARM test, we hard code a x86 image as the base image. Details: https://issues.redhat.com/browse/DPTP-3538
511
528
"""
512
- job .run_job (job_name , payload , upgrade_from , upgrade_to )
529
+ job .run_job (job_name , payload , upgrade_from , upgrade_to , envs )
513
530
514
531
515
532
@cli .command ("list" )
0 commit comments