Skip to content

OCPBUGS-43756: update eventuallyDaemonSetRollsOut to only watch ready…#4973

Merged
openshift-merge-bot[bot] merged 2 commits intoopenshift:mainfrom
Patryk-Stefanski:OCPBUGS-43756
Oct 25, 2024
Merged

OCPBUGS-43756: update eventuallyDaemonSetRollsOut to only watch ready…#4973
openshift-merge-bot[bot] merged 2 commits intoopenshift:mainfrom
Patryk-Stefanski:OCPBUGS-43756

Conversation

@Patryk-Stefanski
Copy link
Copy Markdown
Contributor

… pods

What this PR does / why we need it:

Which issue(s) this PR fixes (optional, use fixes #<issue_number>(, fixes #<issue_number>, ...) format, where issue_number might be a GitHub issue, or a Jira story:
Fixes #

Checklist

  • Subject and description added to both, commit and PR.
  • Relevant issues have been referenced.
  • This change includes docs.
  • This change includes unit tests.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Oct 23, 2024
@openshift-ci-robot
Copy link
Copy Markdown

@Patryk-Stefanski: This pull request references Jira Issue OCPBUGS-43756, which is invalid:

  • expected the bug to target the "4.18.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:

… pods

What this PR does / why we need it:

Which issue(s) this PR fixes (optional, use fixes #<issue_number>(, fixes #<issue_number>, ...) format, where issue_number might be a GitHub issue, or a Jira story:
Fixes #

Checklist

  • Subject and description added to both, commit and PR.
  • Relevant issues have been referenced.
  • This change includes docs.
  • This change includes unit tests.

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 openshift-ci-robot added the jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. label Oct 23, 2024
@Patryk-Stefanski
Copy link
Copy Markdown
Contributor Author

/test e2e-aks

@openshift-ci openshift-ci Bot added do-not-merge/needs-area do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. labels Oct 23, 2024
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented Oct 23, 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

@openshift-ci openshift-ci Bot added area/testing Indicates the PR includes changes for e2e testing and removed do-not-merge/needs-area labels Oct 23, 2024
@Patryk-Stefanski Patryk-Stefanski marked this pull request as ready for review October 23, 2024 20:55
@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Oct 23, 2024
@openshift-ci openshift-ci Bot requested review from enxebre and sjenning October 23, 2024 20:56
@Patryk-Stefanski
Copy link
Copy Markdown
Contributor Author

/jira refresh

@openshift-ci-robot openshift-ci-robot added the jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. label Oct 23, 2024
@openshift-ci-robot
Copy link
Copy Markdown

@Patryk-Stefanski: This pull request references Jira Issue OCPBUGS-43756, 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 (4.18.0) matches configured target version for branch (4.18.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 openshift-ci-robot removed the jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. label Oct 23, 2024
@sjenning
Copy link
Copy Markdown
Contributor

/approve
/lgtm

@openshift-ci openshift-ci Bot added lgtm Indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Oct 23, 2024
@openshift-ci-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD 2dccab2 and 2 for PR HEAD 137edf8 in total

@Patryk-Stefanski
Copy link
Copy Markdown
Contributor Author

/hold

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Oct 24, 2024
@enxebre
Copy link
Copy Markdown
Member

enxebre commented Oct 24, 2024

As discussed offline It makes no sense for rollout tests to only wait for nodes to be ready because you are not actually waiting for the rollout to finish. As soon as the first Node rollsout and go ready the check will return true.
Instead this should gate on something like

			e2eutil.ConditionPredicate[*hyperv1.NodePool](e2eutil.Condition{
				Type:   hyperv1.NodePoolUpdatingVersionConditionType,
				Status: metav1.true,
			}),
And then
			e2eutil.ConditionPredicate[*hyperv1.NodePool](e2eutil.Condition{
				Type:   hyperv1.NodePoolUpdatingVersionConditionType,
				Status: metav1.ConditionFalse,
			}),

@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Oct 24, 2024
@netlify
Copy link
Copy Markdown

netlify Bot commented Oct 24, 2024

Deploy Preview for hypershift-docs ready!

Name Link
🔨 Latest commit 82e69a0
🔍 Latest deploy log https://app.netlify.com/sites/hypershift-docs/deploys/671a255339f3420008f8f3c4
😎 Deploy Preview https://deploy-preview-4973--hypershift-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@Patryk-Stefanski
Copy link
Copy Markdown
Contributor Author

/hold cancel

@openshift-ci openshift-ci Bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Oct 24, 2024
Comment thread test/e2e/util/util.go Outdated
@enxebre
Copy link
Copy Markdown
Member

enxebre commented Oct 24, 2024

Thanks!
/lgtm
/approve

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

openshift-ci Bot commented Oct 24, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: enxebre, Patryk-Stefanski, sjenning

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-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD d29e8a1 and 2 for PR HEAD fb04fda in total

@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Oct 24, 2024
@Patryk-Stefanski Patryk-Stefanski force-pushed the OCPBUGS-43756 branch 2 times, most recently from 0205147 to f0d1bfd Compare October 24, 2024 14:28
@enxebre
Copy link
Copy Markdown
Member

enxebre commented Oct 24, 2024

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Oct 24, 2024
@openshift-ci-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD abd7882 and 2 for PR HEAD f0d1bfd in total

1 similar comment
@openshift-ci-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD abd7882 and 2 for PR HEAD f0d1bfd in total

@openshift-ci-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD 9a219d8 and 2 for PR HEAD f0d1bfd in total

1 similar comment
@openshift-ci-robot
Copy link
Copy Markdown

/retest-required

Remaining retests: 0 against base HEAD 9a219d8 and 2 for PR HEAD f0d1bfd in total

add WaitForNodePoolConfigUpdateComplete function to machineconfig update tests that ensures nodeppolConfigUpdate has finished before proceeding with tests.
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Oct 24, 2024
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented Oct 24, 2024

@Patryk-Stefanski: all tests passed!

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.

@enxebre
Copy link
Copy Markdown
Member

enxebre commented Oct 25, 2024

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Oct 25, 2024
@openshift-merge-bot openshift-merge-bot Bot merged commit c92c40d into openshift:main Oct 25, 2024
@openshift-ci-robot
Copy link
Copy Markdown

@Patryk-Stefanski: Jira Issue OCPBUGS-43756: All pull requests linked via external trackers have merged:

Jira Issue OCPBUGS-43756 has been moved to the MODIFIED state.

Details

In response to this:

… pods

What this PR does / why we need it:

Which issue(s) this PR fixes (optional, use fixes #<issue_number>(, fixes #<issue_number>, ...) format, where issue_number might be a GitHub issue, or a Jira story:
Fixes #

Checklist

  • Subject and description added to both, commit and PR.
  • Relevant issues have been referenced.
  • This change includes docs.
  • This change includes unit tests.

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.

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. area/testing Indicates the PR includes changes for e2e testing 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.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants