Merge pull request #1774 from zappy-shu/bump-kubernetes-1-13-4

bump kubernetes to v1.14.0
This commit is contained in:
Sebastiaan van Stijn
2019-04-01 11:49:52 +02:00
committed by GitHub
620 changed files with 48731 additions and 20051 deletions

View File

@ -220,13 +220,11 @@ func newPodInformer(podsClient podListWatch, stackName string, indexers cache.In
&cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
options.LabelSelector = labels.SelectorForStack(stackName)
options.IncludeUninitialized = true
return podsClient.List(options)
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
options.LabelSelector = labels.SelectorForStack(stackName)
options.IncludeUninitialized = true
return podsClient.Watch(options)
},
},