Skip to content

Unify version checks in pre-config and install steps for 4.N to 5.N compatibility#77356

Open
jianlinliu wants to merge 1 commit intoopenshift:mainfrom
jianlinliu:fix-preconfig-version-checks
Open

Unify version checks in pre-config and install steps for 4.N to 5.N compatibility#77356
jianlinliu wants to merge 1 commit intoopenshift:mainfrom
jianlinliu:fix-preconfig-version-checks

Conversation

@jianlinliu
Copy link
Copy Markdown
Contributor

@jianlinliu jianlinliu commented Apr 3, 2026

Summary

This PR unifies version comparison logic in pre-configuration and install steps to ensure compatibility with OpenShift major version transitions (4.N to 5.N).

Changes

  • Add inline sort -V based version comparison functions to 25 command scripts
  • Replace arithmetic comparisons like (( major == 4 && minor >= 12 )) with semantic version comparisons (e.g., version_ge "${ocp_version}" "4.12")
  • Remove ocp_major_version and ocp_minor_version variable extractions where no longer needed
  • Replace custom version check functions in GCP files with standardized version_ge function
  • Update inactive/commented code to follow the same pattern for future maintainability

Files Updated (25 total)

AWS (9 files)

  • aws/c2s/init-token-service
  • aws/c2s/instance-metadata
  • aws/cluster/public-to-private
  • aws/provision/security-group
  • ipi/conf/aws (main config)
  • ipi/conf/aws/byo-ipv4-pool-public
  • ipi/conf/aws/oidc-creds-provision
  • ipi/conf/aws/usage-info
  • upi/install/aws/cluster

Azure (6 files)

  • azure/cluster/public-to-private
  • azure/provision/custom-role
  • azure/provision/disk-encryption-set/grant-permission
  • azure/provision/vnet
  • ipi/conf/azure (main config)
  • ipi/conf/azure/osimage

GCP (4 files)

  • gcp/provision/xpn-min-perm-cco-manual-serviceaccount
  • ipi/conf/gcp (commented code)
  • upi/deprovision/gcp
  • upi/install/gcp

IPI Configuration (3 files)

  • ipi/conf/capability/baselinecaps/vset
  • ipi/conf/manual-creds/remove-unnecessary-creds
  • ipi/conf/network/mtu

Other (3 files)

  • edge-nodes/machineset-manifests
  • edge-nodes/machineset-manifests/outpost
  • enable-qe-catalogsource/disconnected

Why This Matters

Arithmetic comparisons fail across major version boundaries:

  • (( 5 == 4 && 0 >= 12 )) evaluates to false (incorrect)
  • version_ge "5.0" "4.12" using sort -V evaluates to true (correct)

Testing

Related

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 3, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jianlinliu

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

The pull request process is described here

Details 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 Apr 3, 2026
@openshift-ci openshift-ci bot requested review from MayXuQQ and jianzhangbjz April 3, 2026 03:35
@jianlinliu jianlinliu changed the title Unify version checks in pre-config steps for 4.N to 5.N compatibility Unify version checks in pre-config and install steps for 4.N to 5.N compatibility Apr 3, 2026
@jianlinliu
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-verification-tests-main-installation-nightly-4.16-azure-ipi-vmgenv2-f28 periodic-ci-openshift-verification-tests-main-installation-nightly-4.16-gcp-upi-xpn-f28 periodic-ci-openshift-openshift-tests-private-release-4.23-multi-nightly-aws-upi-basecap-none-arm-f7 periodic-ci-openshift-openshift-tests-private-release-4.19-amd64-stable-aws-ipi-disc-priv-localzone-fips-f28 periodic-ci-openshift-openshift-tests-private-release-4.17-amd64-stable-aws-c2s-ipi-disc-priv-fips-f28 periodic-ci-openshift-openshift-tests-private-release-4.20-multi-stable-aws-ipi-proxy-sts-arm-f28 periodic-ci-openshift-openshift-tests-private-release-5.0-multi-nightly-azure-ipi-sharednetwork-public-to-private-arm-f28

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jianlinliu: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@jianzhangbjz
Copy link
Copy Markdown
Member

cc: @kuiwang02 @Xia-Zhao-rh @bandrade

@jianlinliu jianlinliu force-pushed the fix-preconfig-version-checks branch from 1a96102 to 582f5db Compare April 3, 2026 06:22
…ompatibility

Replace arithmetic version comparisons with sort -V based functions
in configuration steps that run before ipi-install-install.

Changes:
- Add inline version comparison functions (version_ge, version_gt,
  version_le, version_lt) to 25 pre-configuration command scripts
- Replace arithmetic comparisons like (( major == 4 && minor >= 12 ))
  with semantic version comparisons using sort -V
- Remove major/minor version extraction where no longer needed
- Replace custom version check functions in GCP files with standardized
  version_ge function
- Update inactive/commented code to follow the same pattern

This ensures version comparisons work correctly across major version
boundaries (e.g., comparing 5.0 with 4.20).

Files updated:
- AWS: 9 files (c2s, cluster, provision, ipi/conf, upi)
- Azure: 6 files (cluster, provision, ipi/conf)
- GCP: 4 files (provision, upi, ipi/conf)
- IPI: 3 files (capability, manual-creds, network)
- Other: 3 files (edge-nodes, enable-qe-catalogsource)

Related: openshift#73626
@jianlinliu jianlinliu force-pushed the fix-preconfig-version-checks branch from 582f5db to c42cf76 Compare April 3, 2026 06:26
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@jianlinliu: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
pull-ci-openshift-kni-cluster-group-upgrades-operator-main-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.21-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.20-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.19-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.18-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.17-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.16-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.15-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.14-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.13-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.12-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.11-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-openshift-kni-cluster-group-upgrades-operator-release-4.10-integration openshift-kni/cluster-group-upgrades-operator presubmit Registry content changed
pull-ci-operator-framework-community-operators-master-4.6-deploy-operator-on-openshift operator-framework/community-operators presubmit Registry content changed
pull-ci-operator-framework-community-operators-master-4.8-deploy-operator-on-openshift operator-framework/community-operators presubmit Registry content changed
pull-ci-operator-framework-community-operators-master-4.7-deploy-operator-on-openshift operator-framework/community-operators presubmit Registry content changed
pull-ci-stolostron-rbac-query-proxy-release-2.3-test-e2e stolostron/rbac-query-proxy presubmit Registry content changed
pull-ci-openshift-prometheus-main-e2e-agnostic-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-main-ginkgo-tests-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-5.0-e2e-agnostic-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-5.0-ginkgo-tests-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-4.23-e2e-agnostic-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-4.23-ginkgo-tests-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-4.22-e2e-agnostic-cmo openshift/prometheus presubmit Registry content changed
pull-ci-openshift-prometheus-release-4.22-ginkgo-tests-cmo openshift/prometheus presubmit Registry content changed

A total of 28442 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs.

A full list of affected jobs can be found here

Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@jianlinliu: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
pull-ci-openshift-aws-ebs-csi-driver-master-okd-scos-e2e-aws-ovn openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.21-okd-scos-e2e-aws-ovn openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-master-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-5.0-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.23-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.22-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.21-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.20-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.19-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.18-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.17-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.16-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.15-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.14-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.13-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.12-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.11-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.10-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.9-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.8-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.7-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.6-e2e-aws-csi openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-master-e2e-aws-csi-extended openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-5.0-e2e-aws-csi-extended openshift/aws-ebs-csi-driver presubmit Registry content changed
pull-ci-openshift-aws-ebs-csi-driver-release-4.23-e2e-aws-csi-extended openshift/aws-ebs-csi-driver presubmit Registry content changed

A total of 28442 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs.

A full list of affected jobs can be found here

Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 3, 2026

@jianlinliu: 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/rehearse/periodic-ci-openshift-openshift-tests-private-release-4.23-multi-nightly-aws-upi-basecap-none-arm-f7 d82ac14 link unknown /pj-rehearse periodic-ci-openshift-openshift-tests-private-release-4.23-multi-nightly-aws-upi-basecap-none-arm-f7
ci/rehearse/periodic-ci-openshift-openshift-tests-private-release-5.0-multi-nightly-azure-ipi-sharednetwork-public-to-private-arm-f28 d82ac14 link unknown /pj-rehearse periodic-ci-openshift-openshift-tests-private-release-5.0-multi-nightly-azure-ipi-sharednetwork-public-to-private-arm-f28

Full PR test history. Your PR dashboard.

Details

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
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@jianlinliu: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
pull-ci-openshift-library-go-master-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-master-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-5.0-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-5.0-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.23-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.23-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.22-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.22-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.21-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.21-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.20-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.20-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.19-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.19-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.18-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.18-e2e-monitoring openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.17-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.16-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.15-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.14-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.13-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.12-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.11-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.10-e2e-aws-encryption openshift/library-go presubmit Registry content changed
pull-ci-openshift-library-go-release-4.9-e2e-aws-encryption openshift/library-go presubmit Registry content changed

A total of 28442 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs.

A full list of affected jobs can be found here

Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@jianlinliu
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-verification-tests-main-installation-nightly-4.16-azure-ipi-vmgenv2-f28 periodic-ci-openshift-verification-tests-main-installation-nightly-4.16-gcp-upi-xpn-f28 periodic-ci-openshift-openshift-tests-private-release-4.23-multi-nightly-aws-upi-basecap-none-arm-f7 periodic-ci-openshift-openshift-tests-private-release-4.19-amd64-stable-aws-ipi-disc-priv-localzone-fips-f28 periodic-ci-openshift-openshift-tests-private-release-4.17-amd64-stable-aws-c2s-ipi-disc-priv-fips-f28 periodic-ci-openshift-openshift-tests-private-release-4.20-multi-stable-aws-ipi-proxy-sts-arm-f28 periodic-ci-openshift-openshift-tests-private-release-5.0-multi-nightly-azure-ipi-sharednetwork-public-to-private-arm-f28

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jianlinliu: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@kuiwang02
Copy link
Copy Markdown
Contributor

cc: @kuiwang02 @Xia-Zhao-rh @bandrade

@jianlinliu @Xia-Zhao-rh

It seems olmv1-disable-default-clustercatalogs also need this fix?
Thanks

@kuiwang02
Copy link
Copy Markdown
Contributor

cc: @kuiwang02 @Xia-Zhao-rh @bandrade

@jianlinliu @Xia-Zhao-rh

It seems olmv1-disable-default-clustercatalogs also need this fix? Thanks

lvms-catalogsource seems to need it as well?

cc @Xia-Zhao-rh

@jianlinliu
Copy link
Copy Markdown
Contributor Author

It seems olmv1-disable-default-clustercatalogs also need this fix?

Easy fix, I will fix it after the 1st round of rehearse completed.

lvms-catalogsource seems to need it as well?

It is a easy fix, is there anyone help approve the change ?

@kuiwang02
Copy link
Copy Markdown
Contributor

It seems olmv1-disable-default-clustercatalogs also need this fix?

Easy fix, I will fix it after the 1st round of rehearse completed.

lvms-catalogsource seems to need it as well?

It is a easy fix, is there anyone help approve the change ?

after it is fixed, I can add lgtm.

@jianlinliu
Copy link
Copy Markdown
Contributor Author

after it is fixed, I can add lgtm.

Do you have approval permission on lvms-catalogsource ?

@jianlinliu
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-verification-tests-main-installation-nightly-4.16-gcp-upi-xpn-f28

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jianlinliu: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@kuiwang02
Copy link
Copy Markdown
Contributor

after it is fixed, I can add lgtm.

Do you have approval permission on lvms-catalogsource ?

No. I can only add lgtm.

@jianlinliu
Copy link
Copy Markdown
Contributor Author

jianlinliu commented Apr 3, 2026

No. I can only add lgtm.

How about I only update olmv1-disable-default-clustercatalogs in this PR, leave lvms-catalogsource to the owner to update ?

@kuiwang02
Copy link
Copy Markdown
Contributor

No. I can only add lgtm.

How about I only update olmv1-disable-default-clustercatalogs in this PR, leave lvms-catalogsource to the owner to update ?

ok for me.

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.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants