Skip to content
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

OPRUN-3692: Olmv1-catalogd tests for API endpoints #29580

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

anik120
Copy link
Contributor

@anik120 anik120 commented Mar 5, 2025

Introduces tests for the new api/v1/metas endpoint when NewOLMCatalogdAPIV1Metas feature gate in enabled.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Mar 5, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented Mar 5, 2025

@anik120: This pull request references OPRUN-3692 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.19.0" version, but no target version was set.

In response to this:

Introduces tests for the new api/v1/metas endpoint when NewOLMCatalogdAPIV1Metas feature gate in enabled.

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 do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Mar 5, 2025
}
})

g.It("[OCPFeatureGate:NewOLMCatalogdAPIV1Metas] should serve the /v1/api/metas API endpoint", func(ctx g.SpecContext) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Is this valid? Can [OCPFeatureGate:NewOLMCatalogdAPIV1Metas] be added to an It block?

Copy link
Contributor

Choose a reason for hiding this comment

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

No, you should put it in it's own g.Describe()
Yes, you'll possibly duplicate a bunch of stuff, but that's OK.

Copy link
Contributor

@tmshort tmshort Mar 5, 2025

Choose a reason for hiding this comment

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

You can put each of these g.It() you've added as their own g.Describe() so they count as new tests... since you need to have 5 for each Feature Gate.

@anik120 anik120 force-pushed the catalogd-metas-tests branch 2 times, most recently from c09fb4d to 902037a Compare March 5, 2025 20:21
Copy link
Contributor

openshift-ci bot commented Mar 5, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: anik120
Once this PR has been reviewed and has the lgtm label, please assign dennisperiquet for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found 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

func verifyAPIEndpoint(ctx g.SpecContext, urlPath string) {
var lastError error

// Retry API call a few times to handle potential connection issues
Copy link
Member

Choose a reason for hiding this comment

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

I feel like we should not be allowing ourselves to retry. IIUC, this would mean that as long as our endpoint worked 1/15 times, this test would pass.

Maybe instead, we should implement a load test with 100 concurrent requests and verify:

  • 100% response rate with 200 status code (for valid requests)
  • Some reasonable 99 percentile response time threshold check.

Copy link
Contributor Author

@anik120 anik120 Mar 6, 2025

Choose a reason for hiding this comment

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

Looking into writing a load test now.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

There's also no retry in the new Job, it's a one and done operation after which the result is checked with a timeout (exit 0/exit 1)

verifyAPIEndpoint(ctx, "https://localhost:8443/catalogs/openshift-community-operators/api/v1/metas?schema=olm.package")
})
})

Copy link
Member

Choose a reason for hiding this comment

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

Is there a place to implement upgrade interruption tests?

Another useful test to add (but not specific to the new metas feature gate):

  1. Start a loop that on every iteration: gets a ClusterCatalog's status.URLs value and makes a query to a valid endpoint under that URL.
  2. Do the upgrade

The expectation would be that the loop begins to get connection errors or 404 responses as the new pod starts up, but within a certain threshold (1m?) begins responding with 200 responses again.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

By upgrade do you mean openshift upgrade?

Cursory look did not reveal anything of that nature in this repository, I'll have to research a little more. I know openshift does upgrade tests, I'm not sure if those tests are written in this repository.

Comment on lines 115 to 116
// Wait for port-forward to be established
time.Sleep(2 * time.Second)
Copy link
Member

Choose a reason for hiding this comment

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

The port-forward isn't ready by the time the oc.Run("port-forward") command returns?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I was just being extra cautious

Comment on lines 111 to 119
// Start port-forward in background
_, _, _, err := oc.AsAdmin().Run("port-forward").Args("-n", "openshift-catalogd", "svc/catalogd-service", "8080:443").Background()
o.Expect(err).NotTo(o.HaveOccurred())
Copy link
Member

Choose a reason for hiding this comment

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

I could imagine port-forward hiding issues that in-cluster clients would encounter (e.g. in-cluster DNS).

Doing a port-forward based test is probably a good thing to do if that is functionality we expect to work, but I also think we should run a Job workload that can perform a similar test using cluster networking.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yup a Job is actually perfect for this use case, and that totally slipped my mind 😮‍💨 updated the PR to use a Job instead of port forwarding

func(ctx context.Context) (bool, error) {
// Create a custom HTTP client that skips TLS verification
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
Copy link
Member

Choose a reason for hiding this comment

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

We should not skip TLS verification. We expect real clients to connect using a trusted CA chain, so our test should use that same CAs as we expect our clients to use.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Using a job and curling the http endpoint directly now 👍🏽

Copy link

openshift-trt bot commented Mar 6, 2025

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New tests seen in this PR at sha: 902037a

  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalog's /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" [Total: 19, Pass: 19, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 19, Pass: 19, Fail: 0, Flake: 0]

@anik120 anik120 force-pushed the catalogd-metas-tests branch 3 times, most recently from 6dbc1d4 to d02be06 Compare March 6, 2025 15:47
@anik120 anik120 changed the title WIP: OPRUN-3692: Olmv1-catalogd tests for API endpoints OPRUN-3692: Olmv1-catalogd tests for API endpoints Mar 6, 2025
@openshift-ci openshift-ci bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Mar 6, 2025
Comment on lines 142 to 264
for range 100 {
wg.Add(1)
go func(catalogIdx int) {
defer wg.Done()

g.By(fmt.Sprintf("Testing api/v1/all endpoint for catalog %s", providedCatalogs[catalogIdx]))
verifyAPIEndpoint(ctx, oc, oc.Namespace(), providedCatalogs[catalogIdx], "all")
}(idx)
idx = (idx + 1) % len(providedCatalogs)
}
Copy link
Member

Choose a reason for hiding this comment

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

I'm having a really hard time grokking the way the index is working here. For clarity, can we change this to something like:

var wg sync.WaitGroup
for _, catalog := range providedCatalogs {
    for range 100 {
        wg.Add(1)
        go func() {
            verifyAPIEndpoint(ctx, oc, oc.Namespace(), catalog, "all")
        }()
    }
}
wg.Wait()

Copy link
Member

Choose a reason for hiding this comment

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

Also, I don't think you need separate Jobs. Might take some experimentation, but you may be able to set

spec:
    activeDeadlineSeconds: 30  # how long the job is allowed to be active
    backoffLimit: 0 # don't retry failed pods
    completions: 100 # required 100 completions
    maxFailedIndices: 0 # allow 0 failures
    parallelism: 100 # run 100 pods at a time
    ttlSecondsAfterFinished: 10 # make the job eligible for deletion 10 seconds after it finishes


// verifyAPIEndpoint runs a job to validate the given service endpoint of a ClusterCatalog
func verifyAPIEndpoint(ctx g.SpecContext, oc *exutil.CLI, namespace, catalogName, endpoint string) {
jobName := fmt.Sprintf("test-catalog-%s-%s-%s", catalogName, endpoint, rand.String(5))
Copy link
Member

Choose a reason for hiding this comment

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

I see metas?schema=olm.package being passed as endpoint and then used in the job name. Seems like that's an invalid name? Maybe pass url.Params as a separate argument in the function?

Comment on lines 568 to 702
if job.Status.Succeeded > 0 {
return true, nil
}
if job.Status.Failed > 0 {
return false, fmt.Errorf("job failed")
}
Copy link
Member

Choose a reason for hiding this comment

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

Looking at the Job conditions, it seems like we can check for type: Complete (success) or type: Failed(failed). Maybe we should also consider looking at the difference between status.completionTime and status.startTime for reporting/checking duration.

Comment on lines 534 to 548
set -ex
response=$(curl -s -k "%s" || echo "ERROR: Failed to access endpoint")
if [[ "$response" == ERROR* ]]; then
echo "$response"
exit 1
fi
echo "$response" > /tmp/api-response

# check if response can be parsed as new line delimited JSON
if cat /tmp/api-response | jq -s . > /dev/null 2>&1; then
echo "Valid JSON response detected"
exit 0
fi
echo "ERROR: Invalid JSON response"
exit 1
Copy link
Member

Choose a reason for hiding this comment

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

This makes just a single request per pod, which probably isn't quite as efficient as if we could use an http load testing program to make a bunch of concurrent requests from a single process.

Not sure where to find an image with an http load tester available to the origin suite, but if we can find one, it would likely provide much more useful information (e.g. histogram of durations of the requests)

Copy link

openshift-trt bot commented Mar 6, 2025

Job Failure Risk Analysis for sha: d02be06

Job Name Failure Risk
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift IncompleteTests
Tests for this run (24) are below the historical average (1036): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift-serial IncompleteTests
Tests for this run (24) are below the historical average (493): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-vsphere-ovn-etcd-scaling IncompleteTests
Tests for this run (99) are below the historical average (1174): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-vsphere-ovn-upi IncompleteTests
Tests for this run (103) are below the historical average (1008): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: d02be06

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-aws High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-proxy High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-proxy High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-openstack-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-openstack-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
(...showing 20 of 22 rows)

New tests seen in this PR at sha: d02be06

  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" [Total: 11, Pass: 0, Fail: 11, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" [Total: 11, Pass: 0, Fail: 11, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 11, Pass: 11, Fail: 0, Flake: 0]

@anik120 anik120 force-pushed the catalogd-metas-tests branch from d02be06 to c93d38e Compare March 6, 2025 23:00
Copy link

openshift-trt bot commented Mar 7, 2025

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: c93d38e

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-aws High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-proxy High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-proxy High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-azure-ovn-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-azure-ovn-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" is a new test that failed 1 time(s) against the current commit
(...showing 20 of 36 rows)

New tests seen in this PR at sha: c93d38e

  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint load test should be able to access /v1/api/all API endpoints of all catalogs within a reasonable amount of time [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 0, Fail: 18, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs /v1/api/all endpoint should serve FBC [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 0, Fail: 18, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 0]

@anik120 anik120 force-pushed the catalogd-metas-tests branch from c93d38e to 0b6c1b6 Compare March 12, 2025 14:37
@anik120 anik120 force-pushed the catalogd-metas-tests branch from 08114fc to f6fe874 Compare March 18, 2025 00:51
Copy link

openshift-trt bot commented Mar 18, 2025

Job Failure Risk Analysis for sha: f6fe874

Job Name Failure Risk
pull-ci-openshift-origin-main-e2e-agnostic-ovn-cmd IncompleteTests
Tests for this run (19) are below the historical average (1518): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws IncompleteTests
Tests for this run (18) are below the historical average (2765): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-csi IncompleteTests
Tests for this run (18) are below the historical average (1520): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-disruptive IncompleteTests
Tests for this run (18) are below the historical average (1390): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn IncompleteTests
Tests for this run (18) are below the historical average (2811): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 IncompleteTests
Tests for this run (18) are below the historical average (2688): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones IncompleteTests
Tests for this run (20) are below the historical average (2767): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-etcd-scaling IncompleteTests
Tests for this run (18) are below the historical average (1618): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-fips IncompleteTests
Tests for this run (18) are below the historical average (2773): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-kube-apiserver-rollout IncompleteTests
Tests for this run (18) are below the historical average (1547): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift IncompleteTests
Tests for this run (16) are below the historical average (1287): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift-serial IncompleteTests
Tests for this run (16) are below the historical average (621): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-serial IncompleteTests
Tests for this run (18) are below the historical average (1512): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node IncompleteTests
Tests for this run (18) are below the historical average (2473): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-serial IncompleteTests
Tests for this run (18) are below the historical average (1670): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade IncompleteTests
Tests for this run (19) are below the historical average (3551): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-upgrade IncompleteTests
Tests for this run (20) are below the historical average (1604): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-proxy IncompleteTests
Tests for this run (19) are below the historical average (2686): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure IncompleteTests
Tests for this run (19) are below the historical average (2449): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure-ovn-etcd-scaling IncompleteTests
Tests for this run (19) are below the historical average (1483): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)

Showing 20 of 44 jobs analysis

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: f6fe874

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-vsphere-ovn-dualstack-primaryv6 Medium - "Store build results into a layer on top of tools and save as tools-base" is a new test, and was only seen in one job.

New tests seen in this PR at sha: f6fe874

  • "Store build results into a layer on top of tools and save as tools-base" [Total: 1, Pass: 1, Fail: 0, Flake: 0]

@anik120 anik120 force-pushed the catalogd-metas-tests branch 2 times, most recently from 1329bee to 4b625df Compare March 18, 2025 13:41
@anik120
Copy link
Contributor Author

anik120 commented Mar 18, 2025

@joelanford cleaned up the Lua script and results look much better now:

./openshift-tests run-test "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]"
I0318 13:45:46.415714    2273 factory.go:193] Registered Plugin "containerd"
openshift-tests v4.1.0-9141-g4b625df
INFO[0000] Decoding provider                             clusterState="<nil>" discover=false dryRun=false func=DecodeProvider providerType=
  I0318 13:45:47.063689    2273 test_setup.go:94] Extended test version v4.1.0-9141-g4b625df
  I0318 13:45:47.064174    2273 test_context.go:558] Tolerating taints "node-role.kubernetes.io/control-plane" when considering if nodes are ready
  I0318 13:45:47.092566 2273 framework.go:2310] microshift-version configmap not found
  I0318 13:45:47.092998    2273 command.go:57] Loaded test configuration: &framework.TestContextType{KubeConfig:"/root/cluster-bot-2025-03-18-123441.kubeconfig", KubeContext:"", KubeAPIContentType:"application/vnd.kubernetes.protobuf", KubeletRootDir:"/var/lib/kubelet", KubeletConfigDropinDir:"", CertDir:"", Host:"https://api.ci-ln-n5tw8vk-76ef8.aws-2.ci.openshift.org:6443", BearerToken:"ALz1UA9Apz2QxhUM", RepoRoot:"../../", ListImages:false, listTests:false, listLabels:false, ListConformanceTests:false, Provider:"aws", Tooling:"", timeouts:framework.TimeoutContext{Poll:2000000000, PodStart:300000000000, PodStartShort:120000000000, PodStartSlow:900000000000, PodDelete:300000000000, ClaimProvision:300000000000, DataSourceProvision:300000000000, ClaimProvisionShort:60000000000, ClaimBound:180000000000, PVReclaim:180000000000, PVBound:180000000000, PVCreate:180000000000, PVDelete:300000000000, PVDeleteSlow:1200000000000, SnapshotCreate:300000000000, SnapshotDelete:300000000000, SnapshotControllerMetrics:300000000000, SystemPodsStartup:600000000000, NodeSchedulable:1800000000000, SystemDaemonsetStartup:300000000000, NodeNotReady:180000000000}, CloudConfig:framework.CloudConfig{APIEndpoint:"", ProjectID:"", Zone:"us-east-2a", Zones:[]string{"us-east-2a", "us-east-2c"}, Region:"us-east-2", MultiZone:true, MultiMaster:true, Cluster:"", MasterName:"", NodeInstanceGroup:"", NumNodes:3, ClusterIPRange:"", ClusterTag:"", Network:"", ConfigFile:"", NodeTag:"", MasterTag:"", Provider:(*aws.Provider)(0x11c68300)}, KubectlPath:"kubectl", OutputDir:"/tmp", ReportDir:"", ReportPrefix:"", ReportCompleteGinkgo:false, ReportCompleteJUnit:false, Prefix:"e2e", MinStartupPods:-1, EtcdUpgradeStorage:"", EtcdUpgradeVersion:"", GCEUpgradeScript:"", ContainerRuntimeEndpoint:"unix:///run/containerd/containerd.sock", ContainerRuntimeProcessName:"containerd", ContainerRuntimePidFile:"/run/containerd/containerd.pid", SystemdServices:"containerd*", DumpSystemdJournal:false, ImageServiceEndpoint:"", MasterOSDistro:"custom", NodeOSDistro:"custom", NodeOSArch:"amd64", VerifyServiceAccount:true, DeleteNamespace:true, DeleteNamespaceOnFailure:true, AllowedNotReadyNodes:-1, CleanStart:false, GatherKubeSystemResourceUsageData:"false", GatherLogsSizes:false, GatherMetricsAfterTest:"false", GatherSuiteMetricsAfterTest:false, MaxNodesToGather:0, IncludeClusterAutoscalerMetrics:false, OutputPrintType:"json", CreateTestingNS:(framework.CreateTestingNSFn)(0xb1a0200), DumpLogsOnFailure:true, DisableLogDump:false, LogexporterGCSPath:"", NodeTestContextType:framework.NodeTestContextType{NodeE2E:false, NodeName:"", NodeConformance:false, PrepullImages:false, ImageDescription:"", RuntimeConfig:map[string]string(nil), SystemSpecName:"", RestartKubelet:false, ExtraEnvs:map[string]string(nil), StandaloneMode:false, CriProxyEnabled:false}, ClusterDNSDomain:"cluster.local", NodeKiller:framework.NodeKillerConfig{Enabled:false, FailureRatio:0.01, Interval:60000000000, JitterFactor:60, SimulatedDowntime:600000000000, NodeKillerStopCtx:context.Context(nil), NodeKillerStop:(func())(nil)}, IPFamily:"ipv4", NonblockingTaints:"node-role.kubernetes.io/control-plane", ProgressReportURL:"", SriovdpConfigMapFile:"", SpecSummaryOutput:"", DockerConfigFile:"", E2EDockerConfigFile:"", KubeTestRepoList:"", SnapshotControllerPodName:"", SnapshotControllerHTTPPort:0, RequireDevices:false, EnabledVolumeDrivers:[]string(nil)}
  Running Suite: OpenShift e2e suite - /root/origin
  =================================================
  Random Seed: 1742305546 - will randomize all specs

  Will run 1 of 1 specs
  ------------------------------
  [sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]
  github.com/openshift/origin/test/extended/olm/olmv1.go:159
    STEP: Creating a kubernetes client @ 03/18/25 13:45:50.528
  I0318 13:45:50.533045    2273 discovery.go:214] Invalidating discovery information
  I0318 13:45:50.560730 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get clustercatalogs.olm.operatorframework.io openshift-community-operators -o=jsonpath={.status.urls.base}'
  "level"=0 "msg"="Using service URL: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all"
    STEP: Load testing /api/v1/all endpoint for openshift-community-operators @ 03/18/25 13:45:51.533
  I0318 13:45:51.534040 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig apply -f -'
  job.batch/catalog-server-load-test-7jfh9 created
  I0318 13:45:51.824896 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get job catalog-server-load-test-7jfh9 -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-18T13:45:51Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0318 13:45:56.825592 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get job catalog-server-load-test-7jfh9 -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-
  .
  .
  .
  I0318 13:46:51.825335 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get job catalog-server-load-test-7jfh9 -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-18T13:45:51Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0318 13:46:56.825688 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get job catalog-server-load-test-7jfh9 -o=jsonpath={.status}'
  "level"=0 "msg"="Load test job completed successfully"
  I0318 13:46:57.356307 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig get pods -l job-name=catalog-server-load-test-7jfh9 -o=jsonpath={.items[0].metadata.name}'
  I0318 13:46:57.907278 2273 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-18-123441.kubeconfig logs catalog-server-load-test-7jfh9-bw2w8'
  "level"=0 "msg"="Load test logs:\n+ SERVICE_URL=https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\n+ CONCURRENT_CONNECTIONS=10\n+ TEST_DURATION_SECONDS=30\n+ REQUEST_RATE=100\n+ MAX_LATENCY_THRESHOLD=15000000\n+ SUCCESS_RATE_THRESHOLD=100.0\n+ dnf install -y git gcc openssl-devel zlib-devel make\nUpdating Subscription Management repositories.\nUnable to read consumer identity\n\nThis system is not registered with an entitlement server. You can use subscription-manager to register.\n\nRed Hat Universal Base Image 8 (RPMs) - BaseOS  4.8 MB/s | 723 kB     00:00    \nRed Hat Universal Base Image 8 (RPMs) - AppStre  21 MB/s | 3.4 MB     00:00    \nRed Hat Universal Base Image 8 (RPMs) - CodeRea 1.6 MB/s | 186 kB     00:00    \nDependencies resolved.\n=====================================================================================================\n Package                  Arch    Version                                 Repository             Size\n=====================================================================================================\nInstalling:\n gcc                      x86_64  8.5.0-24.el8_10                         ubi-8-appstream-rpms   23 M\n git                      x86_64  2.43.5-2.el8_10 ...... export MAX_LATENCY_THRESHOLD=15000000\n+ MAX_LATENCY_THRESHOLD=15000000\nStarting wrk2 load test...\n+ export SUCCESS_RATE_THRESHOLD=100.0\n+ SUCCESS_RATE_THRESHOLD=100.0\n+ echo 'Starting wrk2 load test...'\n+ ./wrk -t10 -c10 -d30s -R100 -s verify.lua -L https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\nRunning 30s test @ https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\n  10 threads and 10 connections\n  Thread calibration: mean lat.: 2015.226ms, rate sampling interval: 7561ms\n  Thread calibration: mean lat.: 2389.251ms, rate sampling interval: 8364ms\n  Thread calibration: mean lat.: 1901.297ms, rate sampling interval: 6524ms\n  Thread calibration: mean lat.: 1962.690ms, rate sampling interval: 5767ms\n  Thread calibration: mean lat.: 2052.084ms, rate sampling interval: 6733ms\n  Thread calibration: mean lat.: 2706.684ms, rate sampling interval: 9396ms\n  Thread calibration: mean lat.: 2402.920ms, rate sampling interval: 7753ms\n  Thread calibration: mean lat.: 1498.087ms, rate sampling interval: 5152ms\n  Thread calibration: mean lat.: 2526.273ms, rate sampling interval: 8929ms\n  Thread calibration: mean lat.: 1917.463ms, rate sampling interval: 5574ms\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     7.43s     2.77s   15.70s    68.35%\n    Req/Sec     6.00      1.12     8.00    100.00%\n  Latency Distribution (HdrHistogram - Recorded Latency)\n 50.000%    6.92s \n 75.000%    9.04s \n 90.000%   11.78s \n 99.000%   14.61s \n 99.900%   15.61s \n 99.990%   15.70s \n 99.999%   15.70s \n100.000%   15.70s \n\n  Detailed Percentile spectrum:\n       Value   Percentile   TotalCount 1/(1-Percentile)\n\n    2547.711     0.000000            1         1.00\n    4198.399     0.100000          125         1.11\n    5046.271     0.200000          252         1.25\n    5775.359     0.300000          378         1.43\n    6266.879     0.400000          500         1.67\n    6922.239     0.500000          624         2.00\n    7331.839     0.550000          687         2.22\n    7679.999     0.600000          751         2.50\n    8032.255     0.650000          812         2.86\n    8495.103     0.700000          877         3.33\n    9035.775     0.750000          936         4.00\n    9297.919     0.775000          968         4.44\n    9617.407     0.800000          999         5.00\n    9961.471     0.825000         1031         5.71\n   10559.487     0.850000         1062         6.67\n   11108.351     0.875000         1092         8.00\n   11476.991     0.887500         1108         8.89\n   11804.671     0.900000         1125        10.00\n   12115.967     0.912500         1139        11.43\n   12410.879     0.925000         1155        13.33\n   12640.255     0.937500         1170        16.00\n   12779.519     0.943750         1179        17.78\n   12877.823     0.950000         1186        20.00\n   13066.239     0.956250         1195        22.86\n   13246.463     0.962500         1202        26.67\n   13484.031     0.968750         1209        32.00\n   13672.447     0.971875         1213        35.56\n   13811.711     0.975000         1217        40.00\n   13910.015     0.978125         1221        45.71\n   14114.815     0.981250         1225        53.33\n   14196.735     0.984375         1229        64.00\n   14295.039     0.985938         1231        71.11\n   14368.767     0.987500         1233        80.00\n   14581.759     0.989062         1235        91.43\n   14688.255     0.990625         1237       106.67\n   14819.327     0.992188         1239       128.00\n   14876.671     0.992969         1240       142.22\n   14983.167     0.993750         1241       160.00\n   15032.319     0.994531         1242       182.86\n   15073.279     0.995313         1243       213.33\n   15138.815     0.996094         1244       256.00\n   15138.815     0.996484         1244       284.44\n   15368.191     0.996875         1245       320.00\n   15368.191     0.997266         1245       365.71\n   15540.223     0.997656         1246       426.67\n   15540.223     0.998047         1246       512.00\n   15540.223     0.998242         1246       568.89\n   15605.759     0.998437         1247       640.00\n   15605.759     0.998633         1247       731.43\n   15605.759     0.998828         1247       853.33\n   15605.759     0.999023         1247      1024.00\n   15605.759     0.999121         1247      1137.78\n   15704.063     0.999219         1248      1280.00\n   15704.063     1.000000         1248          inf\n#[Mean    =     7430.504, StdDeviation   =     2772.629]\n#[Max     =    15695.872, Total count    =         1248]\n#[Buckets =           27, SubBuckets     =         2048]\n----------------------------------------------------------\n  1863 requests in 30.04s, 38.98GB read\nRequests/sec:     62.02\nTransfer/sec:      1.30GB\n\n\n=== LOAD TEST RESULTS ===\nTotal requests: 1863\nSocket errors: connect 0, read 0, write 0, timeout 0\nHTTP errors: 0\nRequest rate: 62.02 requests/s\nSuccess rate: 100.00%\n\nThreshold checks:\n  Success rate: 100.00% (threshold: 100.00%)\nSUCCESS: Success rate criteria met\n  P99 latency: 14614527 μs (threshold: 15000000 μs)\nSUCCESS: P99 latency within threshold\n\nOVERALL RESULT: SUCCESS - All performance thresholds met\n+ TEST_EXIT_CODE=0\n+ '[' 0 -ne 0 ']'\nLoad test completed\n+ echo 'Load test completed'"
    STEP: Successfully completed load test with acceptable performance @ 03/18/25 13:46:58.451
  • [67.940 seconds]
  ------------------------------

  Ran 1 of 1 Specs in 67.951 seconds
  SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[root@centos-s-1vcpu-2gb-70gb-intel-nyc1-01 origin]# 

Main highlight from the logs above:

LOAD TEST RESULTS ===\nTotal requests: 1863\nSocket errors: connect 0, read 0, write 0, timeout 0\nHTTP errors: 0\nRequest rate: 62.02 requests/s\nSuccess rate: 100.00%\n\nThreshold checks:\n  Success rate: 100.00% (threshold: 100.00%)\nSUCCESS: Success rate criteria met\n  P99 latency: 14614527 μs (threshold: 15000000 μs)\nSUCCESS: P99 latency within threshold\n\nOVERALL RESULT: SUCCESS - All performance thresholds met\n+ TEST_EXIT_CODE=0\n+ '[' 0 -ne 0 ']'\nLoad test completed\n+ echo 'Load test completed'"

@anik120 anik120 force-pushed the catalogd-metas-tests branch 3 times, most recently from 651a15d to d85d7ea Compare March 18, 2025 17:10
@anik120
Copy link
Contributor Author

anik120 commented Mar 19, 2025

/retest-required

@anik120
Copy link
Contributor Author

anik120 commented Mar 19, 2025

The test "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" passed when I ran it manually:

./openshift-tests run-test "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]"
I0319 20:26:16.977791    1785 factory.go:193] Registered Plugin "containerd"
openshift-tests v4.1.0-9141-gd85d7ea
INFO[0000] Decoding provider                             clusterState="<nil>" discover=false dryRun=false func=DecodeProvider providerType=
  I0319 20:26:17.508950    1785 test_setup.go:94] Extended test version v4.1.0-9141-gd85d7ea
  I0319 20:26:17.511017    1785 test_context.go:558] Tolerating taints "node-role.kubernetes.io/control-plane" when considering if nodes are ready
  I0319 20:26:17.533638 1785 framework.go:2310] microshift-version configmap not found
  I0319 20:26:17.534282    1785 command.go:57] Loaded test configuration: &framework.TestContextType{KubeConfig:"/root/cluster-bot-2025-03-19-183002.kubeconfig", KubeContext:"", KubeAPIContentType:"application/vnd.kubernetes.protobuf", KubeletRootDir:"/var/lib/kubelet", KubeletConfigDropinDir:"", CertDir:"", Host:"https://api.ci-ln-0pzr1b2-76ef8.aws-2.ci.openshift.org:6443", BearerToken:"TvJx6GDwkoZ9n6kw", RepoRoot:"../../", ListImages:false, listTests:false, listLabels:false, ListConformanceTests:false, Provider:"aws", Tooling:"", timeouts:framework.TimeoutContext{Poll:2000000000, PodStart:300000000000, PodStartShort:120000000000, PodStartSlow:900000000000, PodDelete:300000000000, ClaimProvision:300000000000, DataSourceProvision:300000000000, ClaimProvisionShort:60000000000, ClaimBound:180000000000, PVReclaim:180000000000, PVBound:180000000000, PVCreate:180000000000, PVDelete:300000000000, PVDeleteSlow:1200000000000, SnapshotCreate:300000000000, SnapshotDelete:300000000000, SnapshotControllerMetrics:300000000000, SystemPodsStartup:600000000000, NodeSchedulable:1800000000000, SystemDaemonsetStartup:300000000000, NodeNotReady:180000000000}, CloudConfig:framework.CloudConfig{APIEndpoint:"", ProjectID:"", Zone:"us-east-2b", Zones:[]string{"us-east-2b", "us-east-2c"}, Region:"us-east-2", MultiZone:true, MultiMaster:true, Cluster:"", MasterName:"", NodeInstanceGroup:"", NumNodes:3, ClusterIPRange:"", ClusterTag:"", Network:"", ConfigFile:"", NodeTag:"", MasterTag:"", Provider:(*aws.Provider)(0x11c6c300)}, KubectlPath:"kubectl", OutputDir:"/tmp", ReportDir:"", ReportPrefix:"", ReportCompleteGinkgo:false, ReportCompleteJUnit:false, Prefix:"e2e", MinStartupPods:-1, EtcdUpgradeStorage:"", EtcdUpgradeVersion:"", GCEUpgradeScript:"", ContainerRuntimeEndpoint:"unix:///run/containerd/containerd.sock", ContainerRuntimeProcessName:"containerd", ContainerRuntimePidFile:"/run/containerd/containerd.pid", SystemdServices:"containerd*", DumpSystemdJournal:false, ImageServiceEndpoint:"", MasterOSDistro:"custom", NodeOSDistro:"custom", NodeOSArch:"amd64", VerifyServiceAccount:true, DeleteNamespace:true, DeleteNamespaceOnFailure:true, AllowedNotReadyNodes:-1, CleanStart:false, GatherKubeSystemResourceUsageData:"false", GatherLogsSizes:false, GatherMetricsAfterTest:"false", GatherSuiteMetricsAfterTest:false, MaxNodesToGather:0, IncludeClusterAutoscalerMetrics:false, OutputPrintType:"json", CreateTestingNS:(framework.CreateTestingNSFn)(0xb1a0200), DumpLogsOnFailure:true, DisableLogDump:false, LogexporterGCSPath:"", NodeTestContextType:framework.NodeTestContextType{NodeE2E:false, NodeName:"", NodeConformance:false, PrepullImages:false, ImageDescription:"", RuntimeConfig:map[string]string(nil), SystemSpecName:"", RestartKubelet:false, ExtraEnvs:map[string]string(nil), StandaloneMode:false, CriProxyEnabled:false}, ClusterDNSDomain:"cluster.local", NodeKiller:framework.NodeKillerConfig{Enabled:false, FailureRatio:0.01, Interval:60000000000, JitterFactor:60, SimulatedDowntime:600000000000, NodeKillerStopCtx:context.Context(nil), NodeKillerStop:(func())(nil)}, IPFamily:"ipv4", NonblockingTaints:"node-role.kubernetes.io/control-plane", ProgressReportURL:"", SriovdpConfigMapFile:"", SpecSummaryOutput:"", DockerConfigFile:"", E2EDockerConfigFile:"", KubeTestRepoList:"", SnapshotControllerPodName:"", SnapshotControllerHTTPPort:0, RequireDevices:false, EnabledVolumeDrivers:[]string(nil)}
  Running Suite: OpenShift e2e suite - /root/origin
  =================================================
  Random Seed: 1742415976 - will randomize all specs

  Will run 1 of 1 specs
  ------------------------------
  [sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]
  github.com/openshift/origin/test/extended/olm/olmv1.go:312
    STEP: Creating a kubernetes client @ 03/19/25 20:26:20.005
  I0319 20:26:20.009483    1785 discovery.go:214] Invalidating discovery information
  I0319 20:26:20.047013 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get clustercatalogs.olm.operatorframework.io openshift-community-operators -o=jsonpath={.status.urls.base}'
  "level"=0 "msg"="Using service URL: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all"
    STEP: Load testing /api/v1/all endpoint for openshift-community-operators @ 03/19/25 20:26:21.109
  I0319 20:26:21.109682 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig apply -f -'
  job.batch/catalog-server-load-test-ff26s created
  I0319 20:26:21.523547 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:26.523787 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:31.523777 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:36.523804 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:41.523748 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:46.523768 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:51.523716 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:26:56.526238 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:01.523772 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:06.523782 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:11.523780 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:16.523750 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:21.523783 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":1,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:26.523757 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Job status: {\"active\":1,\"ready\":0,\"startTime\":\"2025-03-19T20:26:21Z\",\"terminating\":0,\"uncountedTerminatedPods\":{}}"
  I0319 20:27:31.523814 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get job catalog-server-load-test-ff26s -o=jsonpath={.status}'
  "level"=0 "msg"="Load test job completed successfully"
  I0319 20:27:31.808210 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig get pods -l job-name=catalog-server-load-test-ff26s -o=jsonpath={.items[0].metadata.name}'
  I0319 20:27:32.189358 1785 client.go:936] Running 'oc --kubeconfig=/root/cluster-bot-2025-03-19-183002.kubeconfig logs catalog-server-load-test-ff26s-kbx6c'
  "level"=0 "msg"="Load test logs:\n+ SERVICE_URL=https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\n+ CONCURRENT_CONNECTIONS=10\n+ TEST_DURATION_SECONDS=30\n+ REQUEST_RATE=100\n+ MAX_LATENCY_THRESHOLD=16000000\n+ dnf install -y git gcc openssl-devel zlib-devel make\nUpdating Subscription Management repositories.\nUnable to read consumer identity\n\nThis system is not registered with an entitlement server. You can use subscription-manager to register.\n\nRed Hat Universal Base Image 8 (RPMs) - BaseOS  4.6 MB/s | 723 kB     00:00    \nRed Hat Universal Base Image 8 (RPMs) - AppStre  22 MB/s | 3.4 MB     00:00    \nRed Hat Universal Base Image 8 (RPMs) - CodeRea 1.6 MB/s | 186 kB     00:00    \nDependencies resolved.\n=====================================================================================================\n Package                  Arch    Version                                 Repository             Size\n=====================================================================================================\nInstalling:\n gcc                      x86_64  8.5.0-24.el8_10                         ubi-8-appstream-rpms   23 M\n git                      x86_64  2.43.5-2.el8_10                         ubi-8-appstream-rpms   92 k\n make                     x86_64  1:4.2.1-11.el8                          ubi-8-baseos-rpms     498 k\n openssl-devel            x86_64  1:1.1.1k-14.el8_6                       ubi-8-baseos-rpms     2.3 M\n zlib-devel               x86_64  1.2.11-25.el8                           ubi-8-baseos-rpms      59 k\nUpgrading:\n glibc                    x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms     2.2 M\n glibc-common             x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms     1.0 M\n glibc-minimal-langpack   x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms      71 k\n krb5-libs                x86_64  1.18.2-31.el8_10                        ubi-8-baseos-rpms     845 k\nInstalling dependencies:\n binutils                 x86_64  2.30-125.el8_10                         ubi-8-baseos-rpms     5.8 M\n cpp                      x86_64  8.5.0-24.el8_10                         ubi-8-appstream-rpms   10 M\n emacs-filesystem         noarch  1:26.1-13.el8_10                        ubi-8-baseos-rpms      71 k\n git-core                 x86_64  2.43.5-2.el8_10                         ubi-8-appstream-rpms   11 M\n git-core-doc             noarch  2.43.5-2.el8_10                         ubi-8-appstream-rpms  3.1 M\n glibc-devel              x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms      89 k\n glibc-headers            x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms     494 k\n groff-base               x86_64  1.22.3-18.el8                           ubi-8-baseos-rpms     1.0 M\n isl                      x86_64  0.16.1-6.el8                            ubi-8-appstream-rpms  841 k\n kernel-headers           x86_64  4.18.0-553.45.1.el8_10                  ubi-8-baseos-rpms      12 M\n keyutils-libs-devel      x86_64  1.5.10-9.el8                            ubi-8-baseos-rpms      48 k\n krb5-devel               x86_64  1.18.2-31.el8_10                        ubi-8-baseos-rpms     563 k\n less                     x86_64  530-3.el8_10                            ubi-8-baseos-rpms     164 k\n libcom_err-devel         x86_64  1.45.6-5.el8                            ubi-8-baseos-rpms      39 k\n libedit                  x86_64  3.1-23.20170329cvs.el8                  ubi-8-baseos-rpms     102 k\n libgomp                  x86_64  8.5.0-24.el8_10                         ubi-8-baseos-rpms     208 k\n libkadm5                 x86_64  1.18.2-31.el8_10                        ubi-8-baseos-rpms     189 k\n libmpc                   x86_64  1.1.0-9.1.el8                           ubi-8-appstream-rpms   61 k\n libpkgconf               x86_64  1.4.2-1.el8                             ubi-8-baseos-rpms      35 k\n libselinux-devel         x86_64  2.9-10.el8_10                           ubi-8-baseos-rpms     200 k\n libsepol-devel           x86_64  2.9-3.el8                               ubi-8-baseos-rpms      87 k\n libverto-devel           x86_64  0.3.2-2.el8                             ubi-8-baseos-rpms      18 k\n libxcrypt-devel          x86_64  4.1.1-6.el8                             ubi-8-baseos-rpms      25 k\n ncurses                  x86_64  6.1-10.20180224.el8                     ubi-8-baseos-rpms     387 k\n openssh                  x86_64  8.0p1-25.el8_10                         ubi-8-baseos-rpms     526 k\n openssh-clients          x86_64  8.0p1-25.el8_10                         ubi-8-baseos-rpms     646 k\n openssl                  x86_64  1:1.1.1k-14.el8_6                       ubi-8-baseos-rpms     711 k\n pcre2-devel              x86_64  10.32-3.el8_6                           ubi-8-baseos-rpms     605 k\n pcre2-utf16              x86_64  10.32-3.el8_6                           ubi-8-baseos-rpms     229 k\n pcre2-utf32              x86_64  10.32-3.el8_6                           ubi-8-baseos-rpms     220 k\n perl-Carp                noarch  1.42-396.el8                            ubi-8-baseos-rpms      30 k\n perl-Data-Dumper         x86_64  2.167-399.el8                           ubi-8-baseos-rpms      58 k\n perl-Digest              noarch  1.17-395.el8                            ubi-8-appstream-rpms   27 k\n perl-Digest-MD5          x86_64  2.55-396.el8                            ubi-8-appstream-rpms   37 k\n perl-Encode              x86_64  4:2.97-3.el8                            ubi-8-baseos-rpms     1.5 M\n perl-Errno               x86_64  1.28-422.el8                            ubi-8-baseos-rpms      77 k\n perl-Error               noarch  1:0.17025-2.el8                         ubi-8-appstream-rpms   46 k\n perl-Exporter            noarch  5.72-396.el8                            ubi-8-baseos-rpms      34 k\n perl-File-Path           noarch  2.15-2.el8                              ubi-8-baseos-rpms      38 k\n perl-File-Temp           noarch  0.230.600-1.el8                         ubi-8-baseos-rpms      63 k\n perl-Getopt-Long         noarch  1:2.50-4.el8                            ubi-8-baseos-rpms      63 k\n perl-Git                 noarch  2.43.5-2.el8_10                         ubi-8-appstream-rpms   79 k\n perl-HTTP-Tiny           noarch  0.074-3.el8                             ubi-8-baseos-rpms      59 k\n perl-IO                  x86_64  1.38-422.el8                            ubi-8-baseos-rpms     142 k\n perl-IO-Socket-IP        noarch  0.39-5.el8                              ubi-8-appstream-rpms   47 k\n perl-IO-Socket-SSL       noarch  2.066-4.module+el8.3.0+6446+594cad75    ubi-8-appstream-rpms  298 k\n perl-MIME-Base64         x86_64  3.15-396.el8                            ubi-8-baseos-rpms      31 k\n perl-Mozilla-CA          noarch  20160104-7.module+el8.3.0+6498+9eecfe51 ubi-8-appstream-rpms   15 k\n perl-Net-SSLeay          x86_64  1.88-2.module+el8.6.0+13392+f0897f98    ubi-8-appstream-rpms  379 k\n perl-PathTools           x86_64  3.74-1.el8                              ubi-8-baseos-rpms      90 k\n perl-Pod-Escapes         noarch  1:1.07-395.el8                          ubi-8-baseos-rpms      20 k\n perl-Pod-Perldoc         noarch  3.28-396.el8                            ubi-8-baseos-rpms      88 k\n perl-Pod-Simple          noarch  1:3.35-395.el8                          ubi-8-baseos-rpms     213 k\n perl-Pod-Usage           noarch  4:1.69-395.el8                          ubi-8-baseos-rpms      34 k\n perl-Scalar-List-Utils   x86_64  3:1.49-2.el8                            ubi-8-baseos-rpms      68 k\n perl-Socket              x86_64  4:2.027-3.el8                           ubi-8-baseos-rpms      59 k\n perl-Storable            x86_64  1:3.11-3.el8                            ubi-8-baseos-rpms      98 k\n perl-Term-ANSIColor      noarch  4.06-396.el8                            ubi-8-baseos-rpms      46 k\n perl-Term-Cap            noarch  1.17-395.el8                            ubi-8-baseos-rpms      23 k\n perl-TermReadKey         x86_64  2.37-7.el8                              ubi-8-appstream-rpms   40 k\n perl-Text-ParseWords     noarch  3.30-395.el8                            ubi-8-baseos-rpms      18 k\n perl-Text-Tabs+Wrap      noarch  2013.0523-395.el8                       ubi-8-baseos-rpms      24 k\n perl-Time-Local          noarch  1:1.280-1.el8                           ubi-8-baseos-rpms      34 k\n perl-URI                 noarch  1.73-3.el8                              ubi-8-appstream-rpms  116 k\n perl-Unicode-Normalize   x86_64  1.25-396.el8                            ubi-8-baseos-rpms      82 k\n perl-constant            noarch  1.33-396.el8                            ubi-8-baseos-rpms      25 k\n perl-interpreter         x86_64  4:5.26.3-422.el8                        ubi-8-baseos-rpms     6.3 M\n perl-libnet              noarch  3.11-3.el8                              ubi-8-appstream-rpms  121 k\n perl-libs                x86_64  4:5.26.3-422.el8                        ubi-8-baseos-rpms     1.6 M\n perl-macros              x86_64  4:5.26.3-422.el8                        ubi-8-baseos-rpms      73 k\n perl-parent              noarch  1:0.237-1.el8                           ubi-8-baseos-rpms      20 k\n perl-podlators           noarch  4.11-1.el8                              ubi-8-baseos-rpms     118 k\n perl-threads             x86_64  1:2.21-2.el8                            ubi-8-baseos-rpms      61 k\n perl-threads-shared      x86_64  1.58-2.el8                              ubi-8-baseos-rpms      48 k\n pkgconf                  x86_64  1.4.2-1.el8                             ubi-8-baseos-rpms      38 k\n pkgconf-m4               noarch  1.4.2-1.el8                             ubi-8-baseos-rpms      17 k\n pkgconf-pkg-config       x86_64  1.4.2-1.el8                             ubi-8-baseos-rpms      15 k\nInstalling weak dependencies:\n glibc-gconv-extra        x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms     1.6 M\n glibc-langpack-en        x86_64  2.28-251.el8_10.14                      ubi-8-baseos-rpms     832 k\nEnabling module streams:\n perl                             5.26                                                               \n perl-IO-Socket-SSL               2.066                                                              \n perl-libwww-perl                 6.34                                                               \n\nTransaction Summary\n=====================================================================================================\nInstall  84 Packages\nUpgrade   4 Packages\n\nTotal download size: 95 M\nDownloading Packages:\n(1/88): emacs-filesystem-26.1-13.el8_10.noarch. 1.2 MB/s |  71 kB     00:00    \n(2/88): glibc-devel-2.28-251.el8_10.14.x86_64.r 1.3 MB/s |  89 kB     ........MAX_LATENCY_THRESHOLD=16000000\n+ MAX_LATENCY_THRESHOLD=16000000\n+ echo 'Starting wrk2 load test...'\nStarting wrk2 load test...\n+ ./wrk -t10 -c10 -d30s -R100 -s verify.lua -L https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\nRunning 30s test @ https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators/api/v1/all\n  10 threads and 10 connections\n  Thread calibration: mean lat.: 2296.190ms, rate sampling interval: 7462ms\n  Thread calibration: mean lat.: 1553.965ms, rate sampling interval: 5091ms\n  Thread calibration: mean lat.: 2320.590ms, rate sampling interval: 7835ms\n  Thread calibration: mean lat.: 2466.874ms, rate sampling interval: 7499ms\n  Thread calibration: mean lat.: 2373.498ms, rate sampling interval: 8032ms\n  Thread calibration: mean lat.: 2642.726ms, rate sampling interval: 9043ms\n  Thread calibration: mean lat.: 2628.473ms, rate sampling interval: 8560ms\n  Thread calibration: mean lat.: 2769.107ms, rate sampling interval: 9805ms\n  Thread calibration: mean lat.: 2706.335ms, rate sampling interval: 9396ms\n  Thread calibration: mean lat.: 2342.773ms, rate sampling interval: 8847ms\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     8.90s     2.99s   15.88s    63.30%\n    Req/Sec     4.90      0.97     7.00     90.48%\n  Latency Distribution (HdrHistogram - Recorded Latency)\n 50.000%    8.68s \n 75.000%   11.17s \n 90.000%   13.07s \n 99.000%   15.27s \n 99.900%   15.75s \n 99.990%   15.88s \n 99.999%   15.88s \n100.000%   15.88s \n\n  Detailed Percentile spectrum:\n       Value   Percentile   TotalCount 1/(1-Percentile)\n\n    2899.967     0.000000            1         1.00\n    5140.479     0.100000          111         1.11\n    6078.463     0.200000          220         1.25\n    6909.951     0.300000          330         1.43\n    7745.535     0.400000          440         1.67\n    8683.519     0.500000          549         2.00\n    9093.119     0.550000          605         2.22\n    9560.063     0.600000          659         2.50\n   10108.927     0.650000          715         2.86\n   10665.983     0.700000          769         3.33\n   11165.695     0.750000          824         4.00\n   11411.455     0.775000          852         4.44\n   11730.943     0.800000          880         5.00\n   12042.239     0.825000          906         5.71\n   12410.879     0.850000          934         6.67\n   12705.791     0.875000          961         8.00\n   12894.207     0.887500          975         8.89\n   13082.623     0.900000          989        10.00\n   13344.767     0.912500         1003        11.43\n   13565.951     0.925000         1016        13.33\n   13787.135     0.937500         1030        16.00\n   13959.167     0.943750         1037        17.78\n   14123.007     0.950000         1044        20.00\n   14270.463     0.956250         1050        22.86\n   14508.031     0.962500         1057        26.67\n   14680.063     0.968750         1064        32.00\n   14786.559     0.971875         1068        35.56\n   14860.287     0.975000         1072        40.00\n   14901.247     0.978125         1074        45.71\n   14958.591     0.981250         1078        53.33\n   15048.703     0.984375         1081        64.00\n   15155.199     0.985938         1083        71.11\n   15228.927     0.987500         1086        80.00\n   15228.927     0.989062         1086        91.43\n   15319.039     0.990625         1088       106.67\n   15376.383     0.992188         1090       128.00\n   15425.535     0.992969         1091       142.22\n   15491.071     0.993750         1092       160.00\n   15491.071     0.994531         1092       182.86\n   15507.455     0.995313         1093       213.33\n   15589.375     0.996094         1094       256.00\n   15638.527     0.996484         1095       284.44\n   15638.527     0.996875         1095       320.00\n   15638.527     0.997266         1095       365.71\n   15712.255     0.997656         1096       426.67\n   15712.255     0.998047         1096       512.00\n   15753.215     0.998242         1097       568.89\n   15753.215     0.998437         1097       640.00\n   15753.215     0.998633         1097       731.43\n   15753.215     0.998828         1097       853.33\n   15753.215     0.999023         1097      1024.00\n   15884.287     0.999121         1098      1137.78\n   15884.287     1.000000         1098          inf\n#[Mean    =     8898.984, StdDeviation   =     2991.147]\n#[Max     =    15876.096, Total count    =         1098]\n#[Buckets =           27, SubBuckets     =         2048]\n----------------------------------------------------------\n  1645 requests in 30.03s, 41.19GB read\nRequests/sec:     54.77\nTransfer/sec:      1.37GB\n\n\n=== LOAD TEST RESULTS ===\nTotal requests: 1645\nSocket errors: connect 0, read 0, write 0, timeout 0\nHTTP errors: 0\nRequest rate: 54.77 requests/s\n\nThreshold checks:\nSuccess rate: 100.00%\nSUCCESS: All requests were successful (100 percent)\n  P99 latency: 15269887 μs (threshold: 16000000 μs)\nSUCCESS: P99 latency within threshold\n\nOVERALL RESULT: SUCCESS - All performance thresholds met\n+ TEST_EXIT_CODE=0\n+ '[' 0 -ne 0 ']'\n+ echo 'Load test completed'\nLoad test completed"
    STEP: Successfully completed load test with acceptable performance @ 03/19/25 20:27:32.514
  • [72.531 seconds]
  ------------------------------

  Ran 1 of 1 Specs in 72.533 seconds
  SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped

retesting

/retest-required

Copy link

openshift-trt bot commented Mar 20, 2025

Job Failure Risk Analysis for sha: d85d7ea

Job Name Failure Risk
pull-ci-openshift-origin-main-e2e-agnostic-ovn-cmd IncompleteTests
Tests for this run (19) are below the historical average (1201): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws IncompleteTests
Tests for this run (18) are below the historical average (2172): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-csi IncompleteTests
Tests for this run (18) are below the historical average (1184): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-disruptive IncompleteTests
Tests for this run (18) are below the historical average (1102): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn IncompleteTests
Tests for this run (18) are below the historical average (2160): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 IncompleteTests
Tests for this run (18) are below the historical average (2177): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-etcd-scaling IncompleteTests
Tests for this run (18) are below the historical average (1312): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-kube-apiserver-rollout IncompleteTests
Tests for this run (18) are below the historical average (1270): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node IncompleteTests
Tests for this run (18) are below the historical average (1947): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-serial IncompleteTests
Tests for this run (18) are below the historical average (1305): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade IncompleteTests
Tests for this run (19) are below the historical average (2806): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-ovn-upgrade IncompleteTests
Tests for this run (20) are below the historical average (1248): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-proxy IncompleteTests
Tests for this run (19) are below the historical average (2125): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure IncompleteTests
Tests for this run (19) are below the historical average (1963): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure-ovn-etcd-scaling IncompleteTests
Tests for this run (19) are below the historical average (1219): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure-ovn-upgrade IncompleteTests
Tests for this run (19) are below the historical average (2460): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-gcp-csi IncompleteTests
Tests for this run (19) are below the historical average (1147): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-gcp-disruptive IncompleteTests
Tests for this run (19) are below the historical average (1150): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-gcp-fips-serial IncompleteTests
Tests for this run (19) are below the historical average (1145): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-gcp-ovn-etcd-scaling IncompleteTests
Tests for this run (19) are below the historical average (1283): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)

Showing 20 of 33 jobs analysis

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: d85d7ea

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 1 time(s).
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 1 time(s).
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 1 time(s).
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-gcp-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-vsphere-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 1 time(s).
pull-ci-openshift-origin-main-e2e-vsphere-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
(...showing 20 of 32 rows)

New tests seen in this PR at sha: d85d7ea

  • "Store build results into a layer on top of tools and save as tools-base" [Total: 1, Pass: 1, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 10, Fail: 6, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 16, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 16, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 16, Fail: 0, Flake: 2]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 16, Fail: 0, Flake: 4]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 16, Pass: 16, Fail: 0, Flake: 3]

@anik120
Copy link
Contributor Author

anik120 commented Mar 31, 2025

/retest

@anik120 anik120 force-pushed the catalogd-metas-tests branch from d85d7ea to a5ffb16 Compare March 31, 2025 18:05
@anik120
Copy link
Contributor Author

anik120 commented Apr 1, 2025

/retest

2 similar comments
@anik120
Copy link
Contributor Author

anik120 commented Apr 1, 2025

/retest

@anik120
Copy link
Contributor Author

anik120 commented Apr 1, 2025

/retest

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Apr 1, 2025
Copy link

openshift-trt bot commented Apr 1, 2025

Job Failure Risk Analysis for sha: a5ffb16

Job Name Failure Risk
pull-ci-openshift-origin-main-4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback IncompleteTests
Tests for this run (93) are below the historical average (240): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-azure-ovn-etcd-scaling Low
[bz-kube-storage-version-migrator] clusteroperator/kube-storage-version-migrator should not change condition/Available
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:azure SecurityMode:default Topology:ha Upgrade:none] in the last week.

Open Bugs
[CI] e2e-openstack-ovn-etcd-scaling job permanent fails at many openshift-test tests
---
[bz-Cloud Compute] clusteroperator/control-plane-machine-set should not change condition/Degraded
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:azure SecurityMode:default Topology:ha Upgrade:none] in the last week.
pull-ci-openshift-origin-main-e2e-gcp-ovn-etcd-scaling Medium
[sig-architecture] platform pods in ns/openshift-multus should not exit an excessive amount of times
Potential external regression detected for High Risk Test analysis
pull-ci-openshift-origin-main-e2e-metal-ipi-virtualmedia IncompleteTests
Tests for this run (102) are below the historical average (2055): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-vsphere-ovn-etcd-scaling Low
[sig-api-machinery] disruption/cache-oauth-api connection/new should be available throughout the test
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:vsphere SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
[sig-api-machinery] disruption/cache-openshift-api connection/new should be available throughout the test
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:vsphere SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
[bz-Cloud Compute] clusteroperator/control-plane-machine-set should not change condition/Degraded
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:vsphere SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
[sig-instrumentation] disruption/metrics-api connection/new should be available throughout the test
This test has passed 0.00% of 1 runs on release 4.19 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:rare Network:ovn NetworkStack:ipv4 Owner:eng Platform:vsphere SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
Showing 4 of 6 test results

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: a5ffb16

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-aws High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2 High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 3 time(s).
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-aws-ovn-fips High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 3 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-aws-proxy High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that failed 4 time(s) against the current commit
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 3 time(s).
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-azure High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit.
pull-ci-openshift-origin-main-e2e-azure-ovn-upgrade High - "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" is a new test that was not present in all runs against the current commit, and also failed 2 time(s).
(...showing 20 of 64 rows)

New tests seen in this PR at sha: a5ffb16

  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 Catalogs API Load Test metas endpoint should handle concurrent load with acceptable performance on api/v1/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 4, Pass: 0, Fail: 4, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 4, Pass: 4, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 4, Pass: 4, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 4, Pass: 4, Fail: 0, Flake: 2]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 4, Pass: 4, Fail: 0, Flake: 2]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs API Load Test all endpoint should handle concurrent load with acceptable performance on api/v1/all endpoint [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 10, Fail: 68, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 78, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 77, Fail: 1, Flake: 25]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 77, Fail: 1, Flake: 28]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 77, Fail: 1, Flake: 16]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 78, Pass: 77, Fail: 1, Flake: 30]

@anik120
Copy link
Contributor Author

anik120 commented Apr 2, 2025

/retest-required

@anik120
Copy link
Contributor Author

anik120 commented Apr 2, 2025

/test ci/prow/e2e-aws-ovn-edge-zones

Copy link
Contributor

openshift-ci bot commented Apr 2, 2025

@anik120: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

/test e2e-aws-jenkins
/test e2e-aws-ovn-edge-zones
/test e2e-aws-ovn-fips
/test e2e-aws-ovn-image-registry
/test e2e-aws-ovn-microshift
/test e2e-aws-ovn-microshift-serial
/test e2e-aws-ovn-serial
/test e2e-gcp-ovn
/test e2e-gcp-ovn-builds
/test e2e-gcp-ovn-image-ecosystem
/test e2e-gcp-ovn-upgrade
/test e2e-metal-ipi-ovn-ipv6
/test e2e-vsphere-ovn
/test e2e-vsphere-ovn-upi
/test images
/test lint
/test okd-scos-images
/test unit
/test verify
/test verify-deps

The following commands are available to trigger optional jobs:

/test 4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback
/test e2e-agnostic-ovn-cmd
/test e2e-aws
/test e2e-aws-csi
/test e2e-aws-disruptive
/test e2e-aws-etcd-certrotation
/test e2e-aws-etcd-recovery
/test e2e-aws-ovn
/test e2e-aws-ovn-cgroupsv2
/test e2e-aws-ovn-etcd-scaling
/test e2e-aws-ovn-ipsec-serial
/test e2e-aws-ovn-kube-apiserver-rollout
/test e2e-aws-ovn-kubevirt
/test e2e-aws-ovn-single-node
/test e2e-aws-ovn-single-node-serial
/test e2e-aws-ovn-single-node-techpreview
/test e2e-aws-ovn-single-node-techpreview-serial
/test e2e-aws-ovn-single-node-upgrade
/test e2e-aws-ovn-upgrade
/test e2e-aws-ovn-upgrade-rollback
/test e2e-aws-ovn-upi
/test e2e-aws-ovn-virt-techpreview
/test e2e-aws-proxy
/test e2e-azure
/test e2e-azure-ovn-etcd-scaling
/test e2e-azure-ovn-upgrade
/test e2e-baremetalds-kubevirt
/test e2e-external-aws
/test e2e-external-aws-ccm
/test e2e-external-vsphere-ccm
/test e2e-gcp-csi
/test e2e-gcp-disruptive
/test e2e-gcp-fips-serial
/test e2e-gcp-ovn-etcd-scaling
/test e2e-gcp-ovn-rt-upgrade
/test e2e-gcp-ovn-techpreview
/test e2e-gcp-ovn-techpreview-serial
/test e2e-hypershift-conformance
/test e2e-metal-ipi-ovn
/test e2e-metal-ipi-ovn-dualstack
/test e2e-metal-ipi-ovn-dualstack-bgp-techpreview
/test e2e-metal-ipi-ovn-dualstack-local-gateway
/test e2e-metal-ipi-ovn-kube-apiserver-rollout
/test e2e-metal-ipi-serial
/test e2e-metal-ipi-serial-ovn-ipv6
/test e2e-metal-ipi-virtualmedia
/test e2e-metal-ovn-single-node-live-iso
/test e2e-metal-ovn-single-node-with-worker-live-iso
/test e2e-openstack-ovn
/test e2e-openstack-serial
/test e2e-vsphere-ovn-dualstack-primaryv6
/test e2e-vsphere-ovn-etcd-scaling
/test okd-e2e-gcp
/test okd-scos-e2e-aws-ovn

Use /test all to run the following jobs that were automatically triggered:

pull-ci-openshift-origin-main-4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback
pull-ci-openshift-origin-main-e2e-agnostic-ovn-cmd
pull-ci-openshift-origin-main-e2e-aws
pull-ci-openshift-origin-main-e2e-aws-csi
pull-ci-openshift-origin-main-e2e-aws-disruptive
pull-ci-openshift-origin-main-e2e-aws-ovn
pull-ci-openshift-origin-main-e2e-aws-ovn-cgroupsv2
pull-ci-openshift-origin-main-e2e-aws-ovn-edge-zones
pull-ci-openshift-origin-main-e2e-aws-ovn-etcd-scaling
pull-ci-openshift-origin-main-e2e-aws-ovn-fips
pull-ci-openshift-origin-main-e2e-aws-ovn-kube-apiserver-rollout
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift
pull-ci-openshift-origin-main-e2e-aws-ovn-microshift-serial
pull-ci-openshift-origin-main-e2e-aws-ovn-serial
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-serial
pull-ci-openshift-origin-main-e2e-aws-ovn-single-node-upgrade
pull-ci-openshift-origin-main-e2e-aws-ovn-upgrade
pull-ci-openshift-origin-main-e2e-aws-proxy
pull-ci-openshift-origin-main-e2e-azure
pull-ci-openshift-origin-main-e2e-azure-ovn-etcd-scaling
pull-ci-openshift-origin-main-e2e-azure-ovn-upgrade
pull-ci-openshift-origin-main-e2e-gcp-csi
pull-ci-openshift-origin-main-e2e-gcp-disruptive
pull-ci-openshift-origin-main-e2e-gcp-fips-serial
pull-ci-openshift-origin-main-e2e-gcp-ovn
pull-ci-openshift-origin-main-e2e-gcp-ovn-etcd-scaling
pull-ci-openshift-origin-main-e2e-gcp-ovn-rt-upgrade
pull-ci-openshift-origin-main-e2e-gcp-ovn-upgrade
pull-ci-openshift-origin-main-e2e-hypershift-conformance
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-bgp-techpreview
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-local-gateway
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-ipv6
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-kube-apiserver-rollout
pull-ci-openshift-origin-main-e2e-metal-ipi-serial
pull-ci-openshift-origin-main-e2e-metal-ipi-serial-ovn-ipv6
pull-ci-openshift-origin-main-e2e-metal-ipi-virtualmedia
pull-ci-openshift-origin-main-e2e-openstack-ovn
pull-ci-openshift-origin-main-e2e-openstack-serial
pull-ci-openshift-origin-main-e2e-vsphere-ovn
pull-ci-openshift-origin-main-e2e-vsphere-ovn-dualstack-primaryv6
pull-ci-openshift-origin-main-e2e-vsphere-ovn-etcd-scaling
pull-ci-openshift-origin-main-e2e-vsphere-ovn-upi
pull-ci-openshift-origin-main-images
pull-ci-openshift-origin-main-lint
pull-ci-openshift-origin-main-okd-e2e-gcp
pull-ci-openshift-origin-main-okd-scos-e2e-aws-ovn
pull-ci-openshift-origin-main-okd-scos-images
pull-ci-openshift-origin-main-unit
pull-ci-openshift-origin-main-verify
pull-ci-openshift-origin-main-verify-deps

In response to this:

/test ci/prow/e2e-aws-ovn-edge-zones

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.

@anik120
Copy link
Contributor Author

anik120 commented Apr 2, 2025

/test e2e-aws-ovn-edge-zones

Introduces tests for the new `api/v1/metas` endpoint when
NewOLMCatalogdAPIV1Metas feature gate in enabled.

Signed-off-by: Anik Bhattacharjee <[email protected]>
@anik120 anik120 force-pushed the catalogd-metas-tests branch from a5ffb16 to 9fc20f4 Compare April 2, 2025 18:41
@openshift-merge-robot openshift-merge-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Apr 2, 2025
Copy link
Contributor

openshift-ci bot commented Apr 3, 2025

@anik120: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-techpreview 9fc20f4 link false /test e2e-metal-ipi-ovn-dualstack-bgp-techpreview
ci/prow/e2e-metal-ipi-ovn-dualstack 9fc20f4 link false /test e2e-metal-ipi-ovn-dualstack
ci/prow/e2e-metal-ipi-ovn-dualstack-local-gateway 9fc20f4 link false /test e2e-metal-ipi-ovn-dualstack-local-gateway
ci/prow/e2e-gcp-fips-serial 9fc20f4 link false /test e2e-gcp-fips-serial
ci/prow/e2e-metal-ipi-ovn 9fc20f4 link false /test e2e-metal-ipi-ovn
ci/prow/e2e-vsphere-ovn 9fc20f4 link true /test e2e-vsphere-ovn
ci/prow/4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback 9fc20f4 link false /test 4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback
ci/prow/e2e-azure-ovn-etcd-scaling 9fc20f4 link false /test e2e-azure-ovn-etcd-scaling
ci/prow/okd-e2e-gcp 9fc20f4 link false /test okd-e2e-gcp
ci/prow/e2e-openstack-serial 9fc20f4 link false /test e2e-openstack-serial
ci/prow/e2e-aws-disruptive 9fc20f4 link false /test e2e-aws-disruptive
ci/prow/images 9fc20f4 link true /test images
ci/prow/e2e-aws-ovn-serial 9fc20f4 link true /test e2e-aws-ovn-serial
ci/prow/e2e-aws-ovn-kube-apiserver-rollout 9fc20f4 link false /test e2e-aws-ovn-kube-apiserver-rollout
ci/prow/e2e-aws-ovn-cgroupsv2 9fc20f4 link false /test e2e-aws-ovn-cgroupsv2
ci/prow/e2e-vsphere-ovn-etcd-scaling 9fc20f4 link false /test e2e-vsphere-ovn-etcd-scaling
ci/prow/okd-scos-e2e-aws-ovn 9fc20f4 link false /test okd-scos-e2e-aws-ovn
ci/prow/e2e-aws-ovn-single-node-serial 9fc20f4 link false /test e2e-aws-ovn-single-node-serial
ci/prow/e2e-aws-ovn-etcd-scaling 9fc20f4 link false /test e2e-aws-ovn-etcd-scaling
ci/prow/e2e-gcp-ovn-etcd-scaling 9fc20f4 link false /test e2e-gcp-ovn-etcd-scaling
ci/prow/e2e-vsphere-ovn-upi 9fc20f4 link true /test e2e-vsphere-ovn-upi
ci/prow/e2e-metal-ipi-virtualmedia 9fc20f4 link false /test e2e-metal-ipi-virtualmedia
ci/prow/e2e-vsphere-ovn-dualstack-primaryv6 9fc20f4 link false /test e2e-vsphere-ovn-dualstack-primaryv6
ci/prow/e2e-aws-ovn-single-node-upgrade 9fc20f4 link false /test e2e-aws-ovn-single-node-upgrade
ci/prow/e2e-gcp-ovn 9fc20f4 link true /test e2e-gcp-ovn
ci/prow/e2e-aws-ovn-fips 9fc20f4 link true /test e2e-aws-ovn-fips
ci/prow/e2e-aws 9fc20f4 link false /test e2e-aws
ci/prow/e2e-gcp-disruptive 9fc20f4 link false /test e2e-gcp-disruptive
ci/prow/e2e-azure 9fc20f4 link false /test e2e-azure
ci/prow/e2e-azure-ovn-upgrade 9fc20f4 link false /test e2e-azure-ovn-upgrade
ci/prow/e2e-aws-ovn-edge-zones 9fc20f4 link true /test e2e-aws-ovn-edge-zones
ci/prow/e2e-openstack-ovn 9fc20f4 link false /test e2e-openstack-ovn

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.

Copy link

openshift-trt bot commented Apr 3, 2025

Job Failure Risk Analysis for sha: 9fc20f4

Job Name Failure Risk
pull-ci-openshift-origin-main-4.12-upgrade-from-stable-4.11-e2e-aws-ovn-upgrade-rollback IncompleteTests
Tests for this run (93) are below the historical average (221): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-aws-disruptive Medium
[sig-node] static pods should start after being created
Potential external regression detected for High Risk Test analysis
pull-ci-openshift-origin-main-e2e-aws-ovn-etcd-scaling Medium
[sig-architecture] platform pods in ns/openshift-multus should not exit an excessive amount of times
Potential external regression detected for High Risk Test analysis
pull-ci-openshift-origin-main-e2e-gcp-disruptive Medium
[bz-Etcd] clusteroperator/etcd should not change condition/Available
Potential external regression detected for High Risk Test analysis
---
[sig-node] static pods should start after being created
Potential external regression detected for High Risk Test analysis
pull-ci-openshift-origin-main-e2e-gcp-fips-serial IncompleteTests
Tests for this run (103) are below the historical average (1814): IncompleteTests (not enough tests ran to make a reasonable risk analysis; this could be due to infra, installation, or upgrade problems)
pull-ci-openshift-origin-main-e2e-gcp-ovn-etcd-scaling Medium
[sig-architecture] platform pods in ns/openshift-multus should not exit an excessive amount of times
Potential external regression detected for High Risk Test analysis

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New Test Risks for sha: 9fc20f4

Job Name New Test Risk
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-bgp-techpreview Medium - "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" is a new test, and was only seen in one job.
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-bgp-techpreview Medium - "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" is a new test, and was only seen in one job.
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-bgp-techpreview Medium - "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" is a new test, and was only seen in one job.
pull-ci-openshift-origin-main-e2e-metal-ipi-ovn-dualstack-bgp-techpreview Medium - "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" is a new test, and was only seen in one job.

New tests seen in this PR at sha: 9fc20f4

  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 1, Pass: 1, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 1, Pass: 1, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 1, Pass: 1, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/metas endpoint [Suite:openshift/conformance/parallel]" [Total: 1, Pass: 1, Fail: 0, Flake: 1]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default Catalogs should be installed [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 0]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 9]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 7]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 7]
  • "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint [Suite:openshift/conformance/parallel]" [Total: 18, Pass: 18, Fail: 0, Flake: 6]

@anik120
Copy link
Contributor Author

anik120 commented Apr 3, 2025

/retest

2 similar comments
@anik120
Copy link
Contributor Author

anik120 commented Apr 3, 2025

/retest

@anik120
Copy link
Contributor Author

anik120 commented Apr 3, 2025

/retest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants