-
Notifications
You must be signed in to change notification settings - Fork 15.1k
v1.33 release blog post for KEP 4960 (Container Stop Signals) and KEP 4818 (Allow zero for pod lifecycle sleep action) #49967
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
Changes from 3 commits
fd11466
fc6fa0f
7231d0f
6b10477
4745c4b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||||||||||
| --- | ||||||||||||||
| layout: blog | ||||||||||||||
| title: "Updates to Container Lifecycle in Kubernetes v1.33" | ||||||||||||||
| date: 2025-03-01 | ||||||||||||||
sreeram-venkitesh marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||
| slug: text-for-URL-link-here-no-spaces | ||||||||||||||
sreeram-venkitesh marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||
| author: > | ||||||||||||||
| Sreeram Venkitesh (DigitalOcean) | ||||||||||||||
| --- | ||||||||||||||
|
|
||||||||||||||
| Kubernetes v1.33 introduces a few updates to the Container Lifecycle. The Sleep Action for container Lifecycle now supports a zero sleep duration by default. We are also introducing StopSignal to the container lifecycle for customizing the stop signal sent to kill containers. | ||||||||||||||
|
||||||||||||||
| Kubernetes v1.33 introduces a few updates to the Container Lifecycle. The Sleep Action for container Lifecycle now supports a zero sleep duration by default. We are also introducing StopSignal to the container lifecycle for customizing the stop signal sent to kill containers. | |
| Kubernetes v1.33 introduces a few updates to the lifecycle of containers. | |
| The Sleep action for container `preStop` hooks now supports a zero sleep duration (feature enabled by default). | |
| There is also alpha support for customizing the stop signal sent to containers when they are being terminated. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| This blog post goes into the details of these new features to the Container Lifecycle and how you can use them. | |
| This blog post goes into the details of these new aspects of the container lifecycle, | |
| and how you can use them. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about:
| `PodLifecycleSleepActionAllowZero` is now graduating to beta in v1.33 and is enabled by default. The original Sleep action feature, enabled with the `PodLifecycleSleepAction` feature gate has been in beta and has been enabled by default from Kubernetes v1.30. From v1.33, users should be able to set a zero duration for their sleep lifecycle hooks by default. | |
| The `PodLifecycleSleepActionAllowZero` feature gate has graduated to beta in v1.33, and is now enabled by default. | |
| The original Sleep action for `preStop` and `postStart` hooks is been enabled by default, starting from Kubernetes v1.30. | |
| With a cluster running Kubernetes v1.33, you are able to set a | |
| zero duration for sleep lifecycle hooks. For a cluster with default configuration, you don't need | |
| to enable any feature gate to make that possible. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ## Container Stop Signals | |
| Container stop signals |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're likely to amend the title to fit in with the series