kubernetes/cmd/kube-controller-manager/app
Kubernetes Submit Queue c21173d0ea
Merge pull request #55792 from dhilipkumars/statefulset-appsv1
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](https://github.com/kubernetes/kubernetes/pull/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 # https://github.com/kubernetes/kubernetes/issues/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
```
2018-01-26 06:54:33 -08:00
..
options Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
apps.go Promote SS to apps/v1 2018-01-18 13:48:52 +05:30
autoscaling.go use versiond group clients from client-go 2017-11-07 14:47:22 +08:00
batch.go Check RegisterMetricAndTrackRateLimiterUsage error when starting controllers 2017-11-01 12:46:07 +01:00
bootstrap.go use shared informers for TokenCleaner controller 2018-01-15 14:56:42 +08:00
BUILD uniquify resource lock identities 2018-01-18 11:31:43 -05:00
certificates.go Seperate loop and plugin control 2017-12-18 10:58:45 -08:00
controller_manager_test.go Using assertions 2017-10-10 22:44:12 -05:00
controllermanager.go Merge pull request #58791 from mikedanese/jwt0 2018-01-25 14:06:37 -08:00
core.go Split the NodeController into lifecycle and ipam pieces. 2018-01-04 12:48:08 -08:00
extensions.go Check RegisterMetricAndTrackRateLimiterUsage error when starting controllers 2017-11-01 12:46:07 +01:00
import_known_versions.go Add new Events API group 2017-11-22 18:40:09 +00:00
plugins.go CSI - feature gate fix, gated RBAC rules, csi nodeID label 2017-12-02 05:54:54 -05:00
policy.go Log more verbose when DisruptionController doesn't start. 2017-05-18 13:19:06 -07:00
rbac.go add clusterrole aggregation controller 2017-11-13 08:18:00 -05:00