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

WRKLDS-1431: e2e: migrate DCs to Deployments #28957

Merged
merged 6 commits into from
Oct 10, 2024

Conversation

ingvagabund
Copy link
Member

@ingvagabund ingvagabund commented Jul 28, 2024

Migrated:

  • [Serial] [sig-auth][Feature:OAuthServer] [RequestHeaders] [IdP] test RequestHeaders IdP [apigroup:config.openshift.io][apigroup:user.openshift.io]: works without DC API enabled
  • [sig-builds][Feature:Builds][volumes] ...: migrating with triggers
  • [sig-cli] oc --request-timeout works as expected: creating a deployment instead of a DC
  • [sig-cli] oc adm build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io]: migrating with triggers
  • [sig-cli] oc builds ...: migrating with triggers
  • [sig-cli] oc debug ensure debug does not depend on a container actually existing for the selected resource: duplicating for deployments
  • [sig-cli] oc env can set environment variables: migrating with triggers
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments
  • [sig-cli] oc run can use --image flag correctly: creating a deployment instead of a DC
  • [sig-cli] oc set image can set images for pods and deployments: migrating with triggers
  • [sig-cli] oc status returns expected help messages: works without DC as long as --suggest arg is provided
  • [sig-cli] templates process: migrating with triggers
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on:
  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
     [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
    github.com/openshift/origin/test/extended/cluster/cl.go:63
    
      [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
      StdOut>
    
      StdErr>
      error: unknown parameter name "IDENTIFIER"
      exit status 1
      In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
    ------------------------------
    
    IDENTIFIER was removed by Use UBI8 instead of SCL images #26072.
  • [sig-scalability]: can't find any run in https://search.dptools.openshift.org/?search=%5C%5Bsig-scalability%5C%5D&maxAge=48h&context=1&type=junit&name=&excludeName=&maxMatches=5&maxBytes=20971520&groupBy=job

@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 Jul 28, 2024
@openshift-ci openshift-ci bot requested review from deads2k and rphillips July 28, 2024 12:35
@ingvagabund ingvagabund force-pushed the dc-to-deployments branch 3 times, most recently from d1ca886 to e5d212a Compare July 28, 2024 19:36
@openshift-trt-bot
Copy link

Job Failure Risk Analysis for sha: e5d212a

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-aws-ovn-single-node-upgrade Low
[sig-network] pods should successfully create sandboxes by other
This test has passed 76.35% of 5416 runs on release 4.17 [Overall] in the last week.

@ingvagabund ingvagabund changed the title WIP: e2e: migrate DCs to Deployments WRKLDS-1431: e2e: migrate DCs to Deployments Jul 29, 2024
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Jul 29, 2024
@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 Jul 29, 2024
@openshift-ci-robot
Copy link

openshift-ci-robot commented Jul 29, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs

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-trt-bot
Copy link

Job Failure Risk Analysis for sha: a478e09

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-aws-ovn-single-node-upgrade High
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.63% of 1357 runs on release 4.17 [Overall] in the last week.
---
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.41% of 1357 runs on release 4.17 [Overall] in the last week.

@openshift-trt-bot
Copy link

Job Failure Risk Analysis for sha: 6c08ffa

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-openstack-ovn High
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.36% of 1399 runs on release 4.17 [Overall] in the last week.
---
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.57% of 1399 runs on release 4.17 [Overall] in the last week.
pull-ci-openshift-origin-master-e2e-metal-ipi-ovn High
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.36% of 1399 runs on release 4.17 [Overall] in the last week.
---
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.57% of 1399 runs on release 4.17 [Overall] in the last week.
pull-ci-openshift-origin-master-e2e-gcp-ovn High
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 10 runs on jobs ['periodic-ci-openshift-release-master-ci-4.17-e2e-gcp-ovn'] in the last 14 days.
---
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 10 runs on jobs ['periodic-ci-openshift-release-master-ci-4.17-e2e-gcp-ovn'] in the last 14 days.
pull-ci-openshift-origin-master-e2e-aws-ovn-single-node-upgrade High
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.36% of 1399 runs on release 4.17 [Overall] in the last week.
---
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 99.57% of 1399 runs on release 4.17 [Overall] in the last week.
pull-ci-openshift-origin-master-e2e-aws-ovn-single-node High
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 15 runs on jobs ['periodic-ci-openshift-release-master-nightly-4.17-e2e-aws-ovn-single-node'] in the last 14 days.
---
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 15 runs on jobs ['periodic-ci-openshift-release-master-nightly-4.17-e2e-aws-ovn-single-node'] in the last 14 days.
pull-ci-openshift-origin-master-e2e-aws-ovn-fips High
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 11 runs on jobs ['periodic-ci-openshift-release-master-nightly-4.17-e2e-aws-ovn-fips'] in the last 14 days.
---
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 100.00% of 11 runs on jobs ['periodic-ci-openshift-release-master-nightly-4.17-e2e-aws-ovn-fips'] in the last 14 days.
pull-ci-openshift-origin-master-e2e-aws-ovn-edge-zones Medium
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 92.50% of 40 runs on release 4.17 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:aws SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 92.50% of 40 runs on release 4.17 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:aws SecurityMode:default Topology:ha Upgrade:none] in the last week.
pull-ci-openshift-origin-master-e2e-aws-ovn-cgroupsv2 Medium
[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 92.50% of 40 runs on release 4.17 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:aws SecurityMode:default Topology:ha Upgrade:none] in the last week.
---
[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]
This test has passed 92.50% of 40 runs on release 4.17 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:aws SecurityMode:default Topology:ha Upgrade:none] in the last week.

@openshift-ci-robot
Copy link

openshift-ci-robot commented Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs

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 Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
 [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
github.com/openshift/origin/test/extended/cluster/cl.go:63

  [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
  StdOut>

  StdErr>
  error: unknown parameter name "IDENTIFIER"
  exit status 1
  In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
------------------------------

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 Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
 [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
github.com/openshift/origin/test/extended/cluster/cl.go:63

  [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
  StdOut>

  StdErr>
  error: unknown parameter name "IDENTIFIER"
  exit status 1
  In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
------------------------------

IDENTIFIER was removed by #26072.

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 Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
 [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
github.com/openshift/origin/test/extended/cluster/cl.go:63

  [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
  StdOut>

  StdErr>
  error: unknown parameter name "IDENTIFIER"
  exit status 1
  In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
------------------------------

IDENTIFIER was removed by #26072.

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 Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [Serial] [sig-auth][Feature:OAuthServer] [RequestHeaders] [IdP] test RequestHeaders IdP [apigroup:config.openshift.io][apigroup:user.openshift.io]: works without DC API enabled
  • [sig-builds][Feature:Builds][volumes] ...: migrating with triggers
  • [sig-cli] oc --request-timeout works as expected: creating a deployment instead of a DC
  • [sig-cli] oc adm build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io]: migrating with triggers
  • [sig-cli] oc builds ...: migrating with triggers
  • [sig-cli] oc debug ensure debug does not depend on a container actually existing for the selected resource: duplicating for deployments
  • [sig-cli] oc env can set environment variables: migrating with triggers
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments
  • [sig-cli] oc run can use --image flag correctly:
  • [sig-cli] oc set image can set images for pods and deployments:
  • [sig-cli] oc status returns expected help messages:
  • [sig-cli] templates process:
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on:
  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
 [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
github.com/openshift/origin/test/extended/cluster/cl.go:63

  [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
  StdOut>

  StdErr>
  error: unknown parameter name "IDENTIFIER"
  exit status 1
  In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
------------------------------

IDENTIFIER was removed by #26072.

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 Jul 30, 2024

@ingvagabund: This pull request references WRKLDS-1431 which is a valid jira issue.

In response to this:

Migrated:

  • [Serial] [sig-auth][Feature:OAuthServer] [RequestHeaders] [IdP] test RequestHeaders IdP [apigroup:config.openshift.io][apigroup:user.openshift.io]: works without DC API enabled
  • [sig-builds][Feature:Builds][volumes] ...: migrating with triggers
  • [sig-cli] oc --request-timeout works as expected: creating a deployment instead of a DC
  • [sig-cli] oc adm build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io]: migrating with triggers
  • [sig-cli] oc builds ...: migrating with triggers
  • [sig-cli] oc debug ensure debug does not depend on a container actually existing for the selected resource: duplicating for deployments
  • [sig-cli] oc env can set environment variables: migrating with triggers
  • [sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by ...: duplicated and changed for deployments
  • [sig-cli] oc run can use --image flag correctly: creating a deployment instead of a DC
  • [sig-cli] oc set image can set images for pods and deployments: migrating with triggers
  • [sig-cli] oc status returns expected help messages: works without DC as long as --suggest arg is provided
  • [sig-cli] templates process: migrating with triggers
  • [sig-devex][Feature:Templates] templateinstance readiness test : migrating with triggers
  • [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]: migrating with triggers + replacing all the waiting code and Deployment -> RS -> pod retrival code.
  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on:
  • [sig-network-edge][Feature:Idling] Unidling ...: simple DC replacement (no triggers)
  • [sig-scheduling][Early] The openshift-apiserver pods [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes: already without DC dependency, just removing the apigroup.

Ignoring:

  • [sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io]: testing DCs
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should delete orphaned blobs [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune [apigroup:apps.openshift.io][apigroup:user.openshift.io] should show orphaned blob deletions in dry-run mode [apigroup:image.openshift.io]: not running at all, fails on missing dc/docker-registry.
  • [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template [apigroup:image.openshift.io][apigroup:operator.openshift.io][apigroup:config.openshift.io][apigroup:apps.openshift.io]: broken
  • [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template [apigroup:apps.openshift.io]: broken
  • [sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io]: testing DCs
  • [sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io]: testing DCs
  • [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]: broken by Use UBI8 instead of SCL images #26072 as the e2e is expected to be run separately: The following error is produced:
 [sig-scalability][Feature:Performance] Load cluster [It] should populate the cluster [Slow][Serial][apigroup:template.openshift.io][apigroup:build.openshift.io]
github.com/openshift/origin/test/extended/cluster/cl.go:63

  [FAILED] Unable to process template file. Error: Error running /usr/bin/oc process -f /home/jchaloup/Projects/src/github.com/openshift/origin/test/extended/testdata/cluster/quickstarts/cakephp-mysql.json -p IDENTIFIER=0:
  StdOut>

  StdErr>
  error: unknown parameter name "IDENTIFIER"
  exit status 1
  In [It] at: github.com/openshift/origin/test/extended/cluster/utils.go:529 @ 07/30/24 13:07:16.067
------------------------------

IDENTIFIER was removed by #26072.

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-trt-bot
Copy link

Job Failure Risk Analysis for sha: 481a9d3

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-aws-ovn-upgrade High
[sig-apps] job-upgrade
This test has passed 100.00% of 506 runs on jobs ['periodic-ci-openshift-release-master-ci-4.17-e2e-aws-ovn-upgrade'] in the last 14 days.

@openshift-trt-bot
Copy link

Job Failure Risk Analysis for sha: 59ecd44

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-aws-ovn-single-node-upgrade Medium
[sig-cluster-lifecycle] pathological event should not see excessive Back-off restarting failed containers for ns/openshift-marketplace
This test has passed 95.95% of 148 runs on release 4.17 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:aws SecurityMode:default Topology:single Upgrade:micro] in the last week.

@ingvagabund
Copy link
Member Author

/retest-required

@ingvagabund ingvagabund force-pushed the dc-to-deployments branch 2 times, most recently from 592fd1a to 409d1d8 Compare July 31, 2024 08:41
@ingvagabund
Copy link
Member Author

ingvagabund commented Jul 31, 2024

ci/prow/e2e-gcp-ovn-builds

[sig-builds][Feature:Builds][Slow] can use private repositories as build input build using an HTTP token should be able to clone source code via an HTTP token [apigroup:build.openshift.io]

Based on https://prow.ci.openshift.org/job-history/gs/test-platform-results/pr-logs/directory/pull-ci-openshift-origin-master-e2e-gcp-ovn-builds the job has been failing for other PRs as well.

ci/prow/e2e-aws-ovn-ipsec-serial

Often failing with failed installation

@ingvagabund
Copy link
Member Author

/retest-required

@openshift-trt-bot
Copy link

Job Failure Risk Analysis for sha: 7dc2074

Job Name Failure Risk
pull-ci-openshift-origin-master-e2e-openstack-ovn High
[sig-installer][Suite:openshift/openstack][lb][Serial] The Openstack platform should limit service access on an UDP Amphora LoadBalancer when an UDP LoadBalancer svc setting the loadBalancerSourceRanges spec is created on Openshift
This test has passed 100.00% of 8 runs on release 4.18 [Architecture:amd64 FeatureSet:default Installer:ipi Network:ovn NetworkStack:ipv4 Platform:openstack SecurityMode:default Topology:ha Upgrade:none] in the last week.

Copy link
Contributor

@dgoodwin dgoodwin left a comment

Choose a reason for hiding this comment

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

/approve

@@ -51,7 +49,7 @@ var _ = g.Describe("[sig-builds][Feature:Builds][volumes] build volumes", func()
}
})

g.It("should mount given secrets and configmaps into the build pod for source strategy builds [apigroup:image.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]", func() {
g.It("should mount given secrets and configmaps into the build pod for source strategy builds [apigroup:image.openshift.io][apigroup:build.openshift.io]", func() {
Copy link
Contributor

Choose a reason for hiding this comment

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

Can't remember if we discussed this before but you may want to rename these tests in the test mapping repo so history carries over and component readiness can compare to past releases. Unless, you feel this is now a new test that should not be compared anymore?

"New" tests may soon be required to have a very high pass rate 99% by component readiness.

Copy link
Member Author

Choose a reason for hiding this comment

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

We did :) I have a PR ready for the mapping: openshift-eng/ci-test-mapping#148. Once this merges I will update the mapping accordingly.

@dgoodwin
Copy link
Contributor

dgoodwin commented Oct 8, 2024

/payload 4.18-nightly-blocking

Copy link
Contributor

openshift-ci bot commented Oct 8, 2024

@dgoodwin: it appears that you have attempted to use some version of the payload command, but your comment was incorrectly formatted and cannot be acted upon. See the docs for usage info.

@dgoodwin
Copy link
Contributor

dgoodwin commented Oct 8, 2024

/payload 4.18 nightly blocking

Copy link
Contributor

openshift-ci bot commented Oct 8, 2024

@dgoodwin: trigger 11 job(s) of type blocking for the nightly release of OCP 4.18

  • periodic-ci-openshift-release-master-ci-4.18-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-master-ci-4.18-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-master-ci-4.18-upgrade-from-stable-4.17-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.18-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-master-nightly-4.18-e2e-aws-ovn-serial
  • periodic-ci-openshift-release-master-ci-4.18-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-master-nightly-4.18-fips-payload-scan
  • periodic-ci-openshift-release-master-nightly-4.18-e2e-metal-ipi-ovn-bm
  • periodic-ci-openshift-release-master-nightly-4.18-e2e-metal-ipi-ovn-ipv6
  • periodic-ci-openshift-microshift-release-4.18-periodics-e2e-aws-ovn-ocp-conformance
  • periodic-ci-openshift-microshift-release-4.18-periodics-e2e-aws-ovn-ocp-conformance-serial

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/6a604170-856c-11ef-96e9-71f623562d4d-0

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 8, 2024
out, err := oc.Run("status").Args("-h").Output()
o.Expect(err).NotTo(o.HaveOccurred())
o.Expect(out).To(o.ContainSubstring("oc describe buildconfig"))

out, err = oc.Run("status").Output()
out, err = oc.Run("status").Args("--suggest").Output()
Copy link
Member

Choose a reason for hiding this comment

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

What is the reason of this change?

Copy link
Member Author

Choose a reason for hiding this comment

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

oc status prints a different output that does not contain "oc new-app" text when DC API is disabled. --suggest puts the text back.

@@ -81,7 +81,7 @@ os::cmd::expect_success 'oc delete all --all'
sleep 1
os::cmd::expect_success 'oc delete all --all'

os::cmd::expect_success 'oc process -f ${TEST_DATA}/application-template-dockerbuild.json -l app=dockerbuild | oc create -f -'
os::cmd::expect_success 'oc process -f ${TEST_DATA}/application-template-dockerbuild-dc.json -l app=dockerbuild | oc create -f -'
Copy link
Member

Choose a reason for hiding this comment

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

Is this test the only existence reason of application-template-dockerbuild-dc.json?. If yes, why don't we remove this test as well as this json file?

Copy link
Member

Choose a reason for hiding this comment

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

As far as I understand, this is the only piece in origin referencing deploymentconfig and it is better to remove it.

Copy link
Member Author

Choose a reason for hiding this comment

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

deployment.sh is still testing some of the DC functionality. I'd prefer to keep it and remove it once deployment.sh gets migrated to a go based test.

@ardaguclu
Copy link
Member

ardaguclu commented Oct 8, 2024

ipsec-serial is already broken and the other failures look unrelated https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/28957/pull-ci-openshift-origin-master-e2e-gcp-ovn-image-ecosystem/1843571448459825152 seems to be related. Dropped a few comments, overall looks good to me.

@ardaguclu
Copy link
Member

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Oct 8, 2024
Copy link
Contributor

openshift-ci bot commented Oct 8, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ardaguclu, dgoodwin, ingvagabund

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

@ingvagabund
Copy link
Member Author

/retest-required

@openshift-ci-robot
Copy link

/retest-required

Remaining retests: 0 against base HEAD 89321cb and 2 for PR HEAD c7d34f8 in total

@ingvagabund
Copy link
Member Author

/retest-required

1 similar comment
@ingvagabund
Copy link
Member Author

/retest-required

Copy link
Contributor

openshift-ci bot commented Oct 9, 2024

@ingvagabund: 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 c7d34f8 link false /test e2e-metal-ipi-ovn
ci/prow/e2e-aws-ovn-ipsec-serial c7d34f8 link false /test e2e-aws-ovn-ipsec-serial

Full PR test history. Your PR dashboard.

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

@openshift-ci-robot
Copy link

/retest-required

Remaining retests: 0 against base HEAD fd6fe36 and 2 for PR HEAD c7d34f8 in total

@openshift-merge-bot openshift-merge-bot bot merged commit 5693bd4 into openshift:master Oct 10, 2024
28 of 30 checks passed
@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

Distgit: openshift-enterprise-tests
This PR has been included in build openshift-enterprise-tests-container-v4.18.0-202410100743.p0.g5693bd4.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.

9 participants