Skip to content

azure: use Standard v3 instance types for OCP 4.21 and older#80483

Open
sdodson wants to merge 1 commit into
openshift:mainfrom
sdodson:azure-v3-for-4.20-and-older
Open

azure: use Standard v3 instance types for OCP 4.21 and older#80483
sdodson wants to merge 1 commit into
openshift:mainfrom
sdodson:azure-v3-for-4.20-and-older

Conversation

@sdodson

@sdodson sdodson commented Jun 12, 2026

Copy link
Copy Markdown
Member

Summary

Follow-up to #75999 (which updated CI defaults to Standard_D8as_v5 / Standard_D4as_v5).

To manage Azure quota, we are moving testing for 4.21 and older back to the prior s_v3 defaults. 4.22+ continues to use the new as_v5 defaults.

  • Control plane (amd64, 4.21 and older): Standard_D8as_v5Standard_D8s_v3 (also applies to xlarge/large/compact SIZE_VARIANTs using the same suffix logic)
  • Compute (amd64, 4.21 and older): Standard_D4as_v5Standard_D4s_v3 (only when COMPUTE_NODE_TYPE is still the default)
  • arm64 and 4.22+: unchanged

Explicit CONTROL_PLANE_INSTANCE_TYPE overrides in job configs are still honored. COMPUTE_NODE_TYPE is only reverted when it equals the new default (Standard_D4as_v5) to avoid clobbering intentional per-job overrides.

A follow-up will experiment with smaller 4-vCPU instances for serial jobs.

Test plan

  • Verify a 4.21 Azure job uses Standard_D8s_v3 / Standard_D4s_v3 in the install-config
  • Verify a 4.22 Azure job still uses Standard_D8as_v5 / Standard_D4as_v5
  • Verify that an explicit CONTROL_PLANE_INSTANCE_TYPE override is not clobbered

🤖 Generated with Claude Code

Summary by CodeRabbit

This PR changes OpenShift CI Azure provisioning for older releases so control plane and compute instances revert to the prior Standard s_v3 SKUs for OCP 4.21 and older (effectively OCP ≤ 4.20 behavior), avoiding Azure quota issues with the newer as_v5 SKUs.

Practical impact on CI/infrastructure:

  • Affects CI jobs that provision Azure IPI clusters for older OpenShift releases (detected from the release image).
  • For amd64 control plane nodes: SIZE_VARIANT-driven defaults now use Standard_D{8,16,32}s_v3 for OCP ≤ 4.21; for OCP > 4.21 they continue to use Standard_D{8,16,32}as_v5. arm64 remains Standard_D{8,16,32}ps_v5.
  • For amd64 compute nodes: when COMPUTE_NODE_TYPE is left at the default Standard_D4as_v5 and OCP ≤ 4.21, the script substitutes Standard_D4s_v3; explicit per-job COMPUTE_NODE_TYPE overrides are not changed.
  • Explicit CONTROL_PLANE_INSTANCE_TYPE values in job configs are honored and take precedence over computed defaults.
  • OCP 4.21+ amd64 behavior and all arm64 defaults are unchanged (still use v5 SKUs).

What changed:

  • Updated ci-operator Azure configure script to choose master_type based on detected OCP version and architecture, and to rewrite the default compute type for older releases when appropriate.
  • Updated the step registry environment documentation to describe the version-aware defaults and the compute-node substitution behavior.

Behavior preserved:

  • Explicit CONTROL_PLANE_INSTANCE_TYPE overrides remain respected.
  • arm64 defaults and newer-release (4.22+) amd64 v5 defaults are unchanged.

Test plan (what to verify):

  • A 4.20 Azure job uses Standard_D8s_v3 for control plane and Standard_D4s_v3 for compute (when compute uses default).
  • A 4.21+ Azure job continues to use Standard_D8as_v5 / Standard_D4as_v5.
  • Jobs that set CONTROL_PLANE_INSTANCE_TYPE explicitly are not modified by the script.

@openshift-ci openshift-ci Bot requested review from dgoodwin and neisw June 12, 2026 19:29
@coderabbitai

coderabbitai Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

Selects control-plane instance types by OCP version and architecture in the Azure IPI configure step (amd64: use *_s_v3 for OCP ≤4.21, *_as_v5 for OCP >4.21; arm64 stays *_ps_v5). Also rewrites Standard_D4as_v5 to Standard_D4s_v3 on amd64 for OCP ≤4.21. Docs updated.

Changes

Azure Instance Type Selection Logic

Layer / File(s) Summary
Version-dependent master and compute instance types
ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh
Master instance type now branches on OCP version for amd64 (using *_s_v3 for OCP ≤4.21, *_as_v5 for OCP >4.21); arm64 keeps *_ps_v5. CONTROL_PLANE_INSTANCE_TYPE still overrides. Adds a compatibility rewrite changing COMPUTE_NODE_TYPE from Standard_D4as_v5 to Standard_D4s_v3 on amd64 when OCP ≤4.21.
Documentation of instance type selection behavior
ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml
Updates CONTROL_PLANE_INSTANCE_TYPE and COMPUTE_NODE_TYPE docs to state explicit OCP-version and architecture defaults and the automatic substitution for older OCP releases.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

🚥 Pre-merge checks | ✅ 14 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Title check ⚠️ Warning The title states 'OCP 4.21 and older' but the PR objectives and implementation target 'OCP 4.20 and older', creating a discrepancy with the actual changeset. Update the title to 'azure: use Standard v3 instance types for OCP 4.20 and older' to accurately reflect the implemented version threshold.
✅ Passed checks (14 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed PR #80483 only changes two Azure IPI shell/YAML files (no Go/Ginkgo test code); no Ginkgo-style It()/Describe()/Context() titles found in the PR diff.
Test Structure And Quality ✅ Passed PR #80483 changes only an Azure bash script and YAML ref; no Ginkgo test code (It/BeforeEach/etc.) is present to review, so requirements are not applicable.
Microshift Test Compatibility ✅ Passed This PR modifies only a shell script and YAML configuration file for Azure IPI setup. No Ginkgo e2e tests are added, so the MicroShift test compatibility check does not apply.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR #80483 only changes Azure IPI config scripts/docs (.sh and .yaml) and does not add/modify any Ginkgo e2e tests, so no SNO multi-node/HA assumptions to flag.
Topology-Aware Scheduling Compatibility ✅ Passed Inspected the Azure IPI script and ref YAML for scheduling constraints (affinity/anti-affinity, topologySpreadConstraints, node-role/master/control-plane/arbiter selectors, PDB/maxUnavailable); non...
Ote Binary Stdout Contract ✅ Passed PR #80483 changes only Azure IPI config shell/YAML; no OTE/openshift-tests binary or Go test-suite process-level stdout code was modified. citeturn2view0
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR only updates Azure IPI configure shell script and YAML docs; no Ginkgo e2e tests (g.It/Describe/etc.) or external connectivity logic found in the touched files.
No-Weak-Crypto ✅ Passed Scanned ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh and ipi-conf-azure-ref.yaml for md5/sha1/DES/RC4/3DES/Blowfish/ECB and crypto/token-secret comparisons; none found.
Container-Privileges ✅ Passed PR #80483 only updates azure IPI instance-type logic in a .sh script and docs YAML; no container/K8s privilege fields (privileged/hostPID/hostNetwork/hostIPC/SYS_ADMIN/allowPrivilegeEscalation) added.
No-Sensitive-Data-In-Logs ✅ Passed Inspected ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh and ipi-conf-azure-ref.yaml: no log lines print passwords/tokens/API keys/PII; only instance type/region/baseDomain mes...
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands and usage tips.

@openshift-ci

openshift-ci Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

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

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

@sdodson sdodson force-pushed the azure-v3-for-4.20-and-older branch from e1a3ad8 to d22f209 Compare June 12, 2026 19:32
@sdodson sdodson changed the title azure: use Standard v3 instance types for OCP 4.20 and older azure: use Standard v3 instance types for OCP 4.21 and older Jun 12, 2026
Follow-up to the default change to Standard_D8as_v5 / Standard_D4as_v5.
Azure quota limits on the new as_v5 SKUs are being hit for older release
branches. Restore the prior s_v3 defaults for OCP 4.21 and older using
the version information already extracted in the script.

Explicit CONTROL_PLANE_INSTANCE_TYPE overrides are still honored.
COMPUTE_NODE_TYPE is only reverted when it equals the new default
(Standard_D4as_v5) to avoid clobbering intentional per-job overrides.

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>

rh-pre-commit.version: 2.4.0
rh-pre-commit.check-secrets: ENABLED
@sdodson sdodson force-pushed the azure-v3-for-4.20-and-older branch from d22f209 to acd22a6 Compare June 12, 2026 19:33
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@sdodson: 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-kubernetes-master-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-master-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-5.1-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-5.1-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-5.0-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-5.0-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.23-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.23-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.22-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.22-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.21-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.21-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.20-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.20-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.19-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.19-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.18-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.18-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.17-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.17-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.16-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.16-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.15-e2e-azure openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.15-e2e-agnostic-ovn-cmd openshift/kubernetes presubmit Registry content changed
pull-ci-openshift-kubernetes-release-4.14-e2e-azure openshift/kubernetes presubmit Registry content changed

A total of 5243 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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml (1)

32-33: ⚡ Quick win

Clarify suffix-based defaults for non-D8 SIZE_VARIANTs.

Line 32-33 says the default depends on SIZE_VARIANT, but the examples only show Standard_D8*. Please document this as a prefix+suffix rule (D8/D16/D32 by size variant, then s_v3/as_v5/ps_v5 by arch/version) to avoid ambiguity for large/xlarge.

Proposed doc wording
-      When "" (default), depends on SIZE_VARIANT and OCP version: Standard_D8as_v5 for 4.21+,
-      Standard_D8s_v3 for 4.20 and older (amd64 only; arm64 always uses Standard_D8ps_v5).
+      When "" (default), the VM size prefix is selected from SIZE_VARIANT (D8/D16/D32),
+      then the suffix is selected by arch/version:
+      - amd64, OCP 4.21+: *_as_v5
+      - amd64, OCP 4.20 and older: *_s_v3
+      - arm64 (all supported versions): *_ps_v5
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml` around
lines 32 - 33, The comment is ambiguous about how defaults are formed from
SIZE_VARIANT; update the wording around SIZE_VARIANT to explain a prefix+suffix
rule: map size variants to prefixes (e.g., small/medium/large → D8, D16, D32
respectively) and then append the suffix chosen by arch/version (use _s_v3 for
older amd64, _as_v5 for newer amd64, and _ps_v5 for arm64) so examples like
Standard_D8s_v3, Standard_D8as_v5, Standard_D8ps_v5 follow the rule; mention the
SIZE_VARIANT symbol explicitly and show the prefix (D8/D16/D32) + suffix
(s_v3/as_v5/ps_v5) composition to cover large/xlarge variants.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml`:
- Around line 32-33: The comment is ambiguous about how defaults are formed from
SIZE_VARIANT; update the wording around SIZE_VARIANT to explain a prefix+suffix
rule: map size variants to prefixes (e.g., small/medium/large → D8, D16, D32
respectively) and then append the suffix chosen by arch/version (use _s_v3 for
older amd64, _as_v5 for newer amd64, and _ps_v5 for arm64) so examples like
Standard_D8s_v3, Standard_D8as_v5, Standard_D8ps_v5 follow the rule; mention the
SIZE_VARIANT symbol explicitly and show the prefix (D8/D16/D32) + suffix
(s_v3/as_v5/ps_v5) composition to cover large/xlarge variants.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Enterprise

Run ID: f87325ab-a017-4ffc-b64f-c5a6c6d831a9

📥 Commits

Reviewing files that changed from the base of the PR and between 1373437 and e1a3ad8.

📒 Files selected for processing (2)
  • ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh
  • ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@sdodson: 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-cloud-credential-operator-master-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-5.1-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-5.0-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.23-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.22-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.21-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.20-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.19-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.18-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.17-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.16-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.15-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.14-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.13-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.12-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.11-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.10-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.9-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.8-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.7-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.6-e2e-azure openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-master-e2e-azure-manual-oidc openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-5.1-e2e-azure-manual-oidc openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-5.0-e2e-azure-manual-oidc openshift/cloud-credential-operator presubmit Registry content changed
pull-ci-openshift-cloud-credential-operator-release-4.23-e2e-azure-manual-oidc openshift/cloud-credential-operator presubmit Registry content changed

A total of 5243 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-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@sdodson: 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-cluster-network-operator-master-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-5.1-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-5.0-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.23-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.22-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.21-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.20-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.19-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.18-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.17-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.16-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.15-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.14-e2e-azure-ovn-manual-oidc openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-master-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-5.1-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-5.0-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.23-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.22-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.21-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.20-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.19-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.18-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.17-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.16-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed
pull-ci-openshift-cluster-network-operator-release-4.15-e2e-azure-ovn openshift/cluster-network-operator presubmit Registry content changed

A total of 5243 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.

@sdodson

sdodson commented Jun 12, 2026

Copy link
Copy Markdown
Member Author

/pj-rehearse
periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-upgrade-fips periodic-ci-openshift-release-main-ci-4.21-e2e-azure-ovn-upgrade periodic-ci-openshift-release-main-ci-4.12-e2e-azure-ovn-upgrade

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh`:
- Around line 88-92: The version cutoff for selecting the v3 master SKU is off
by one; update the comparisons that call version_gt with the string "4.21" to
use "4.20" instead so that only 4.20 and older use the v3 fallback.
Specifically, change the two occurrences that set master_type (using
master_type_prefix and version variable tested via version_gt) so the condition
reads version_gt "${version}" "4.20" (keeping the same negation logic) to keep
4.21 on the v5 SKU path.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Enterprise

Run ID: 2987e622-d884-4c1f-a820-e2ad0b45286e

📥 Commits

Reviewing files that changed from the base of the PR and between e1a3ad8 and acd22a6.

📒 Files selected for processing (2)
  • ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh
  • ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-ref.yaml

Comment thread ci-operator/step-registry/ipi/conf/azure/ipi-conf-azure-commands.sh
@sdodson

sdodson commented Jun 12, 2026

Copy link
Copy Markdown
Member Author

/pj-rehearse
periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-upgrade-fips periodic-ci-openshift-release-main-ci-4.21-e2e-azure-ovn-upgrade periodic-ci-openshift-release-main-ci-4.12-e2e-azure-ovn-upgrade

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@openshift-ci

openshift-ci Bot commented Jun 13, 2026

Copy link
Copy Markdown
Contributor

@sdodson: 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/openshift/cluster-config-operator/release-4.23/e2e-azure acd22a6 link unknown /pj-rehearse pull-ci-openshift-cluster-config-operator-release-4.23-e2e-azure
ci/rehearse/openshift/cluster-config-operator/release-5.1/e2e-azure acd22a6 link unknown /pj-rehearse pull-ci-openshift-cluster-config-operator-release-5.1-e2e-azure
ci/rehearse/openshift/node_exporter/release-5.1/e2e-agnostic-cmo acd22a6 link unknown /pj-rehearse pull-ci-openshift-node_exporter-release-5.1-e2e-agnostic-cmo
ci/rehearse/openshift/node_exporter/release-5.1/ginkgo-tests-cmo acd22a6 link unknown /pj-rehearse pull-ci-openshift-node_exporter-release-5.1-ginkgo-tests-cmo
ci/rehearse/openshift/node_exporter/main/e2e-agnostic-cmo acd22a6 link unknown /pj-rehearse pull-ci-openshift-node_exporter-main-e2e-agnostic-cmo
ci/rehearse/openshift/cluster-config-operator/main/e2e-azure acd22a6 link unknown /pj-rehearse pull-ci-openshift-cluster-config-operator-main-e2e-azure

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant