k3s/pkg/controller
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
..
bootstrap create auto-gen files 2018-01-17 16:23:03 +08:00
certificates Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
cloud Fix scheduler refs in BUILD files. 2018-01-05 15:05:01 -08:00
clusterroleaggregation Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
cronjob Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
daemon Fix scheduler refs in BUILD files. 2018-01-05 15:05:01 -08:00
deployment Fix UpdatePodWithRetries inline documentation 2018-01-19 12:57:24 +01:00
disruption Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
endpoint Revert "no need delete endpoint explicitly in endpoint controller" 2018-01-10 09:30:23 +08:00
garbagecollector Track run status explicitly rather than non-nil check on stopCh 2018-01-17 11:04:55 -05:00
history Promote SS to apps/v1 2018-01-18 13:48:52 +05:30
job Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
namespace Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
nodeipam Get the node before attempting to get its Alias IP ranges 2018-01-11 17:50:07 -08:00
nodelifecycle Merge pull request #57852 from misterikkit/moveScheduler 2018-01-05 22:20:13 -08:00
podautoscaler remove duplicated import 2018-01-17 09:34:59 +08:00
podgc Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
replicaset remove duplicated import 2018-01-17 09:34:59 +08:00
replication Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
resourcequota Merge pull request #57149 from deads2k/rebase-02-quota 2018-01-22 19:02:29 -08:00
route Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
service fix event message when processing loadbalancer update 2018-01-19 10:48:30 +08:00
serviceaccount Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
statefulset Merge pull request #55792 from dhilipkumars/statefulset-appsv1 2018-01-26 06:54:33 -08:00
testutil Update generated files 2017-11-09 12:14:08 +01:00
ttl Autogenerate BUILD files 2017-12-23 13:12:11 -08:00
util/node Split the NodeController into lifecycle and ipam pieces. 2018-01-04 12:48:08 -08:00
volume Merge pull request #56288 from jsafrane/multiattach-pods 2018-01-25 05:31:34 -08:00
.import-restrictions
BUILD Split the NodeController into lifecycle and ipam pieces. 2018-01-04 12:48:08 -08:00
OWNERS
client_builder.go remove duplicated import 2017-11-14 17:18:17 +08:00
controller_ref_manager.go
controller_ref_manager_test.go
controller_utils.go Removed unnecessary type conversion 2017-11-14 11:04:18 +02:00
controller_utils_test.go Removed unused function. 2017-11-14 10:53:29 +02:00
doc.go
lookup_cache.go