Skip to content

CNTRLPLANE-1257: set up openshift-tests-extension and add a sanity test #623

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 19, 2025

Conversation

wangke19
Copy link
Contributor

@wangke19 wangke19 commented Aug 15, 2025

Description


This commit introduces a binary and supporting structure to enable the
execution of OpenShift origin (openshift-apiserver-operator) tests using the Open Test Environment (OTE).

It lays the groundwork for moving origin test in openshift/origin to
be executed from this repository using OTE.

Checklist from https://docs.google.com/document/d/1cFZj9QdzW8hbHc3H0Nce-2xrJMtpDJrwAse9H7hLiWk/edit?tab=t.0

  • Revise project with Dockerfile for CI
  • Initialize the extension
  • Build the binary (make build)
$ make tests-ext-build
GOOS=linux GOARCH=amd64 GO_COMPLIANCE_POLICY=exempt_all CGO_ENABLED=0 \
go build -o cluster-openshift-apiserver-operator-tests-ext -ldflags "-X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.CommitFromGit=bfbc833a0' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.BuildDate=2025-08-15T08:58:36Z' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.GitTreeState=clean'" ./cmd/cluster-openshift-apiserver-operator-tests-ext

the extension is to be registered here openshift/origin#30120

  • Test locally (following bellow)
    Local Tests

  • Confirm info outputs correct API version, metadata
$ ./cluster-openshift-apiserver-operator-tests-ext info 
{
    "apiVersion": "v1.1",
    "source": {
        "commit": "",
        "build_date": "",
        "git_tree_state": ""
    },
    "component": {
        "product": "openshift",
        "type": "payload",
        "name": "cluster-openshift-apiserver-operator"
    },
    "suites": [
        {
            "name": "openshift/cluster-openshift-apiserver-operator/conformance/parallel",
            "description": "",
            "parents": [
                "openshift/conformance/parallel"
            ],
            "qualifiers": [
                "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (!(name.contains(\"[Serial]\") || name.contains(\"[Slow]\")))"
            ]
        },
        {
            "name": "openshift/cluster-openshift-apiserver-operator/conformance/serial",
            "description": "",
            "parents": [
                "openshift/conformance/serial"
            ],
            "qualifiers": [
                "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Serial]\"))"
            ]
        },
        {
            "name": "openshift/cluster-openshift-apiserver-operator/optional/slow",
            "description": "",
            "parents": [
                "openshift/optional/slow"
            ],
            "qualifiers": [
                "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Slow]\"))"
            ]
        },
        {
            "name": "openshift/cluster-openshift-apiserver-operator/all",
            "description": "",
            "qualifiers": [
                "source == \"openshift:payload:cluster-openshift-apiserver-operator\""
            ]
        }
    ],
    "images": null
}

  • Confirm list outputs tests properly filtered by environment
$ ./cluster-openshift-apiserver-operator-tests-ext list
[
  {
    "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
    "labels": {},
    "resources": {
      "isolation": {}
    },
    "source": "openshift:payload:cluster-openshift-apiserver-operator",
    "codeLocations": [
      "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:8",
      "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9"
    ],
    "lifecycle": "blocking",
    "environmentSelector": {}
  }
]
  • Confirm we can run tests locally and produces valid JSONL test results:
./cluster-openshift-apiserver-operator-tests-ext run-test -n "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]"
  Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
  =======================================================================================
  Random Seed: 1755261526 - will randomize all specs

  Will run 1 of 1 specs
  ------------------------------
  [Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
  github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
  • [0.000 seconds]
  ------------------------------

  Ran 1 of 1 Specs in 0.000 seconds
  SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
  {
    "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
    "lifecycle": "blocking",
    "duration": 0,
    "startTime": "2025-08-15 12:38:46.068679 UTC",
    "endTime": "2025-08-15 12:38:46.069200 UTC",
    "result": "passed",
    "output": ""
  }
]
  • Confirm we can run suites locally.
$ ./cluster-openshift-apiserver-operator-tests-ext run-suite openshift/cluster-openshift-apiserver-operator/all
  Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
  =======================================================================================
  Random Seed: 1755261659 - will randomize all specs

  Will run 1 of 1 specs
  ------------------------------
  [Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
  github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
  • [0.000 seconds]
  ------------------------------

  Ran 1 of 1 Specs in 0.000 seconds
  SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
  {
    "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
    "lifecycle": "blocking",
    "duration": 0,
    "startTime": "2025-08-15 12:40:59.676946 UTC",
    "endTime": "2025-08-15 12:40:59.677480 UTC",
    "result": "passed",
    "output": ""
  }
]

Blocks

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

openshift-ci-robot commented Aug 15, 2025

@wangke19: This pull request references CNTRLPLANE-1257 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 task to target the "4.20.0" version, but no target version was set.

In response to this:

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

@openshift-ci 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 Aug 15, 2025
@openshift-ci openshift-ci bot requested review from benluddy and p0lyn0mial August 15, 2025 07:43
@wangke19 wangke19 force-pushed the test-extd branch 3 times, most recently from 004013c to 16767f4 Compare August 15, 2025 08:02
@wangke19 wangke19 force-pushed the test-extd branch 2 times, most recently from a74e665 to bfbc833 Compare August 15, 2025 08:55
@openshift-ci-robot
Copy link

openshift-ci-robot commented Aug 15, 2025

@wangke19: This pull request references CNTRLPLANE-1257 which is a valid jira issue.

In response to this:

Description


This commit introduces a binary and supporting structure to enable the
execution of OpenShift origin (openshift-apiserver-operator) tests using the Open Test Environment (OTE).

It lays the groundwork for moving origin test in openshift/origin to
be executed from this repository using OTE.

Checklist from https://docs.google.com/document/d/1cFZj9QdzW8hbHc3H0Nce-2xrJMtpDJrwAse9H7hLiWk/edit?tab=t.0

  • Revise project with Dockerfile for CI
  • Initialize the extension
  • Build the binary (make build)
$ make tests-ext-build
GOOS=linux GOARCH=amd64 GO_COMPLIANCE_POLICY=exempt_all CGO_ENABLED=0 \
go build -o cluster-openshift-apiserver-operator-tests-ext -ldflags "-X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.CommitFromGit=bfbc833a0' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.BuildDate=2025-08-15T08:58:36Z' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.GitTreeState=clean'" ./cmd/cluster-openshift-apiserver-operator-tests-ext

the extension is to be registered here openshift/origin#30120

  • Test locally (following bellow)
    Local Tests

  • Confirm info outputs correct API version, metadata
$ ./cluster-openshift-apiserver-operator-tests-ext info 
{
   "apiVersion": "v1.1",
   "source": {
       "commit": "",
       "build_date": "",
       "git_tree_state": ""
   },
   "component": {
       "product": "openshift",
       "type": "payload",
       "name": "cluster-openshift-apiserver-operator"
   },
   "suites": [
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/parallel",
           "description": "",
           "parents": [
               "openshift/conformance/parallel"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (!(name.contains(\"[Serial]\") || name.contains(\"[Slow]\")))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/serial",
           "description": "",
           "parents": [
               "openshift/conformance/serial"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Serial]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/optional/slow",
           "description": "",
           "parents": [
               "openshift/optional/slow"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Slow]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/all",
           "description": "",
           "qualifiers": [
               "source == \"openshift:payload:cluster-openshift-apiserver-operator\""
           ]
       }
   ],
   "images": null
}

  • Confirm list outputs tests properly filtered by environment
$ ./cluster-openshift-apiserver-operator-tests-ext list
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "labels": {},
   "resources": {
     "isolation": {}
   },
   "source": "openshift:payload:cluster-openshift-apiserver-operator",
   "codeLocations": [
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:8",
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9"
   ],
   "lifecycle": "blocking",
   "environmentSelector": {}
 }
]
  • Confirm we can run tests locally and produces valid JSONL test results:
$ ./cluster-openshift-apiserver-operator-tests-ext run-test -n "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]"
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755248092 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 08:54:52.045138 UTC",
   "endTime": "2025-08-15 08:54:52.045756 UTC",
   "result": "passed",
   "output": ""
 }
]
  • Confirm we can run suites locally.
$ ./cluster-openshift-apiserver-operator-tests-ext run-suite openshift/cluster-openshift-apiserver-operator/all
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755248107 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 08:55:07.820082 UTC",
   "endTime": "2025-08-15 08:55:07.820555 UTC",
   "result": "passed",
   "output": ""
 }
]

Blocks

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

@openshift-ci-robot
Copy link

openshift-ci-robot commented Aug 15, 2025

@wangke19: This pull request references CNTRLPLANE-1257 which is a valid jira issue.

In response to this:

Description


This commit introduces a binary and supporting structure to enable the
execution of OpenShift origin (openshift-apiserver-operator) tests using the Open Test Environment (OTE).

It lays the groundwork for moving origin test in openshift/origin to
be executed from this repository using OTE.

Checklist from https://docs.google.com/document/d/1cFZj9QdzW8hbHc3H0Nce-2xrJMtpDJrwAse9H7hLiWk/edit?tab=t.0

  • Revise project with Dockerfile for CI
  • Initialize the extension
  • Build the binary (make build)
$ make tests-ext-build
GOOS=linux GOARCH=amd64 GO_COMPLIANCE_POLICY=exempt_all CGO_ENABLED=0 \
go build -o cluster-openshift-apiserver-operator-tests-ext -ldflags "-X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.CommitFromGit=bfbc833a0' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.BuildDate=2025-08-15T08:58:36Z' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.GitTreeState=clean'" ./cmd/cluster-openshift-apiserver-operator-tests-ext

the extension is to be registered here openshift/origin#30120

  • Test locally (following bellow)
    Local Tests

  • Confirm info outputs correct API version, metadata
$ ./cluster-openshift-apiserver-operator-tests-ext info 
{
   "apiVersion": "v1.1",
   "source": {
       "commit": "",
       "build_date": "",
       "git_tree_state": ""
   },
   "component": {
       "product": "openshift",
       "type": "payload",
       "name": "cluster-openshift-apiserver-operator"
   },
   "suites": [
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/parallel",
           "description": "",
           "parents": [
               "openshift/conformance/parallel"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (!(name.contains(\"[Serial]\") || name.contains(\"[Slow]\")))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/serial",
           "description": "",
           "parents": [
               "openshift/conformance/serial"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Serial]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/optional/slow",
           "description": "",
           "parents": [
               "openshift/optional/slow"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Slow]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/all",
           "description": "",
           "qualifiers": [
               "source == \"openshift:payload:cluster-openshift-apiserver-operator\""
           ]
       }
   ],
   "images": null
}

  • Confirm list outputs tests properly filtered by environment
$ ./cluster-openshift-apiserver-operator-tests-ext list
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "labels": {},
   "resources": {
     "isolation": {}
   },
   "source": "openshift:payload:cluster-openshift-apiserver-operator",
   "codeLocations": [
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:8",
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9"
   ],
   "lifecycle": "blocking",
   "environmentSelector": {}
 }
]
  • Confirm we can run tests locally and produces valid JSONL test results:
$ ./cluster-openshift-apiserver-operator-tests-ext run-test -n "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]"
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755248092 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 08:54:52.045138 UTC",
   "endTime": "2025-08-15 08:54:52.045756 UTC",
   "result": "passed",
   "output": ""
 }
]
  • Confirm we can run suites locally.
$ ./cluster-openshift-apiserver-operator-tests-ext run-suite openshift/cluster-openshift-apiserver-operator/all
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755248107 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:OAS][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 08:55:07.820082 UTC",
   "endTime": "2025-08-15 08:55:07.820555 UTC",
   "result": "passed",
   "output": ""
 }
]

Blocks

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.

@wangke19
Copy link
Contributor Author

/payload-with-prs 4.20 ci blocking openshift/origin#30120

Copy link
Contributor

openshift-ci bot commented Aug 15, 2025

@wangke19: trigger 5 job(s) of type blocking for the ci release of OCP 4.20

  • periodic-ci-openshift-release-master-ci-4.20-upgrade-from-stable-4.19-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-master-ci-4.20-upgrade-from-stable-4.19-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-master-ci-4.20-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.20-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.20-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/5add31a0-79c1-11f0-9792-9f279f9d79b5-0

@wangke19 wangke19 changed the title [WIP]CNTRLPLANE-1257: set up openshift-tests-extension and add a sanity test CNTRLPLANE-1257: set up openshift-tests-extension and add a sanity test Aug 15, 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 Aug 15, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented Aug 15, 2025

@wangke19: This pull request references CNTRLPLANE-1257 which is a valid jira issue.

In response to this:

Description


This commit introduces a binary and supporting structure to enable the
execution of OpenShift origin (openshift-apiserver-operator) tests using the Open Test Environment (OTE).

It lays the groundwork for moving origin test in openshift/origin to
be executed from this repository using OTE.

Checklist from https://docs.google.com/document/d/1cFZj9QdzW8hbHc3H0Nce-2xrJMtpDJrwAse9H7hLiWk/edit?tab=t.0

  • Revise project with Dockerfile for CI
  • Initialize the extension
  • Build the binary (make build)
$ make tests-ext-build
GOOS=linux GOARCH=amd64 GO_COMPLIANCE_POLICY=exempt_all CGO_ENABLED=0 \
go build -o cluster-openshift-apiserver-operator-tests-ext -ldflags "-X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.CommitFromGit=bfbc833a0' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.BuildDate=2025-08-15T08:58:36Z' -X 'github.com/openshift-eng/openshift-tests-extension/pkg/version.GitTreeState=clean'" ./cmd/cluster-openshift-apiserver-operator-tests-ext

the extension is to be registered here openshift/origin#30120

  • Test locally (following bellow)
    Local Tests

  • Confirm info outputs correct API version, metadata
$ ./cluster-openshift-apiserver-operator-tests-ext info 
{
   "apiVersion": "v1.1",
   "source": {
       "commit": "",
       "build_date": "",
       "git_tree_state": ""
   },
   "component": {
       "product": "openshift",
       "type": "payload",
       "name": "cluster-openshift-apiserver-operator"
   },
   "suites": [
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/parallel",
           "description": "",
           "parents": [
               "openshift/conformance/parallel"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (!(name.contains(\"[Serial]\") || name.contains(\"[Slow]\")))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/conformance/serial",
           "description": "",
           "parents": [
               "openshift/conformance/serial"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Serial]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/optional/slow",
           "description": "",
           "parents": [
               "openshift/optional/slow"
           ],
           "qualifiers": [
               "(source == \"openshift:payload:cluster-openshift-apiserver-operator\") \u0026\u0026 (name.contains(\"[Slow]\"))"
           ]
       },
       {
           "name": "openshift/cluster-openshift-apiserver-operator/all",
           "description": "",
           "qualifiers": [
               "source == \"openshift:payload:cluster-openshift-apiserver-operator\""
           ]
       }
   ],
   "images": null
}

  • Confirm list outputs tests properly filtered by environment
$ ./cluster-openshift-apiserver-operator-tests-ext list
[
 {
   "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "labels": {},
   "resources": {
     "isolation": {}
   },
   "source": "openshift:payload:cluster-openshift-apiserver-operator",
   "codeLocations": [
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:8",
     "github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9"
   ],
   "lifecycle": "blocking",
   "environmentSelector": {}
 }
]
  • Confirm we can run tests locally and produces valid JSONL test results:
./cluster-openshift-apiserver-operator-tests-ext run-test -n "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]"
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755261526 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 12:38:46.068679 UTC",
   "endTime": "2025-08-15 12:38:46.069200 UTC",
   "result": "passed",
   "output": ""
 }
]
  • Confirm we can run suites locally.
$ ./cluster-openshift-apiserver-operator-tests-ext run-suite openshift/cluster-openshift-apiserver-operator/all
 Running Suite:  - /home/kewang/github-go/openshift/cluster-openshift-apiserver-operator
 =======================================================================================
 Random Seed: 1755261659 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]
 github.com/openshift/cluster-openshift-apiserver-operator/test/extended/main.go:9
 • [0.000 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 0.000 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 0,
   "startTime": "2025-08-15 12:40:59.676946 UTC",
   "endTime": "2025-08-15 12:40:59.677480 UTC",
   "result": "passed",
   "output": ""
 }
]

Blocks

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.

@vrutkovs
Copy link
Member

/approve
/lgtm

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

/retest

@wangke19
Copy link
Contributor Author

hmmm, @vrutkovs You are not in OWNERS list, It's time to update it.

wangke19 added a commit to wangke19/origin that referenced this pull request Aug 18, 2025
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Aug 18, 2025
@wangke19
Copy link
Contributor Author

/test e2e-aws-ovn

Copy link
Contributor

openshift-ci bot commented Aug 18, 2025

@wangke19: The following test 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/okd-scos-e2e-aws-ovn 39208f5 link false /test okd-scos-e2e-aws-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.

wangke19 added a commit to wangke19/origin that referenced this pull request Aug 19, 2025
@gangwgr
Copy link
Contributor

gangwgr commented Aug 19, 2025

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Aug 19, 2025
@tkashem
Copy link
Contributor

tkashem commented Aug 19, 2025

/approve

Copy link
Contributor

openshift-ci bot commented Aug 19, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: gangwgr, tkashem, vrutkovs, wangke19

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

The pull request process is described here

Needs approval from an approver in each of these files:

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

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 19, 2025
@openshift-merge-bot openshift-merge-bot bot merged commit bea3c98 into openshift:main Aug 19, 2025
9 of 10 checks passed
@wangke19 wangke19 deleted the test-extd branch August 19, 2025 12:07
@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

Distgit: ose-cluster-openshift-apiserver-operator
This PR has been included in build ose-cluster-openshift-apiserver-operator-container-v4.20.0-202508191515.p0.gbea3c98.assembly.stream.el9.
All builds following this will include this PR.

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

Successfully merging this pull request may close these issues.

6 participants