Skip to content

OCPBUGS-105426: OCPBUGS-105430: OCPBUGS-105431: OCPBUGS-105315: Fix duplicate template error and e2es - #6387

Open
djoshy wants to merge 5 commits into
openshift:mainfrom
djoshy:vsphere-dupl-fix
Open

OCPBUGS-105426: OCPBUGS-105430: OCPBUGS-105431: OCPBUGS-105315: Fix duplicate template error and e2es#6387
djoshy wants to merge 5 commits into
openshift:mainfrom
djoshy:vsphere-dupl-fix

Conversation

@djoshy

@djoshy djoshy commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

What I did

  • Scope vSphere template lookup to the workspace folder to avoid "resolves to multiple vms" when duplicate names exist across folders (OCPBUGS-105426)
  • Use a per-run-unique name for the vSphere backdated template used in tests, to avoid collisions with leftovers from other/previous runs sharing this CI vSphere vCenter (also fixes a downstream "multiple templates found" clone-time failure in the machine-api-provider-vsphere actuator)
  • Match failure domains on datastore/resourcePool too, not just server/datacenter (OCPBUGS-105430)
  • Re-upload the backdated vSphere template before its second use in test 81403, since MCO now updates templates in-place (OCPBUGS-105431)
  • Validate the stub secret before mutating vsphere templates(OCPBUGS-105315)

How to verify
The newly added vSphere optional pre-submits should now begin to pass. Unfortunately, due to lack of lease space, these are timing out currently. I've manually verified the test cases against a vsphere cluster with this fix in #6387 (comment).

Summary by CodeRabbit

  • Bug Fixes
    • Improved vSphere VM template selection by prioritizing templates in the appropriate workspace folder while preserving support for global and absolute paths.
    • Improved failure-domain matching using datastore and resource-pool paths, reducing incorrect infrastructure assignments.
    • Prevented collisions between vSphere boot-image uploads from separate or interrupted test runs.
    • Added validation before boot-image changes to improve reliability and support safer rollback.

@openshift-ci-robot openshift-ci-robot added jira/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Aug 7, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@djoshy: This pull request references Jira Issue OCPBUGS-105426, which is invalid:

  • expected the bug to target the "5.0.0" version, but no target version was set

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

What I did

  • Scope vSphere template lookup to the workspace folder to avoid "resolves to multiple vms" when duplicate names exist across folders (OCPBUGS-105426)
  • Match failure domains on datastore/resourcePool too, not just server/datacenter (OCPBUGS-105430)
  • Re-upload the backdated vSphere template before its second use in test 81403, since MCO now updates templates in-place (OCPBUGS-105431)

How to verify
The multiple fd error in https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_machine-config-operator/6317/pull-ci-openshift-machine-config-operator-main-e2e-vsphere-mco-bootimages/2085654668066689024 should no longer take place. Existing vsphere tests should be unaffected.

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-merge-bot

Copy link
Copy Markdown
Contributor

Pipeline controller notification
This repo is configured to use the pipeline controller. Second-stage tests will be triggered either automatically or after lgtm label is added, depending on the repository configuration. The pipeline controller will automatically detect which contexts are required and will utilize /test Prow commands to trigger the second stage.

For optional jobs, comment /test ? to see a list of all defined jobs. To trigger manually all jobs from second stage use /pipeline required command.

This repository is configured in: LGTM mode

@coderabbitai

coderabbitai Bot commented Aug 7, 2026

Copy link
Copy Markdown

Walkthrough

The change scopes vSphere template lookup to workspace folders, validates ignition stubs before vSphere mutations, matches failure domains using datastore and resource-pool paths, and uses unique templates during backdated boot-image tests.

Changes

vSphere workspace and boot-image handling

Layer / File(s) Summary
Workspace lookup and mutation validation
pkg/controller/bootimage/vsphere_helpers.go, pkg/controller/bootimage/vsphere_helpers_test.go
Relative names use the workspace folder. Lookup falls back to global search when needed. Ignition stubs are validated before template creation, rollback, and replacement.
Workspace failure-domain matching
test/extended-priv/machineset.go
Failure-domain matching includes server, datacenter, datastore, and normalized resource-pool paths.
Backdated boot-image test isolation
test/extended-priv/mco_bootimages.go
The test uses a process-unique vSphere template name, deletes the previous template, and regenerates it before the second update check.

Estimated code review effort: 2 (Simple) | ~10 minutes

Suggested reviewers: harshwardhanpatil07, isabella-janssen


Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 error)

Check name Status Explanation Resolution
No-Sensitive-Data-In-Logs ❌ Error The new failure-domain error prints wsServer, wsDatastore, and wsResourcePool; these vSphere infrastructure identifiers can appear in Ginkgo or CI logs. Redact workspace values from the error and report only a non-sensitive failure-domain mismatch; keep detailed values out of test output.
✅ 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-added Ginkgo and subtest titles are static literals; the UUID is used only in backdated image body data, not in It, Describe, By, or t.Run titles.
Test Structure And Quality ✅ Passed The changed Ginkgo path follows suite cleanup patterns: MachineSet deletion is deferred and vSphere uploads register g.DeferCleanup; added assertions have messages, and existing Eventually/Consiste...
Microshift Test Compatibility ✅ Passed The PR adds no new Ginkgo declarations. It only modifies existing test 81403 and adds standard Go unit tests, so this MicroShift check is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed The PR adds no new Ginkgo e2e declarations. It only modifies existing test 81403 and adds a plain Go unit test; added code contains no SNO multi-node or HA assumptions.
Topology-Aware Scheduling Compatibility ✅ Passed The PR changes vSphere lookup, ignition validation, failure-domain matching, and test image naming; the diff adds no pod scheduling constraints, node selectors, affinities, spreads, replicas, or PDBs.
Ote Binary Stdout Contract ✅ Passed The PR adds no process-level stdout writes; its UUID initializer is silent, and the added logger call is inside the Ginkgo It body and targets GinkgoWriter.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed The PR adds no new Ginkgo e2e declarations; the added TestTemplateSearchPath is a local Go unit test with no IPv4 assumptions or public-network access.
No-Weak-Crypto ✅ Passed PR-added code contains no MD5, SHA1, DES, RC4, Blowfish, ECB, custom crypto, or secret comparisons; UUID uses github.com/google/uuid with crypto/rand.
Container-Privileges ✅ Passed The five PR commits change only Go source and test files; no added lines introduce privileged, hostPID, hostNetwork, hostIPC, SYS_ADMIN, or allowPrivilegeEscalation settings.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title identifies the tracked issues and clearly summarizes the main changes: fixing duplicate template errors and related end-to-end tests.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 7, 2026
@djoshy

djoshy commented Aug 7, 2026

Copy link
Copy Markdown
Contributor Author

/jira refresh

@openshift-ci-robot openshift-ci-robot added jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. and removed jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Aug 7, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@djoshy: This pull request references Jira Issue OCPBUGS-105426, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state New, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/jira refresh

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

@djoshy: This pull request references Jira Issue OCPBUGS-105426, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

What I did

  • Scope vSphere template lookup to the workspace folder to avoid "resolves to multiple vms" when duplicate names exist across folders (OCPBUGS-105426)
  • Match failure domains on datastore/resourcePool too, not just server/datacenter (OCPBUGS-105430)
  • Re-upload the backdated vSphere template before its second use in test 81403, since MCO now updates templates in-place (OCPBUGS-105431)

How to verify
The multiple fd error in https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_machine-config-operator/6317/pull-ci-openshift-machine-config-operator-main-e2e-vsphere-mco-bootimages/2085654668066689024 should no longer take place. Existing vsphere tests should be unaffected.

Summary by CodeRabbit

  • Bug Fixes
  • Improved vSphere VM template selection by prioritizing templates in the appropriate workspace folder while preserving support for global and absolute paths.
  • Improved failure-domain matching to account for datastore and resource-pool paths, reducing incorrect infrastructure assignments.
  • Strengthened boot-image update validation to reliably detect outdated templates and confirm successful updates.

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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 4

🧹 Nitpick comments (1)
pkg/controller/bootimage/vsphere_helpers_test.go (1)

115-158: 🗄️ Data Integrity & Integration | 🔵 Trivial | 🏗️ Heavy lift

Add a regression test for the full resolver path.

These tests validate string joining only. They can pass while resolveExistingTemplateVM still uses a bare computed-name lookup or accepts an outside match. Add a test with the same template name in the workspace and a sibling folder. Assert that the workspace VM is selected and the sibling VM remains untouched.

🤖 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 `@pkg/controller/bootimage/vsphere_helpers_test.go` around lines 115 - 158,
Extend TestTemplateSearchPath with a regression test covering the full
resolveExistingTemplateVM flow, creating same-named templates in the workspace
and sibling folders. Assert that resolution selects the workspace VM and leaves
the sibling VM untouched, rather than validating only templateSearchPath string
joining.
🤖 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 `@pkg/controller/bootimage/vsphere_helpers.go`:
- Around line 338-344: Restrict managed VM lookups in computedName, rollback,
and findAllRequiredResources to providerSpec.Workspace.Folder; only use global
fallback to classify an external same-name VM. Before destroyVMIfPresent removes
mco-tmp-* or mco-old-* VMs, verify the VM belongs to the workspace folder.
Validate the rollback VM’s workspace ownership before renaming it to
computedName.
- Around line 340-344: Update the template lookup flow around
finder.VirtualMachine and isInFolder to fail closed when folderErr is non-nil.
Ensure a failed workspace-folder lookup cannot leave workspaceFolder nil and
allow arbitrary global VM matches to be classified as the MCO template; only
accept matches when the folder lookup succeeded and the VM is confirmed within
the configured folder.
- Around line 234-242: Update templateSearchPath to reject relative template
names containing parent-directory segments before calling path.Join, preventing
names such as ../customer-template from escaping the workspace; preserve
unscoped handling for empty folders and absolute inventory paths, and add a
regression test covering the rejected traversal case.

In `@test/extended-priv/machineset.go`:
- Line 770: Update the error return in the MachineSet failure-domain lookup to
avoid including raw vSphere inventory values such as wsServer, wsDataCenter,
wsDatastore, and wsResourcePool. Return a generic message identifying the lookup
failure and MachineSet via ms.GetName(), and move any detailed values to an
approved controlled diagnostic path if needed.

---

Nitpick comments:
In `@pkg/controller/bootimage/vsphere_helpers_test.go`:
- Around line 115-158: Extend TestTemplateSearchPath with a regression test
covering the full resolveExistingTemplateVM flow, creating same-named templates
in the workspace and sibling folders. Assert that resolution selects the
workspace VM and leaves the sibling VM untouched, rather than validating only
templateSearchPath string joining.
🪄 Autofix

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: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: cdfd66b7-b829-4807-b640-36e5caae53b7

📥 Commits

Reviewing files that changed from the base of the PR and between f6aefa6 and 6e97e28.

📒 Files selected for processing (4)
  • pkg/controller/bootimage/vsphere_helpers.go
  • pkg/controller/bootimage/vsphere_helpers_test.go
  • test/extended-priv/machineset.go
  • test/extended-priv/mco_bootimages.go

Comment thread pkg/controller/bootimage/vsphere_helpers.go
Comment thread pkg/controller/bootimage/vsphere_helpers.go
Comment thread pkg/controller/bootimage/vsphere_helpers.go
Comment thread test/extended-priv/machineset.go
@djoshy

djoshy commented Aug 7, 2026

Copy link
Copy Markdown
Contributor Author

/test e2e-vsphere-mco-bootimages e2e-vsphere-multi-vcenter-mco-bootimages

1 similar comment
@djoshy

djoshy commented Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

/test e2e-vsphere-mco-bootimages e2e-vsphere-multi-vcenter-mco-bootimages

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

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 `@test/extended-priv/mco_bootimages.go`:
- Line 28: Update the backdatedImageRunID initialization and its other
occurrences to retain at least 64 bits of entropy, either by extending the
UUID-derived substring or using the full UUID, while preserving the existing
identifier format and usage.
🪄 Autofix

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: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: fe17236d-e5dd-44f5-9041-606132e96515

📥 Commits

Reviewing files that changed from the base of the PR and between ec08842 and 14ce755.

📒 Files selected for processing (1)
  • test/extended-priv/mco_bootimages.go

Comment thread test/extended-priv/mco_bootimages.go
@djoshy

djoshy commented Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

/test e2e-vsphere-mco-bootimages e2e-vsphere-multi-vcenter-mco-bootimages

@openshift-ci

openshift-ci Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

@djoshy: 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/perfscale-control-plane-6nodes 14ce755 link false /test perfscale-control-plane-6nodes
ci/prow/e2e-vsphere-multi-vcenter-mco-bootimages 14ce755 link false /test e2e-vsphere-multi-vcenter-mco-bootimages
ci/prow/bootstrap-unit 14ce755 link true /test bootstrap-unit
ci/prow/e2e-vsphere-mco-bootimages 14ce755 link false /test e2e-vsphere-mco-bootimages
ci/prow/e2e-vsphere-zones-mco-bootimages 14ce755 link false /test e2e-vsphere-zones-mco-bootimages

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.

@djoshy

djoshy commented Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

Last set of runs look good, I'm going to roll in the secret degrade fix from #6382 so it is easier to backport.

@djoshy

djoshy commented Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

I suspect the vsphere presubmits will fail due to lack of leases, so I asked claude to run the full set of previously-failing vSphere bootimage tests(from all 4 bugs) against a live cluster to validate this PR:

Test Result Duration
[PolarionID:81403] In BootImages Machineset should update by default ✅ Pass 278.8s
[PolarionID:74239] ManagedBootImages. Restore Partial MachineSet images ✅ Pass 476.1s
[PolarionID:74240] ManagedBootImages. Restore All MachineSet images ✅ Pass 460.5s
[PolarionID:74751] ManagedBootImages. Fix errors ✅ Pass 143.9s
[PolarionID:80434] Bootimage wrong version error upgrading stub ignition to spec 3 ✅ Pass 137.2s
[PolarionID:80435] Bootimage no json data error upgrading stub ignition to spec 3 ✅ Pass 151.4s
[PolarionID:80436] Bootimage secret doesn't exist error upgrading stub ignition to spec 3 ✅ Pass 141.0s
[PolarionID:80437] Bootimage upgrade stub ignition to spec 3 ✅ Pass 431.6s

/verified by manual test executions

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Aug 11, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@djoshy: This PR has been marked as verified by manual test executions.

Details

In response to this:

I suspect the vsphere presubmits will fail due to lack of leases, so I asked claude to run the full set of previously-failing vSphere bootimage tests(from all 4 bugs) against a live cluster to validate this PR:

Test Result Duration
[PolarionID:81403] In BootImages Machineset should update by default ✅ Pass 278.8s
[PolarionID:74239] ManagedBootImages. Restore Partial MachineSet images ✅ Pass 476.1s
[PolarionID:74240] ManagedBootImages. Restore All MachineSet images ✅ Pass 460.5s
[PolarionID:74751] ManagedBootImages. Fix errors ✅ Pass 143.9s
[PolarionID:80434] Bootimage wrong version error upgrading stub ignition to spec 3 ✅ Pass 137.2s
[PolarionID:80435] Bootimage no json data error upgrading stub ignition to spec 3 ✅ Pass 151.4s
[PolarionID:80436] Bootimage secret doesn't exist error upgrading stub ignition to spec 3 ✅ Pass 141.0s
[PolarionID:80437] Bootimage upgrade stub ignition to spec 3 ✅ Pass 431.6s

/verified by manual test executions

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

@djoshy: This pull request references Jira Issue OCPBUGS-105426, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

What I did

  • Scope vSphere template lookup to the workspace folder to avoid "resolves to multiple vms" when duplicate names exist across folders (OCPBUGS-105426)
  • Use a per-run-unique name for the vSphere backdated template used in tests, to avoid collisions with leftovers from other/previous runs sharing this CI vSphere vCenter (also fixes a downstream "multiple templates found" clone-time failure in the machine-api-provider-vsphere actuator)
  • Match failure domains on datastore/resourcePool too, not just server/datacenter (OCPBUGS-105430)
  • Re-upload the backdated vSphere template before its second use in test 81403, since MCO now updates templates in-place (OCPBUGS-105431)
  • Validate the stub secret before mutating vsphere templates(OCPBUGS-105315)

How to verify
The newly added vSphere optional pre-submits should now begin to pass. Unfortunately, due to lack of lease space, these are timing out currently. I've manually verified the test cases against a vsphere cluster with this fix in #6387 (comment).

Summary by CodeRabbit

  • Bug Fixes
  • Improved vSphere VM template selection by prioritizing templates in the appropriate workspace folder while preserving support for global and absolute paths.
  • Improved failure-domain matching using datastore and resource-pool paths, reducing incorrect infrastructure assignments.
  • Prevented collisions between vSphere boot-image uploads from separate or interrupted test runs.
  • Added validation before boot-image changes to improve reliability and support safer rollback.

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.

@djoshy djoshy changed the title OCPBUGS-105426: OCPBUGS-105430: OCPBUGS-105431: Fix duplicate template error and e2es OCPBUGS-105426: OCPBUGS-105430: OCPBUGS-105431: OCPBUGS-105315: Fix duplicate template error and e2es Aug 11, 2026
@djoshy

djoshy commented Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

/test e2e-vsphere-mco-bootimages e2e-vsphere-multi-vcenter-mco-bootimages

@isabella-janssen isabella-janssen left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Aug 11, 2026
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

Scheduling tests matching the pipeline_run_if_changed or not excluded by pipeline_skip_if_only_changed parameters:
/test e2e-aws-ovn
/test e2e-aws-ovn-upgrade
/test e2e-gcp-op-ocl-part1
/test e2e-gcp-op-ocl-part2
/test e2e-gcp-op-part1
/test e2e-gcp-op-part2
/test e2e-gcp-op-single-node
/test e2e-hypershift
/test tls-pqc-readiness

@openshift-ci

openshift-ci Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: djoshy, isabella-janssen

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:
  • OWNERS [djoshy,isabella-janssen]

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

@djoshy

djoshy commented Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

This e2e-vsphere-mco-bootimages run managed to get a lease and passed 🥳

Unfortunately, the others variants didn't get a lease and timed out. Rerunning them below, however I don't think we should block on them for merging this fix.

/test e2e-vsphere-multi-vcenter-mco-bootimages e2e-vsphere-zones-mco-bootimages

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/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. 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. verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants