kubernetes/test/e2e/apps
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
..
BUILD Promote SS to apps/v1 2018-01-18 13:48:52 +05:30
cronjob.go use versiond group clients from client-go 2017-11-07 14:47:22 +08:00
daemon_restart.go the changes introduced in this commit plumbs in the generic scaler into kubectl. 2018-01-12 09:21:18 +01:00
daemon_set.go Move scheduler code out of plugin directory. 2018-01-05 15:05:01 -08:00
deployment.go convert testScaledRolloutDeployment e2e test to integration test 2017-11-20 15:36:27 -08:00
disruption.go Collect all the assorted image URLs from e2e tests in one place 2017-12-19 12:16:07 -05:00
framework.go Rename test dir to allude sig-apps ownership 2017-07-22 12:43:36 +02:00
job.go Decrease the number of completions for flaky test 2017-12-07 16:05:35 +01:00
network_partition.go Promote SS to apps/v1 2018-01-18 13:48:52 +05:30
OWNERS Rename test dir to allude sig-apps ownership 2017-07-22 12:43:36 +02:00
rc.go Add framework.ConformanceIt as the new way to declare conformance tests. 2017-10-27 15:29:59 -07:00
replica_set.go use versiond group clients from client-go 2017-11-07 14:47:22 +08:00
statefulset.go Promote SS to apps/v1 2018-01-18 13:48:52 +05:30
types.go Enable batch/v1beta1.CronJobs by default 2017-09-03 11:17:33 +02:00