Skip to content

Commit

Permalink
Merge pull request #1767 from losipiuk/lo/update-godeps-master-1.14
Browse files Browse the repository at this point in the history
Update godeps based on k8s.io/kubernetes release-1.14
  • Loading branch information
k8s-ci-robot authored Mar 7, 2019
2 parents 6092b0a + ea0d61f commit 7855ae5
Show file tree
Hide file tree
Showing 1,083 changed files with 98,672 additions and 13,995 deletions.
3,786 changes: 2,115 additions & 1,671 deletions cluster-autoscaler/Godeps/Godeps.json

Large diffs are not rendered by default.

26 changes: 19 additions & 7 deletions cluster-autoscaler/kubernetes.sync
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
commit 8d69dc630ba66d05ad95146583a7482ed1eb3f82 (HEAD, tag: v1.15.0-alpha.0)
Merge: d61e878533 f64baf755e
Author: Kubernetes Prow Robot <[email protected]>
Date: Tue Feb 19 04:55:32 2019 -0800
commit 88812c559deec4dd8c6bfdcb0a771269dd78e33c (origin/release-1.14)
Merge: d4fa3c1646 6dbe98980f
Author: Hannes Hoerl <[email protected]>
Date: Thu Mar 7 08:53:24 2019 +0000

Merge remote-tracking branch 'origin/master' into release-1.14

create mode 100644 build/container.bzl
create mode 100644 test/e2e/auth/audit_dynamic.go
create mode 100644 test/e2e/storage/external/BUILD
create mode 100644 test/e2e/storage/external/README.md
create mode 100644 test/e2e/storage/external/external.go
create mode 100644 test/e2e/storage/external/external_test.go
create mode 100644 test/e2e/storage/external/testdata/driver.json
create mode 100644 test/e2e/storage/external/testdata/driver.yaml
delete mode 100644 test/e2e/testing-manifests/storage-csi/gce-pd/controller_ss_alpha.yaml
create mode 100644 test/e2e/windows/gmsa.go
create mode 100644 vendor/k8s.io/klog/code-of-conduct.md
delete mode 100644 vendor/sigs.k8s.io/kustomize/pkg/patch/transformer/util.go

Merge pull request #74025 from rosti/deprecated-configs

kubeadm: Don't load deprecated configs
10 changes: 5 additions & 5 deletions cluster-autoscaler/utils/kubernetes/listers.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ func (lister *PodDisruptionBudgetListerImpl) List() ([]*policyv1.PodDisruptionBu

// NewPodDisruptionBudgetLister builds a pod disruption budget lister.
func NewPodDisruptionBudgetLister(kubeClient client.Interface, stopchannel <-chan struct{}) PodDisruptionBudgetLister {
listWatcher := cache.NewListWatchFromClient(kubeClient.Policy().RESTClient(), "poddisruptionbudgets", apiv1.NamespaceAll, fields.Everything())
listWatcher := cache.NewListWatchFromClient(kubeClient.PolicyV1beta1().RESTClient(), "poddisruptionbudgets", apiv1.NamespaceAll, fields.Everything())
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
pdbLister := v1policylister.NewPodDisruptionBudgetLister(store)
reflector := cache.NewReflector(listWatcher, &policyv1.PodDisruptionBudget{}, store, time.Hour)
Expand All @@ -313,7 +313,7 @@ func NewPodDisruptionBudgetLister(kubeClient client.Interface, stopchannel <-cha

// NewDaemonSetLister builds a daemonset lister.
func NewDaemonSetLister(kubeClient client.Interface, stopchannel <-chan struct{}) v1appslister.DaemonSetLister {
listWatcher := cache.NewListWatchFromClient(kubeClient.Apps().RESTClient(), "daemonsets", apiv1.NamespaceAll, fields.Everything())
listWatcher := cache.NewListWatchFromClient(kubeClient.AppsV1().RESTClient(), "daemonsets", apiv1.NamespaceAll, fields.Everything())
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
lister := v1appslister.NewDaemonSetLister(store)
reflector := cache.NewReflector(listWatcher, &appsv1.DaemonSet{}, store, time.Hour)
Expand All @@ -333,7 +333,7 @@ func NewReplicationControllerLister(kubeClient client.Interface, stopchannel <-c

// NewJobLister builds a job lister.
func NewJobLister(kubeClient client.Interface, stopchannel <-chan struct{}) v1batchlister.JobLister {
listWatcher := cache.NewListWatchFromClient(kubeClient.Batch().RESTClient(), "jobs", apiv1.NamespaceAll, fields.Everything())
listWatcher := cache.NewListWatchFromClient(kubeClient.BatchV1().RESTClient(), "jobs", apiv1.NamespaceAll, fields.Everything())
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
lister := v1batchlister.NewJobLister(store)
reflector := cache.NewReflector(listWatcher, &batchv1.Job{}, store, time.Hour)
Expand All @@ -343,7 +343,7 @@ func NewJobLister(kubeClient client.Interface, stopchannel <-chan struct{}) v1ba

// NewReplicaSetLister builds a replicaset lister.
func NewReplicaSetLister(kubeClient client.Interface, stopchannel <-chan struct{}) v1appslister.ReplicaSetLister {
listWatcher := cache.NewListWatchFromClient(kubeClient.Apps().RESTClient(), "replicasets", apiv1.NamespaceAll, fields.Everything())
listWatcher := cache.NewListWatchFromClient(kubeClient.AppsV1().RESTClient(), "replicasets", apiv1.NamespaceAll, fields.Everything())
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
lister := v1appslister.NewReplicaSetLister(store)
reflector := cache.NewReflector(listWatcher, &appsv1.ReplicaSet{}, store, time.Hour)
Expand All @@ -353,7 +353,7 @@ func NewReplicaSetLister(kubeClient client.Interface, stopchannel <-chan struct{

// NewStatefulSetLister builds a statefulset lister.
func NewStatefulSetLister(kubeClient client.Interface, stopchannel <-chan struct{}) v1appslister.StatefulSetLister {
listWatcher := cache.NewListWatchFromClient(kubeClient.Apps().RESTClient(), "statefulsets", apiv1.NamespaceAll, fields.Everything())
listWatcher := cache.NewListWatchFromClient(kubeClient.AppsV1().RESTClient(), "statefulsets", apiv1.NamespaceAll, fields.Everything())
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
lister := v1appslister.NewStatefulSetLister(store)
reflector := cache.NewReflector(listWatcher, &appsv1.StatefulSet{}, store, time.Hour)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

274 changes: 137 additions & 137 deletions cluster-autoscaler/vendor/github.com/Microsoft/go-winio/ea.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7855ae5

Please sign in to comment.