Skip to content

[release-4.19] OCPBUGS-76962: Extends the time for the extractor liveness probe#1230

Merged
openshift-merge-bot[bot] merged 1 commit intoopenshift:release-4.19from
jmesnil:OCPBUGS-66996_4.19
Mar 31, 2026
Merged

[release-4.19] OCPBUGS-76962: Extends the time for the extractor liveness probe#1230
openshift-merge-bot[bot] merged 1 commit intoopenshift:release-4.19from
jmesnil:OCPBUGS-66996_4.19

Conversation

@jmesnil
Copy link
Copy Markdown
Contributor

@jmesnil jmesnil commented Feb 16, 2026

Categories

  • Backporting

Before:

  • crictl info was timing out after 2 seconds
  • the command was executed every 10 seconds
  • 2 failures were making the container unhealthy
  • => 10 seconds of unavailability was making the pod crash

This was too constraining as there are occasions where crictl can be unavailable for a longer period of time (eg when the TLS CA bundle requires to restart some pods)

Now:

  • crictl info is timing out after 10 seconds
  • the command is executed every 30 seconds
  • 3 failures (default) are making the container unhealthy
  • => 1m30s of unaivailability is making the pod crash

Note: The liveness probe is used instead of the readiness probe as the container MUST crash if the crictl connection has been changed (eg following a TLS CA bundle update) and at this point, the pod must be recreated to be able to connect to cri-o socket with an updated TLS certificate.

This fixes https://issues.redhat.com/browse/OCPBUGS-76962
Upstream issue is https://issues.redhat.com/browse/OCPBUGS-66996

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

@jmesnil: This pull request references Jira Issue OCPBUGS-66996, which is invalid:

  • expected the bug to target either version "4.19." or "openshift-4.19.", but it targets "4.22.0" instead
  • expected the bug to be in one of the following states: NEW, ASSIGNED, POST, but it is ON_QA instead
  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected Jira Issue OCPBUGS-66996 to depend on a bug targeting a version in 4.20.0, 4.20.z and in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but no dependents were found

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:

Categories

  • Backporting

Before:

  • crictl info was timing out after 2 seconds
  • the command was executed every 10 seconds
  • 2 failures were making the container unhealthy
  • => 10 seconds of unavailability was making the pod crash

This was too constraining as there are occasions where crictl can be unavailable for a longer period of time (eg when the TLS CA bundle requires to restart some pods)

Now:

  • crictl info is timing out after 10 seconds
  • the command is executed every 30 seconds
  • 3 failures (default) are making the container unhealthy
  • => 1m30s of unaivailability is making the pod crash

Note: The liveness probe is used instead of the readiness probe as the container MUST crash if the crictl connection has been changed (eg following a TLS CA bundle update) and at this point, the pod must be recreated to be able to connect to cri-o socket with an updated TLS certificate.

This fixes https://issues.redhat.com/browse/OCPBUGS-66996

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 Feb 16, 2026
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Feb 16, 2026

Important

Review skipped

Auto reviews are limited based on label configuration.

🚫 Review skipped — only excluded labels are configured. (1)
  • do-not-merge/work-in-progress

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 9810effd-9e45-4df7-aae3-4afe6176f56f

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

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

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@jmesnil
Copy link
Copy Markdown
Contributor Author

jmesnil commented Feb 16, 2026

Upstream is #1198

@openshift-ci openshift-ci Bot requested review from ncaak and opokornyy February 16, 2026 12:53
@jmesnil jmesnil changed the title OCPBUGS-66996: Extends the time for the extractor liveness probe [release-4.19] OCPBUGS-66996: Extends the time for the extractor liveness probe Feb 16, 2026
Before:
  * `crictl info` was timing out after 2 seconds
  * the command was executed every 10 seconds
  * 2 failures were making the container unhealthy
  * => 10 seconds of unavailability was making the pod crash

This was too constraining as there are occasions where `crictl` can be unavailable
for a longer period of time (eg when the TLS CA bundle requires to restart some pods)

Now:
  * `crictl info` is timing out after 10 seconds
  * the command is executed every 30 seconds
  * 3 failures (default) are making the container unhealthy
  * => 1m30s of unaivailability is making the pod crash

Note: The liveness probe is used instead of the readiness probe
as the container MUST crash if the crictl connection has been changed (eg
following a TLS CA bundle update) and at this point, the pod must be recreated
to be able to connect to cri-o socket with an updated TLS certificate.

This fixes https://issues.redhat.com/browse/OCPBUGS-76962
Upstream issue is https://issues.redhat.com/browse/OCPBUGS-66996

Signed-off-by: Jeff Mesnil <jmesnil@redhat.com>
@jmesnil
Copy link
Copy Markdown
Contributor Author

jmesnil commented Feb 17, 2026

/jira refresh

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jmesnil: This pull request references Jira Issue OCPBUGS-66996, which is invalid:

  • expected the bug to target either version "4.19." or "openshift-4.19.", but it targets "4.22.0" instead
  • expected the bug to be in one of the following states: NEW, ASSIGNED, POST, but it is ON_QA instead
  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected Jira Issue OCPBUGS-66996 to depend on a bug targeting a version in 4.20.0, 4.20.z and in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but no dependents were found

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.

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.

@jmesnil jmesnil changed the title [release-4.19] OCPBUGS-66996: Extends the time for the extractor liveness probe [release-4.19] OCPBUGS-76962: Extends the time for the extractor liveness probe Feb 17, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jmesnil: This pull request references Jira Issue OCPBUGS-76962, which is invalid:

  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected dependent Jira Issue OCPBUGS-76961 to be in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but it is New instead

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:

Categories

  • Backporting

Before:

  • crictl info was timing out after 2 seconds
  • the command was executed every 10 seconds
  • 2 failures were making the container unhealthy
  • => 10 seconds of unavailability was making the pod crash

This was too constraining as there are occasions where crictl can be unavailable for a longer period of time (eg when the TLS CA bundle requires to restart some pods)

Now:

  • crictl info is timing out after 10 seconds
  • the command is executed every 30 seconds
  • 3 failures (default) are making the container unhealthy
  • => 1m30s of unaivailability is making the pod crash

Note: The liveness probe is used instead of the readiness probe as the container MUST crash if the crictl connection has been changed (eg following a TLS CA bundle update) and at this point, the pod must be recreated to be able to connect to cri-o socket with an updated TLS certificate.

This fixes https://issues.redhat.com/browse/OCPBUGS-76962
Upstream issue is https://issues.redhat.com/browse/OCPBUGS-66996

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.

@jmesnil
Copy link
Copy Markdown
Contributor Author

jmesnil commented Feb 17, 2026

/jira refresh

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jmesnil: This pull request references Jira Issue OCPBUGS-76962, which is invalid:

  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected dependent Jira Issue OCPBUGS-76961 to be in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but it is New instead

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.

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

openshift-ci Bot commented Feb 17, 2026

@jmesnil: The following test 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/okd-scos-images 4da1836 link true /test okd-scos-images

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.

@BaiyangZhou
Copy link
Copy Markdown

/label cherry-pick-approved

@openshift-ci openshift-ci Bot added the cherry-pick-approved Indicates a cherry-pick PR into a release branch has been approved by the release branch manager. label Mar 2, 2026
@BaiyangZhou
Copy link
Copy Markdown

/verified bypass

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@BaiyangZhou: The verified label has been added.

Details

In response to this:

/verified bypass

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 verified Signifies that the PR passed pre-merge verification criteria label Mar 2, 2026
@BaiyangZhou
Copy link
Copy Markdown

/jira refresh

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@BaiyangZhou: This pull request references Jira Issue OCPBUGS-76962, which is invalid:

  • expected the bug to be in one of the following states: NEW, ASSIGNED, POST, but it is ON_QA instead

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.

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.

@BaiyangZhou
Copy link
Copy Markdown

/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 Mar 25, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

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

7 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (4.19.z) matches configured target version for branch (4.19.z)
  • bug is in the state New, which is one of the valid states (NEW, ASSIGNED, POST)
  • release note type set to "Release Note Not Required"
  • dependent bug Jira Issue OCPBUGS-76961 is in the state Verified, which is one of the valid states (VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA))
  • dependent Jira Issue OCPBUGS-76961 targets the "4.20.z" version, which is one of the valid target versions: 4.20.0, 4.20.z
  • bug has dependents

No GitHub users were found matching the public email listed for the QA contact in Jira (jmesnil@redhat.com), skipping review request.

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.

@opokornyy
Copy link
Copy Markdown
Contributor

/lgtm
/approve

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Mar 31, 2026
@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Mar 31, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jmesnil, opokornyy

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

The pull request process is described here

Details Needs approval from an approver in each of these files:

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

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 31, 2026
@opokornyy
Copy link
Copy Markdown
Contributor

/backport-risk-assessed

@opokornyy
Copy link
Copy Markdown
Contributor

/label backport-risk-assessed

@openshift-ci openshift-ci Bot added the backport-risk-assessed Indicates a PR to a release branch has been evaluated and considered safe to accept. label Mar 31, 2026
@openshift-merge-bot openshift-merge-bot Bot merged commit 3ee1478 into openshift:release-4.19 Mar 31, 2026
11 checks passed
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@jmesnil: Jira Issue Verification Checks: Jira Issue OCPBUGS-76962
✔️ This pull request was pre-merge verified.
✔️ All associated pull requests have merged.
✔️ All associated, merged pull requests were pre-merge verified.

Jira Issue OCPBUGS-76962 has been moved to the MODIFIED state and will move to the VERIFIED state when the change is available in an accepted nightly payload. 🕓

Details

In response to this:

Categories

  • Backporting

Before:

  • crictl info was timing out after 2 seconds
  • the command was executed every 10 seconds
  • 2 failures were making the container unhealthy
  • => 10 seconds of unavailability was making the pod crash

This was too constraining as there are occasions where crictl can be unavailable for a longer period of time (eg when the TLS CA bundle requires to restart some pods)

Now:

  • crictl info is timing out after 10 seconds
  • the command is executed every 30 seconds
  • 3 failures (default) are making the container unhealthy
  • => 1m30s of unaivailability is making the pod crash

Note: The liveness probe is used instead of the readiness probe as the container MUST crash if the crictl connection has been changed (eg following a TLS CA bundle update) and at this point, the pod must be recreated to be able to connect to cri-o socket with an updated TLS certificate.

This fixes https://issues.redhat.com/browse/OCPBUGS-76962
Upstream issue is https://issues.redhat.com/browse/OCPBUGS-66996

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. backport-risk-assessed Indicates a PR to a release branch has been evaluated and considered safe to accept. cherry-pick-approved Indicates a cherry-pick PR into a release branch has been approved by the release branch manager. 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