mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-19 02:38:07 -05:00
Automatic merge from submit-queue Let release_1_5 clientset include multiple versions of a group Fix #35237 This PR make versioned clientset to include multiple versions of a group. Currently only `batch` has `v1` and `v2alpha1`. The clientset interface now looks like: ```go BatchV2alpha1() v2alpha1batch.BatchV2alpha1Interface BatchV1() v1batch.BatchV1Interface // Deprecated: please explicitly pick a version if possible. Batch() v1batch.BatchV1Interface ``` Commit "update client-gen to say internalversion rather than unversioned" fixes https://github.com/kubernetes/kubernetes/issues/24481. cc @kubernetes/sig-api-machinery @soltysh @deads2k @nikhiljindal ```release-note release_1_5 clientset supports multiple versions of a group. ``` |
||
|---|---|---|
| .. | ||
| util | ||
| BUILD | ||
| deployment_controller.go | ||
| deployment_controller_test.go | ||
| recreate.go | ||
| rollback.go | ||
| rolling.go | ||
| rolling_test.go | ||
| sync.go | ||
| sync_test.go | ||