-
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
[apps/v1] Core controllers and e2e to use new api types #55714
Comments
cc: @kow3ns |
@kubernetes/sig-apps-feature-requests |
@dhilipkumars We can't start work on this until 1.9 is released. This needs to go into 1.10. |
@kow3ns If you agree with this Plan, I could work on getting it done for other controllers by the time we cut 1.9 (Raise the PRs and keep them upto date with master). We could get this in first thing when master is ready for What do you say? Also, what is the plan for Scale subresource? |
I think e2e from master is also used for some skew tests (we typically version gate things in e2e's for ~2 releases). cc @kubernetes/sig-testing-misc for clarification there. |
@kow3ns dhilipkumars Has this already been handled? |
@mattfarina we have raised an intial PR for statefulsets, i would like to get that reviewed and merge that. I can replicate that work for other controllers immediately after that. |
Automatic merge from submit-queue (batch tested with PRs 55792, 58342). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Promote Statefulset controller and its e2e tests to use apps/v1 **What this PR does / why we need it**: Promotes the statefulset controller to use to use the latest apps group [apps/v1](#53679) **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # #55714 **Special notes for your reviewer**: * Listerexpansion for v1 `k8s.io/client-go/listers/apps/v1` (was recently done for v1beta2) * `v1beta2` && `v1` had `ObservedGeneration` as `int64` where as `v1beta1` and rest of the code (including conversion) is expecting `ObservedGeneration` to be `*int64` ``` type StatefulSetStatus struct { // observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the // StatefulSet's generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"` ``` * for kubectl's `rollback` and `history` commands a couple functions have been duplicated to allow us to use `v1` version instead of `v1beta1` for statefulsets, while the older functions are still used by other controllers. We should be able to remove these duplicates once all the controllers are moved. If this aligns with the plan then i could move other controllers too. cc: @kow3ns **Release note**: ```release-note NONE ```
ref ##59883 |
Automatic merge from submit-queue (batch tested with PRs 60980, 61273, 60811, 61021, 61367). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Use apps/v1 ReplicaSet in controller and tests. This updates the RS/RC controller and RS integration/e2e tests to use apps/v1 ReplicaSet, as part of #55714. It does *not* update the Deployment controller, nor its integration/e2e tests, to use apps/v1 ReplicaSet. That will be done in a separate PR (#61419) because Deployment has many more tendrils embedded throughout the system. ```release-note Conformance: ReplicaSet must be supported in the `apps/v1` version. ``` /assign @janetkuo
Automatic merge from submit-queue (batch tested with PRs 61790, 61808, 60339, 61615, 61757). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Deployment to stop adding pod-template-hash labels/selector on adoption **What this PR does / why we need it**: This is a blocker for #55714, because ReplicaSet selector becomes immutable in `apps/v1`. With controller ref, Deployment's ReplicaSets and Pods can avoid fighting with each others without unique label/selector (pod-template-hash), so it's safe to stop adding hash label/selector on adoption. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #61433 **Special notes for your reviewer**: This is a behavioral change to Deployment controller that will affect all versions of Deployment APIs (`apps/v1`, `extensions/v1beta1`, `apps/v1beta1`, `apps/v1beta2`). **Release note**: ```release-note Deployment will stop adding pod-template-hash labels/selector to ReplicaSets and Pods it adopts. Resources created by Deployments are not affected (will still have pod-template-hash labels/selector). ```
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Automatic merge from submit-queue (batch tested with PRs 62756, 63862, 61419, 64015, 64063). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Use apps/v1 Deployment/ReplicaSet in controller and kubectl This updates the Deployment controller and integration/e2e tests to use apps/v1, as part of #55714. This also requires updating any other components that use the `deployment/util` package, most notably `kubectl`. That means client versions 1.11 and above will only work with server versions 1.9 and above. This is well within our client-server version skew policy of +/-1 minor version. However, this PR *only* updates the parts of `kubectl` that used `deployment/util`. So although kubectl now requires apps/v1, it still also depends on extensions/v1beta1. Migrating other parts of kubectl to apps/v1 is beyond the scope of this PR, which was just to change the Deployment controller and fix all the fallout. ```release-note kubectl: This client version requires the `apps/v1` APIs, so it will not work against a cluster version older than v1.9.0. Note that kubectl only guarantees compatibility with clusters that are +/-1 minor version away. ```
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Is this a BUG REPORT or FEATURE REQUEST?:
/kind feature
/sig apps
What happened:
These dedicated such as v1beta1 and extension set of apis are still being used by the core contollers and e2e test.
What you expected to happen:
What is the plan to move the core controller to use the new [apps/v1] group. Ideally, we should be testing the new api types instead?
For instance, rollback is removed from deployment but these are still tested in e2e, should we not ideally
only test stuff that are currently supported?
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Any update on the scale sub-resource?
Controllers that needs to be updated are:
The text was updated successfully, but these errors were encountered: