Skip to content

Commit 7d2874d

Browse files
committed
update job tool to support specific ENV vars
1 parent b52869d commit 7d2874d

File tree

3 files changed

+34
-8
lines changed

3 files changed

+34
-8
lines changed

prow/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ Debug mode is off
7474
Returned job id: 3ebe0a6e-ea5c-4c96-9ca4-295074f9eaa3
7575
periodic-ci-openshift-openshift-tests-private-release-4.11-amd64-nightly-4.11-upgrade-from-stable-4.10-gcp-ipi-disconnected-private-p2-f14 None 3ebe0a6e-ea5c-4c96-9ca4-295074f9eaa3 2023-06-07T06:15:10Z https://qe-private-deck-ci.apps.ci.l2s4.p1.openshiftapps.com/view/gs/qe-private-deck/logs/periodic-ci-openshift-openshift-tests-private-release-4.11-amd64-nightly-4.11-upgrade-from-stable-4.10-gcp-ipi-disconnected-private-p2-f14/1666327924111839232
7676
```
77+
- An example to run a job with specific Envs.
78+
```console
79+
MacBook-Pro:job jianzhang$ job run --envs OMR_IMAGE=openshift-mirror-registry-rhel8:v1.3.8-2 periodic-ci-quay-quay-tests-master-omr-ocp415-unreleased-quay-omr-tests-omr-ocp415-disconnected-unreleased
80+
Debug mode is off
81+
{'job_execution_type': '1', 'pod_spec_options': {'envs': {'OMR_IMAGE': 'openshift-mirror-registry-rhel8:v1.3.8-2'}}}
82+
Returned job id: 02a12b66-9a64-42db-8c28-bf785bbca501
83+
periodic-ci-quay-quay-tests-master-omr-ocp415-unreleased-quay-omr-tests-omr-ocp415-disconnected-unreleased None 02a12b66-9a64-42db-8c28-bf785bbca501 2023-12-25T08:37:30Z https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/periodic-ci-quay-quay-tests-master-omr-ocp415-unreleased-quay-omr-tests-omr-ocp415-disconnected-unreleased/1739203704738811904
84+
Done.
85+
```
7786
7887
### Debug failure job
7988
- `Error code: 500, reason: Internal Server Error`

prow/job/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (2, 1, 0)
1+
version_info = (2, 1, 1)
22
version = '.'.join(str(c) for c in version_info)

prow/job/job.py

+24-7
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ def get_amdBaseImage_for_arm(self, payload):
4848
else:
4949
print("Warning! Fail to get the corresponding amd64 base image, use the default one:%s" % self.base_image)
5050

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):
5252
data = {"job_execution_type": "1"}
53-
env = None
5453
if payload is not None and upgrade_from is not None and upgrade_to is not None:
5554
print("Error! You cannot run e2e and upgrade test at the same time!")
5655
sys.exit(1)
56+
env = None
5757
# amd_latest env is must no mater what platforms you run
5858
# support platforms: https://github.com/openshift/release-controller/blob/master/cmd/release-controller/sync_verify_prow.go#L203
5959
amd_latest = "RELEASE_IMAGE_LATEST"
@@ -121,10 +121,26 @@ def get_job_data(self, payload, upgrade_from, upgrade_to):
121121
self.get_amdBaseImage_for_arm(upgrade_from)
122122
env = {"envs": {amd_latest: self.base_image, arm_latest: upgrade_from}}
123123
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
124129
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}
125136
print(data)
126137
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+
128144
def get_sha(self, url):
129145
res = requests.get(url=url, headers=self.get_github_headers())
130146
if res.status_code == 200:
@@ -322,7 +338,7 @@ def run_required_jobs(self, channels, file_path, version):
322338
self.run_job(job, None, None, None)
323339

324340
# 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):
326342
if jobName is None:
327343
print("Error! Please input the correct prow job name!")
328344
elif jobName.startswith("periodic-ci-"):
@@ -336,7 +352,7 @@ def run_job(self, jobName, payload, upgrade_from, upgrade_to):
336352

337353
res = requests.post(
338354
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),
340356
headers=self.get_prow_headers(),
341357
)
342358
if res.status_code == 200:
@@ -505,11 +521,12 @@ def get_cmd(job_id):
505521
)
506522
@click.option("--upgrade_from", help="specify an original payload for upgrade test.")
507523
@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):
509526
"""Run a job and save results to /tmp/prow-jobs.csv. \n
510527
For ARM test, we hard code a x86 image as the base image. Details: https://issues.redhat.com/browse/DPTP-3538
511528
"""
512-
job.run_job(job_name, payload, upgrade_from, upgrade_to)
529+
job.run_job(job_name, payload, upgrade_from, upgrade_to, envs)
513530

514531

515532
@cli.command("list")

0 commit comments

Comments
 (0)