Skip to content

OCPBUGS-56853, OPRUN-3925: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support #364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

camilamacedo86
Copy link
Contributor

@camilamacedo86 camilamacedo86 commented May 29, 2025

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

 $ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
	go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

  Timeline >>
  STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
  [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
  << Timeline

  [FAILED] Unexpected error:
      <*errors.errorString | 0x14000050070>: 
      missing required platforms: [darwin/arm64]
      {
          s: "missing required platforms: [darwin/arm64]",
      }
  occurred
  In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

  Timeline >>
  STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
  [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
  << Timeline

  [FAILED] Unexpected error:
      <*errors.errorString | 0x140003f8e60>: 
      missing required platforms: [darwin/arm64]
      {
          s: "missing required platforms: [darwin/arm64]",
      }
  occurred
  In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

  Timeline >>
  STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
  [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
  << Timeline

  [FAILED] Unexpected error:
      <*errors.errorString | 0x140004ec340>: 
      missing required platforms: [darwin/arm64]
      {
          s: "missing required platforms: [darwin/arm64]",
      }
  occurred
  In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

  Timeline >>
  STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
  [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
  << Timeline

  [FAILED] Unexpected error:
      <*errors.errorString | 0x140003808c0>: 
      missing required platforms: [darwin/arm64]
      {
          s: "missing required platforms: [darwin/arm64]",
      }
  occurred
  In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
  [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
  /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
  [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
  /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
  [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
  /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
  [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
  /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

PS. A follow-up JIRA was created for us to check if we could validate the content as well.
However, it needs to be explanatory, for now we will check just the image
More info: https://issues.redhat.com/browse/OPRUN-3942

@openshift-ci openshift-ci bot requested review from grokspawn and oceanc80 May 29, 2025 10:29
@camilamacedo86 camilamacedo86 changed the title [Default Catalog Consistency Test] (feat) add check to validate multi-arch support OPRUN-3793: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support May 29, 2025
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label May 29, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented May 29, 2025

@camilamacedo86: This pull request references OPRUN-3793 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the epic to target the "4.20.0" version, but no target version was set.

In response to this:

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 29, 2025

@camilamacedo86: This pull request references OPRUN-3793 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the epic to target the "4.20.0" version, but no target version was set.

In response to this:

Add test to verify multiarch supported

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 29, 2025

@camilamacedo86: This pull request references OPRUN-3793 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the epic to target the "4.20.0" version, but no target version was set.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@camilamacedo86 camilamacedo86 changed the title OPRUN-3793: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support OCPBUGS-56853: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support May 29, 2025
@openshift-ci-robot
Copy link

@camilamacedo86: An error was encountered updating to the POST state for bug OCPBUGS-56853 on the Jira server at https://issues.redhat.com/. No known errors were detected, please see the full error message for details.

Full error message. No response returned: Post "https://issues.redhat.com/rest/api/2/issue/17017443/transitions": POST https://issues.redhat.com/rest/api/2/issue/17017443/transitions giving up after 5 attempt(s)

Please contact an administrator to resolve this issue, then request a bug refresh with /jira refresh.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot openshift-ci-robot added jira/severity-important Referenced Jira bug's severity is important for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. labels May 29, 2025
@openshift-ci-robot
Copy link

@camilamacedo86: This pull request references Jira Issue OCPBUGS-56853, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (4.20.0) matches configured target version for branch (4.20.0)
  • bug is in the state New, which is one of the valid states (NEW, ASSIGNED, POST)

No GitHub users were found matching the public email listed for the QA contact in Jira ([email protected]), skipping review request.

The bug has been updated to refer to the pull request using the external bug tracker.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

$ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
  go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x14000050070>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003f8e60>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140004ec340>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003808c0>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@camilamacedo86 camilamacedo86 changed the title OCPBUGS-56853: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support OCPBUGS-56853, OPRUN-3925: [Default Catalog Consistency Test] (feat) add check to validate multi-arch support May 29, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented May 29, 2025

@camilamacedo86: This pull request references Jira Issue OCPBUGS-56853, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (4.20.0) matches configured target version for branch (4.20.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

No GitHub users were found matching the public email listed for the QA contact in Jira ([email protected]), skipping review request.

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references OPRUN-3925 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.20.0" version, but no target version was set.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

$ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
  go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x14000050070>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003f8e60>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140004ec340>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003808c0>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@camilamacedo86
Copy link
Contributor Author

c/c @joelanford

@@ -112,6 +114,67 @@ func ImageHasLabels(expectedLabels map[string]string) ImageCheck {
}
}

// RequiredPlatforms is a list of platforms that are required for the image to be considered valid.
var RequiredPlatforms = []specsgov1.Platform{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should restrict it to this set to get noisy if a new architecture/OS is added...?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just don't see anyone remembering to come and update this test if a new arch is added XD

Copy link
Contributor Author

@camilamacedo86 camilamacedo86 May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we must ensure those
If any pipeline builds more than that is probably fine 👍
But unlikely . Not sure .. If we should care .. I do not have a really strong opinion over that

@perdasilva
Copy link
Contributor

/lgtm - just left an open question

@camilamacedo86 camilamacedo86 requested a review from perdasilva June 2, 2025 09:23
@openshift-ci-robot
Copy link

openshift-ci-robot commented Jun 2, 2025

@camilamacedo86: This pull request references Jira Issue OCPBUGS-56853, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (4.20.0) matches configured target version for branch (4.20.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

No GitHub users were found matching the public email listed for the QA contact in Jira ([email protected]), skipping review request.

This pull request references OPRUN-3925 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.20.0" version, but no target version was set.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

$ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
  go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x14000050070>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003f8e60>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140004ec340>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003808c0>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

PS. A follow-up JIRA was created for us to check if we could validate the content as well.
However, it needs to be explanatory, for now we will check just the image
More info: https://issues.redhat.com/browse/OPRUN-3942

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Jun 2, 2025
@camilamacedo86
Copy link
Contributor Author

@tmshort @rashmigottipati @anik120 Could you give a hand on this one so we can move forward?

1 similar comment
@camilamacedo86
Copy link
Contributor Author

@tmshort @rashmigottipati @anik120 Could you give a hand on this one so we can move forward?

@perdasilva
Copy link
Contributor

/approve

Copy link
Contributor

openshift-ci bot commented Jun 3, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: camilamacedo86, perdasilva, thetechnick

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jun 3, 2025
Copy link
Contributor

openshift-ci bot commented Jun 3, 2025

@camilamacedo86: all tests passed!

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@openshift-merge-bot openshift-merge-bot bot merged commit 212b654 into openshift:main Jun 3, 2025
11 checks passed
@openshift-ci-robot
Copy link

@camilamacedo86: Jira Issue OCPBUGS-56853: All pull requests linked via external trackers have merged:

Jira Issue OCPBUGS-56853 has been moved to the MODIFIED state.

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

$ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
  go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x14000050070>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003f8e60>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140004ec340>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003808c0>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

PS. A follow-up JIRA was created for us to check if we could validate the content as well.
However, it needs to be explanatory, for now we will check just the image
More info: https://issues.redhat.com/browse/OPRUN-3942

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-cherrypick-robot

@camilamacedo86: new pull request created: #370

In response to this:

Add a test to verify multiarch support

/cherrypick release-4.19 release-4.18 release-4.17

PS.: tested executed against old versions and all worked fine.

Example of failures

We added darwin/arm64 as required to emulate and validate the check, see:

$ make test-catalog
E2E_GINKGO_OPTS=" --junit-report junit_e2e.xml" \
  go test -count=1 -v ./test/validate/...;
=== RUN   TestSuite
Running Suite: Validate Catalog Test Suite - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate
====================================================================================================================================================================
Random Seed: 1748516018

Will run 8 of 8 specs
------------------------------
• [FAILED] [0.999 seconds]
Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/certified-operator-index:v4.19 @ 05/29/25 11:53:38.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x14000050070>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:39.655
------------------------------
• [FAILED] [1.627 seconds]
Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/community-operator-index:v4.19 @ 05/29/25 11:53:39.656
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003f8e60>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:41.283
------------------------------
• [FAILED] [0.952 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-marketplace-index:v4.19 @ 05/29/25 11:53:41.284
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140004ec340>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:42.235
------------------------------
• [FAILED] [0.859 seconds]
Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
/Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:42

 Timeline >>
 STEP: Validating image: registry.redhat.io/redhat/redhat-operator-index:v4.19 @ 05/29/25 11:53:42.236
 [FAILED] in [It] - /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
 << Timeline

 [FAILED] Unexpected error:
     <*errors.errorString | 0x140003808c0>: 
     missing required platforms: [darwin/arm64]
     {
         s: "missing required platforms: [darwin/arm64]",
     }
 occurred
 In [It] at: /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49 @ 05/29/25 11:53:43.095
------------------------------
no default policy found for (registry.redhat.io/redhat/certified-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/community-operator-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-marketplace-index:v4.19), using insecure policy 
•no default policy found for (registry.redhat.io/redhat/redhat-operator-index:v4.19), using insecure policy 
•

Summarizing 4 Failures:
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: certified-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: community-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-marketplace-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49
 [FAIL] Check Catalog Consistency [It] validates multiarch support for image: redhat-operator-index
 /Users/camilam/go/src/github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate/suite_test.go:49

Ran 8 of 8 Specs in 59.993 seconds
FAIL! -- 4 Passed | 4 Failed | 0 Pending | 0 Skipped
--- FAIL: TestSuite (60.00s)
FAIL
FAIL	github/operator-framework-operator-controller/openshift/default-catalog-consistency/test/validate	60.335s
FAIL
make: *** [test-catalog] Error 1

PS. A follow-up JIRA was created for us to check if we could validate the content as well.
However, it needs to be explanatory, for now we will check just the image
More info: https://issues.redhat.com/browse/OPRUN-3942

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/severity-important Referenced Jira bug's severity is important for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants