-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Move workload API objects to group version apps/v1beta2 #49135
Comments
/assign @janetkuo |
@kow3ns
Note: Method 1 will trigger an email to the group. You can find the group list here and label list here. |
@kubernetes/sig-apps-api-reviews |
@kow3ns What's the corresponding issue in the features repo? |
Automatic merge from submit-queue Add a new API version apps/v1beta2 xref: #49135 This PR adds a new API version `apps/v1beta2` which contains a copy (of types, conversions, and defaults) of `apps/v1beta1` StatefulSet, Deployment, and their subresources. Note that `apps/v1beta2` is still WIP and we will make breaking changes to it before releasing 1.8. Moving core controllers (StatefulSet, Deployment, ReplicaSet, DaemonSet) to `apps/v1beta2` is the first step of moving them to `apps/v1` (GA). This PR is a starting point for DaemonSet and ReplicaSet to move from `/extensions` to `/apps` and for Deployment and StatefulSet to make some breaking changes (e.g. new defaults and/or remove deprecated fields). ```release-note Add a new API version apps/v1beta2 ```
Is this a good moment to make RollingUpdate DS strategy a default? Like in Deployments. Or this will never happen? |
Yes, new api version means we can change the defaults. +1 on making rolling updates the default. |
+1
|
Yes, we planned to make StS and DS default strategy to be RollingUpdate. Tracked in #49604 |
…o_int Automatic merge from submit-queue (batch tested with PRs 50000, 49954, 49943, 50018, 49607) change apps/v1beta2 StatefulSet observedGeneration from a pointer to an int for consistency **What this PR does / why we need it**: change the StatefulSet observedGeneration from a pointer to an int for consistency **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #49623 xref #49135 **Special notes for your reviewer**: /cc @janetkuo @foxish @kow3ns **Release note**: ```release-note change apps/v1beta2 StatefulSet observedGeneration (optional field) from a pointer to an int for consistency ```
Automatic merge from submit-queue Deprecate Deployment .spec.rollbackTo field ~Depends on #48746~ (merged) xref: #46934, #49135 1. Deprecate Deployment field `.spec.rollbackTo` in `extensions/v1beta1` and `apps/v1beta1`, and remove the same field and `/rollback` endpoint from `apps/v1beta2` Deployment. 1. Add an annotation `deprecated.deployment.rollback.to` in `apps/v1beta2` for conversion to/from other versions. Note: `apps/v1beta2` is new in 1.8 (and WIP), so it is okay to make breaking changes to it. ```release-note Deprecate Deployment .spec.rollbackTo field ```
/priority important-soon |
[MILESTONENOTIFIER] Milestone Labels Complete Issue label settings:
|
@kow3ns Has it been figured out how PodDisruptionBudget will be taken into account by controllers other than StatefulSet, and how its maxUnvailable specification would relate to that specified by the controller's update strategy? |
@bgrant0607 Controllers don't create evictions or drain. For each controller, workload owners specify the desired number of disruptions during rollouts, rollbacks, turn ups, and turn downs using the parameters of the corresponding objects. A PDB represents a contract between workload owners and cluster admins so that the former has a means to specify the tolerated number of disruptions to the latter. The two concepts inter-operate and are related, but controllers (other than EvictionController) are agnostic to the PDB, and EvictionController is agnostic to the parameters of the workload specification. |
@kow3ns looks like there was a lot of progress, can we close this out or move this out of 1.8 milestone please? |
/close |
shipped 1.8.0 |
FEATURE REQUEST: Create a new version in the apps group for the core workloads API.
When we advance the core workloads API (DaemonSet, Deployment, ReplicaSet, and StatefulSet) to v1, we want them to advance as a group and be (where possible) consistent. Prior to doing so, we would like to make any API incompatible changes. In particular we will
apps/v1beta2
(Add a new API version apps/v1beta2 #48746) @janetkuoapps/v1beta2
(Add apps/v1beta2.ReplicaSet #49238) @janetkuoapps/v1beta2
(Add v1beta2.DaemonSet #49071) @foxish.spec.rollbackTo
, and remove the/rollback
subresource of apps/v1beta2 deploymentor modify it such that the controller is not required to modify its own spec. (Deprecate Deployment .spec.rollbackTo field #49340) @janetkuo/scale
subresource for StatefulSet (StatefulSet scale subresource #49168) @crimsonfaith91templateGeneration
feild of DaemonSet (Cleanup DaemonSet templateGeneration #49454) @dixudxobservedGeneration
from a pointer to an int for consistency. (change apps/v1beta2 StatefulSet observedGeneration from a pointer to an int for consistency #49607) @dixudx/extensions
apps/v1beta2
by default and remove WIP marks after API changes is doneWe may find other incompatible changes that are required prior to promotion, and we would like to make them in this version, prior to releasing it. When the community is satisfied with the API surface, as contained in this version, and it is stable, we would like to promote all of the core workloads API to GA by moving the contained API to v1.
kubernetes/enhancements#353
/kind feature
The text was updated successfully, but these errors were encountered: