Skip to content

Commit

Permalink
[Urgent Change] Update the default gcs bucket to test-platform-result…
Browse files Browse the repository at this point in the history
…s per DPTPs change. (#136)

* Update the default gcs bucket to test-platform-results per DPTPs change.

* Update the default gcs bucket to test-platform-results per DPTPs change.

* Remove spaces
  • Loading branch information
calebevans authored Jan 10, 2024
1 parent 72f4b19 commit 3cf4d29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/report/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def validate_verbose_test_failure_reporting_ticket_limit(
@click.option(
"--gcs-bucket",
help="The name of the GCS bucket that holds OpenShift CI logs",
default="origin-ci-test",
default="test-platform-results",
type=click.STRING,
)
@click.option(
Expand Down
6 changes: 3 additions & 3 deletions cli/report/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def add_passing_job_comment(self, job: Job, jira: Jira, issue_id: str) -> None:
This job has been run successfully since this bug was filed. Please verify that this bug is still relevant and close it if needed.
*Passing Run Link:* https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/{job.name}/{job.build_id}
*Passing Run Link:* https://prow.ci.openshift.org/view/gs/test-platform-results/logs/{job.name}/{job.build_id}
*Passing Run Build ID:* {job.build_id}
Expand Down Expand Up @@ -397,7 +397,7 @@ def add_duplicate_comment(
comment = f"""
A duplicate failure was identified in a recent run of the {job.name} job:
*Link:* https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/{job.name}/{job.build_id}
*Link:* https://prow.ci.openshift.org/view/gs/test-platform-results/logs/{job.name}/{job.build_id}
*Build ID:* {job.build_id}
*Classification:* {classification}
*Failed Step:* {failed_step}
Expand Down Expand Up @@ -509,7 +509,7 @@ def _get_issue_description(
Returns:
str: String object representing the description.
"""
link_line = f"*Prow Job Link:* [{job_name} #{build_id}|https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/{job_name}/{build_id}]"
link_line = f"*Prow Job Link:* [{job_name} #{build_id}|https://prow.ci.openshift.org/view/gs/test-platform-results/logs/{job_name}/{build_id}]"
build_id_line = f"*Build ID:* {build_id}"
firewatch_link_line = f"This {'issue' if success_issue else 'bug'} was filed using [firewatch in OpenShift CI|https://github.com/CSPI-QE/firewatch)]"

Expand Down
4 changes: 2 additions & 2 deletions docs/contribution_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ We strive to maintain a friendly and inclusive community. We have not yet establ
### Container

1. Find a failed prow job you would like to test against.
- **Example**: [periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws #1696039978221441024](https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws/1696039978221441024)
- **Example**: [periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws #1696039978221441024](https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws/1696039978221441024)
2. Fill out `firewatch/development/env.list`
- Use the ["Defining Environment Variables"](#defining-environment-variables) section to help
3. From the root of this repository, run `make container-build-test` to execute `firewatch report` using the values provided above.
Expand All @@ -48,7 +48,7 @@ We strive to maintain a friendly and inclusive community. We have not yet establ
1. Create your development environment if you haven't already (execute from the root of the firewatch repository):
- `$ make dev-environment`
2. Find a failed prow job you would like to test against.
- **Example**: [periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws #1696039978221441024](https://prow.ci.openshift.org/view/gs/origin-ci-test/logs/periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws/1696039978221441024)
- **Example**: [periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws #1696039978221441024](https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-pipelines-release-tests-release-v1.11-openshift-pipelines-ocp4.14-lp-interop-openshift-pipelines-interop-aws/1696039978221441024)
2. Export the required environment varaibles:
- Use the ["Defining Environment Variables"](#defining-environment-variables) section to help

Expand Down

0 comments on commit 3cf4d29

Please sign in to comment.