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

UDN: Add managedTap binding support to Kubevirt CR #3139

Merged
merged 1 commit into from
Dec 1, 2024

Conversation

oshoval
Copy link
Contributor

@oshoval oshoval commented Oct 13, 2024

What this PR does / why we need it:
Kubevirt introduce new binding for seamless migration.
kubevirt/kubevirt#13024
This PR adds support to it via the Kubevirt CR in addition to Passt support
(under primaryUserDefinedNetworkBinding FG).

After enabling the required FG
kubectl patch hco -n kubevirt-hyperconverged kubevirt-hyperconverged --type=json -p='[{"op":"replace","path":"/spec/featureGates/primaryUserDefinedNetworkBinding","value":true}]'

oc get kubevirts -n kubevirt-hyperconverged kubevirt-kubevirt-hyperconverged -oyaml shows:

    network:
      binding:
        l2bridge:
          domainAttachmentType: managedTap
          migration: {}
        passt:
          computeResourceOverhead:
            requests:
              memory: 500Mi
          migration:
            method: link-refresh
          networkAttachmentDefinition: default/primary-udn-kubevirt-binding
          sidecarImage: quay.io/kubevirt/network-passt-binding@sha256:43846ec7a193b45fb3a43aee1b3364df282f5736fd88c9b4ed123b7b50fc6e4d

Reviewer Checklist

Reviewers are supposed to review the PR for every aspect below one by one. To check an item means the PR is either "OK" or "Not Applicable" in terms of that item. All items are supposed to be checked before merging a PR.

  • PR Message
  • Commit Messages
  • How to test
  • Unit Tests
  • Functional Tests
  • User Documentation
  • Developer Documentation
  • Upgrade Scenario
  • Uninstallation Scenario
  • Backward Compatibility
  • Troubleshooting Friendly

Jira Ticket:


Release note:

UDN: Support managedTap binding

@kubevirt-bot
Copy link
Contributor

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

1 similar comment
Copy link

openshift-ci bot commented Oct 13, 2024

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@kubevirt-bot kubevirt-bot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. dco-signoff: yes Indicates the PR's author has DCO signed all their commits. do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. labels Oct 13, 2024
@kubevirt-bot kubevirt-bot added size/S release-note-none Denotes a PR that doesn't merit a release note. and removed do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. labels Oct 13, 2024
@coveralls
Copy link
Collaborator

coveralls commented Oct 13, 2024

Pull Request Test Coverage Report for Build 12063553262

Details

  • 9 of 9 (100.0%) changed or added relevant lines in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.02%) to 71.863%

Totals Coverage Status
Change from base Build 12031091119: 0.02%
Covered Lines: 6020
Relevant Lines: 8377

💛 - Coveralls

@oshoval oshoval marked this pull request as ready for review October 13, 2024 09:15
@kubevirt-bot kubevirt-bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Oct 13, 2024
@kubevirt-bot kubevirt-bot added release-note Denotes a PR that will be considered when it comes time to generate release notes. and removed release-note-none Denotes a PR that doesn't merit a release note. labels Oct 13, 2024
@hco-bot
Copy link
Collaborator

hco-bot commented Oct 13, 2024

hco-e2e-upgrade-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-operator-sdk-azure
hco-e2e-upgrade-prev-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-upgrade-operator-sdk-azure, ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

In response to this:

hco-e2e-upgrade-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-operator-sdk-azure
hco-e2e-upgrade-prev-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

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.

@hco-bot
Copy link
Collaborator

hco-bot commented Oct 13, 2024

hco-e2e-upgrade-prev-operator-sdk-sno-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-sno-azure
hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-aws

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-operator-sdk-aws, ci/prow/hco-e2e-upgrade-prev-operator-sdk-sno-azure

In response to this:

hco-e2e-upgrade-prev-operator-sdk-sno-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-sno-azure
hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-aws

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.

@oshoval oshoval requested a review from nunnatsa October 14, 2024 06:51
@oshoval
Copy link
Contributor Author

oshoval commented Oct 14, 2024

addressed comments, ptal

@qinqon
Copy link
Contributor

qinqon commented Oct 17, 2024

Going to create a new PR doing the opposite, so the userDefinedPrimaryNetworkBinding will point to managedTap, we can test later on passt by installing HCO using the json capababilities so we patch the binding and change from managedTap to passt, no need for new binding.

Comment on lines 50 to 51
primaryUDNNetworkBindingName = "passt"
managedTapUDNNetworkBindingName = "managedTap"
Copy link
Contributor

Choose a reason for hiding this comment

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

I was wrong, we should change the primaryUDNNetworkBindingName to managedTap, if we want to test passt we just use HCO json patching for kubevirt CR and create manually the NAD, at the end is a development workflow.

Also keeping the same name for the binding is important from the beginning so we don't have to modify VM/VMI to upgrade from managedTap to passt

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We can rename vars here but dont need to drop old passt support atm,
the CR can hold both and it will allow smoother QE adaption
same for NAD on CNAO and all, cleaning will be on a follow-up according needs

for now we just need to think about the generic name (unless this also can be done in phases)
lets continue please the design that was started offline

Copy link
Contributor Author

@oshoval oshoval Oct 28, 2024

Choose a reason for hiding this comment

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

switched the primary one to be managedTap
renamed it to have generic name defaultPodNetworkBinding

update PR desc on how it should look (but didnt test yet, will do once we are in sync, and then will update all the other relevant PRs)

@oshoval
Copy link
Contributor Author

oshoval commented Oct 27, 2024

TODO - need first to add DynamicPodInterfaceNaming to the FG in this PR
(added, need still to add UT)
we might need HCO to consume latest kubevirt first (of course for the usage of the feature, but maybe it can be done in any order, as long as adding the FG first doesnt have regression)

@oshoval oshoval changed the title WIP UDN: Add managedTap to Kubevirt CR UDN: Add managedTap binding support to Kubevirt CR Nov 28, 2024
@kubevirt-bot kubevirt-bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Nov 28, 2024
Copy link

sonarcloud bot commented Nov 28, 2024

@oshoval
Copy link
Contributor Author

oshoval commented Nov 28, 2024

Rebased
Addressed rename request
Fixed commit messaged

@EdDev can you review please ?

Copy link
Member

@orelmisan orelmisan left a comment

Choose a reason for hiding this comment

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

Thank you for the PR @oshoval.
Please see the comments inline.

@@ -2059,7 +2059,8 @@ Version: 1.2.3`)
},
},
}
Expect(existingResource.Spec.Configuration.NetworkConfiguration.Binding[primaryUDNNetworkBindingName]).To(Equal(expectedInterfaceBindingPlugin))
Expect(existingResource.Spec.Configuration.NetworkConfiguration.Binding).To(HaveKeyWithValue(primaryUDNNetworkBindingName, primaryUserDefinedNetworkBinding()))
Copy link
Member

Choose a reason for hiding this comment

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

Please consider instantiating an expected value for the l2bridge, similar to what was done for passt, as currently the unit test is not independent.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

imo it is fine like that, the function is simple and doesn't even gets parameters
it allows to change just one place and i don't see it reduce safety in a way that make this change required

Copy link
Member

Choose a reason for hiding this comment

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

Another point is that is forces the reviewer of the test to look at the implementation details of primaryUserDefinedNetworkBinding in order to understand what is actually done.

Copy link
Contributor Author

@oshoval oshoval Nov 28, 2024

Choose a reason for hiding this comment

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

otoh it hides details, and allow him to look just if he need to
each side has pros (for example DRY principal) and cons, here imo it isn't code that prone for errors so it doesnt worth to be extra safe

controllers/operands/kubevirt.go Show resolved Hide resolved
@hco-bot
Copy link
Collaborator

hco-bot commented Nov 28, 2024

hco-e2e-consecutive-operator-sdk-upgrades-aws lane succeeded.
/override ci/prow/hco-e2e-consecutive-operator-sdk-upgrades-azure
hco-e2e-upgrade-prev-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-consecutive-operator-sdk-upgrades-azure, ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

In response to this:

hco-e2e-consecutive-operator-sdk-upgrades-aws lane succeeded.
/override ci/prow/hco-e2e-consecutive-operator-sdk-upgrades-azure
hco-e2e-upgrade-prev-operator-sdk-aws lane succeeded.
/override ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure

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.

@hco-bot
Copy link
Collaborator

hco-bot commented Nov 28, 2024

hco-e2e-upgrade-operator-sdk-sno-azure lane succeeded.
/override ci/prow/hco-e2e-upgrade-operator-sdk-sno-aws

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-upgrade-operator-sdk-sno-aws

In response to this:

hco-e2e-upgrade-operator-sdk-sno-azure lane succeeded.
/override ci/prow/hco-e2e-upgrade-operator-sdk-sno-aws

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.

Copy link
Member

@EdDev EdDev left a comment

Choose a reason for hiding this comment

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

Thanks!

controllers/operands/kubevirt.go Show resolved Hide resolved
@kubevirt-bot kubevirt-bot added the lgtm Indicates that a PR is ready to be merged. label Nov 28, 2024
@oshoval
Copy link
Contributor Author

oshoval commented Nov 28, 2024

Thanks

@maiqueb @qinqon in case you have something to add please

@nunnatsa can you please take a look ?

@oshoval
Copy link
Contributor Author

oshoval commented Nov 28, 2024

/test ci/prow/hco-e2e-operator-sdk-aws
/test ci/prow/hco-e2e-operator-sdk-azure
/test ci/prow/hco-e2e-operator-sdk-gcp
/test ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure
/test ci/prow/okd-ci-index-hco-upgrade-operator-sdk-bundle

per request, but it doesnt seem at all this PR is related

@nunnatsa
Copy link
Collaborator

hco-e2e-kv-smoke-gcp lane passed
/override ci/prow/hco-e2e-kv-smoke-azure

Copy link

openshift-ci bot commented Nov 28, 2024

@oshoval: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

/test ci-index-hco-bundle
/test ci-index-hco-upgrade-operator-sdk-bundle
/test hco-e2e-consecutive-operator-sdk-upgrades-aws
/test hco-e2e-consecutive-operator-sdk-upgrades-azure
/test hco-e2e-kv-smoke-azure
/test hco-e2e-kv-smoke-gcp
/test hco-e2e-operator-sdk-aws
/test hco-e2e-operator-sdk-azure
/test hco-e2e-operator-sdk-gcp
/test hco-e2e-upgrade-operator-sdk-aws
/test hco-e2e-upgrade-operator-sdk-azure
/test hco-e2e-upgrade-prev-operator-sdk-aws
/test hco-e2e-upgrade-prev-operator-sdk-azure
/test images
/test okd-ci-index-hco-bundle
/test okd-ci-index-hco-upgrade-operator-sdk-bundle
/test okd-images

The following commands are available to trigger optional jobs:

/test hco-e2e-operator-sdk-sno-aws
/test hco-e2e-operator-sdk-sno-azure
/test hco-e2e-upgrade-operator-sdk-sno-aws
/test hco-e2e-upgrade-operator-sdk-sno-azure
/test hco-e2e-upgrade-prev-operator-sdk-sno-aws
/test hco-e2e-upgrade-prev-operator-sdk-sno-azure
/test okd-hco-e2e-operator-sdk-aws
/test okd-hco-e2e-operator-sdk-gcp
/test okd-hco-e2e-upgrade-operator-sdk-aws
/test okd-hco-e2e-upgrade-operator-sdk-gcp

Use /test all to run the following jobs that were automatically triggered:

pull-ci-kubevirt-hyperconverged-cluster-operator-main-ci-index-hco-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-ci-index-hco-upgrade-operator-sdk-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-consecutive-operator-sdk-upgrades-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-consecutive-operator-sdk-upgrades-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-kv-smoke-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-kv-smoke-gcp
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-gcp
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-images
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-ci-index-hco-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-ci-index-hco-upgrade-operator-sdk-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-images

In response to this:

/test ci/prow/hco-e2e-operator-sdk-aws
/test ci/prow/hco-e2e-operator-sdk-azure
/test ci/prow/hco-e2e-operator-sdk-gcp
/test ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure
/test ci/prow/okd-ci-index-hco-upgrade-operator-sdk-bundle

per request, but it doesnt seem at all this PR is related

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.

@kubevirt-bot
Copy link
Contributor

@oshoval: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

  • /test build-hco-test-utils-image
  • /test pull-hyperconverged-cluster-operator-e2e-k8s-1.30
  • /test pull-hyperconverged-cluster-operator-e2e-k8s-1.31

The following commands are available to trigger optional jobs:

  • /test pull-hyperconverged-cluster-operator-unit-test-s390x

Use /test all to run the following jobs that were automatically triggered:

  • pull-hyperconverged-cluster-operator-e2e-k8s-1.30
  • pull-hyperconverged-cluster-operator-e2e-k8s-1.31
  • pull-hyperconverged-cluster-operator-unit-test-s390x

In response to this:

/test ci/prow/hco-e2e-operator-sdk-aws
/test ci/prow/hco-e2e-operator-sdk-azure
/test ci/prow/hco-e2e-operator-sdk-gcp
/test ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure
/test ci/prow/okd-ci-index-hco-upgrade-operator-sdk-bundle

per request, but it doesnt seem at all this PR is related

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.

@kubevirt-bot
Copy link
Contributor

@nunnatsa: Overrode contexts on behalf of nunnatsa: ci/prow/hco-e2e-kv-smoke-azure

In response to this:

hco-e2e-kv-smoke-gcp lane passed
/override ci/prow/hco-e2e-kv-smoke-azure

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.

@kubevirt-bot
Copy link
Contributor

@openshift-ci[bot]: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

  • /test build-hco-test-utils-image
  • /test pull-hyperconverged-cluster-operator-e2e-k8s-1.30
  • /test pull-hyperconverged-cluster-operator-e2e-k8s-1.31

The following commands are available to trigger optional jobs:

  • /test pull-hyperconverged-cluster-operator-unit-test-s390x

Use /test all to run the following jobs that were automatically triggered:

  • pull-hyperconverged-cluster-operator-e2e-k8s-1.30
  • pull-hyperconverged-cluster-operator-e2e-k8s-1.31
  • pull-hyperconverged-cluster-operator-unit-test-s390x

In response to this:

@oshoval: The specified target(s) for /test were not found.
The following commands are available to trigger required jobs:

/test ci-index-hco-bundle
/test ci-index-hco-upgrade-operator-sdk-bundle
/test hco-e2e-consecutive-operator-sdk-upgrades-aws
/test hco-e2e-consecutive-operator-sdk-upgrades-azure
/test hco-e2e-kv-smoke-azure
/test hco-e2e-kv-smoke-gcp
/test hco-e2e-operator-sdk-aws
/test hco-e2e-operator-sdk-azure
/test hco-e2e-operator-sdk-gcp
/test hco-e2e-upgrade-operator-sdk-aws
/test hco-e2e-upgrade-operator-sdk-azure
/test hco-e2e-upgrade-prev-operator-sdk-aws
/test hco-e2e-upgrade-prev-operator-sdk-azure
/test images
/test okd-ci-index-hco-bundle
/test okd-ci-index-hco-upgrade-operator-sdk-bundle
/test okd-images

The following commands are available to trigger optional jobs:

/test hco-e2e-operator-sdk-sno-aws
/test hco-e2e-operator-sdk-sno-azure
/test hco-e2e-upgrade-operator-sdk-sno-aws
/test hco-e2e-upgrade-operator-sdk-sno-azure
/test hco-e2e-upgrade-prev-operator-sdk-sno-aws
/test hco-e2e-upgrade-prev-operator-sdk-sno-azure
/test okd-hco-e2e-operator-sdk-aws
/test okd-hco-e2e-operator-sdk-gcp
/test okd-hco-e2e-upgrade-operator-sdk-aws
/test okd-hco-e2e-upgrade-operator-sdk-gcp

Use /test all to run the following jobs that were automatically triggered:

pull-ci-kubevirt-hyperconverged-cluster-operator-main-ci-index-hco-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-ci-index-hco-upgrade-operator-sdk-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-consecutive-operator-sdk-upgrades-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-consecutive-operator-sdk-upgrades-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-kv-smoke-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-kv-smoke-gcp
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-gcp
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-sno-aws
pull-ci-kubevirt-hyperconverged-cluster-operator-main-hco-e2e-upgrade-prev-operator-sdk-sno-azure
pull-ci-kubevirt-hyperconverged-cluster-operator-main-images
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-ci-index-hco-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-ci-index-hco-upgrade-operator-sdk-bundle
pull-ci-kubevirt-hyperconverged-cluster-operator-main-okd-images

In response to this:

/test ci/prow/hco-e2e-operator-sdk-aws
/test ci/prow/hco-e2e-operator-sdk-azure
/test ci/prow/hco-e2e-operator-sdk-gcp
/test ci/prow/hco-e2e-upgrade-prev-operator-sdk-azure
/test ci/prow/okd-ci-index-hco-upgrade-operator-sdk-bundle

per request, but it doesnt seem at all this PR is related

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.

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.

@nunnatsa
Copy link
Collaborator

/retest

@hco-bot
Copy link
Collaborator

hco-bot commented Nov 28, 2024

hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-azure
hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-aws

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-operator-sdk-aws, ci/prow/hco-e2e-operator-sdk-azure

In response to this:

hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-azure
hco-e2e-operator-sdk-gcp lane succeeded.
/override ci/prow/hco-e2e-operator-sdk-aws

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.

Copy link

openshift-ci bot commented Nov 28, 2024

@oshoval: 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/hco-e2e-upgrade-operator-sdk-sno-aws 89d5c96 link false /test hco-e2e-upgrade-operator-sdk-sno-aws
ci/prow/hco-e2e-kv-smoke-azure 89d5c96 link true /test hco-e2e-kv-smoke-azure
ci/prow/hco-e2e-consecutive-operator-sdk-upgrades-azure 89d5c96 link true /test hco-e2e-consecutive-operator-sdk-upgrades-azure
ci/prow/hco-e2e-operator-sdk-azure 89d5c96 link true /test hco-e2e-operator-sdk-azure

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.

@hco-bot
Copy link
Collaborator

hco-bot commented Nov 28, 2024

hco-e2e-operator-sdk-aws, hco-e2e-operator-sdk-gcp lanes succeeded.
/override ci/prow/hco-e2e-operator-sdk-azure

@kubevirt-bot
Copy link
Contributor

@hco-bot: Overrode contexts on behalf of hco-bot: ci/prow/hco-e2e-operator-sdk-azure

In response to this:

hco-e2e-operator-sdk-aws, hco-e2e-operator-sdk-gcp lanes succeeded.
/override ci/prow/hco-e2e-operator-sdk-azure

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.

@nunnatsa
Copy link
Collaborator

nunnatsa commented Dec 1, 2024

/approve

@kubevirt-bot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: nunnatsa

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

@kubevirt-bot kubevirt-bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Dec 1, 2024
@kubevirt-bot kubevirt-bot merged commit 0bd61aa into kubevirt:main Dec 1, 2024
32 checks passed
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. dco-signoff: yes Indicates the PR's author has DCO signed all their commits. lgtm Indicates that a PR is ready to be merged. release-note Denotes a PR that will be considered when it comes time to generate release notes. size/S
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants