Commit Graph

83249 Commits

Author SHA1 Message Date
Kubernetes Prow Robot
494d4cb841
Merge pull request #79005 from cwdsuzhou/June/remove_recursion_detach
Remove recursion in waitForVolumeDetachmentInternal
2019-09-10 14:29:01 -07:00
Kubernetes Prow Robot
e972912fe4
Merge pull request #74881 from qingsenLi/k8s190304-fix-syntactic
fix syntactic error in kuberuntime_manager.go
2019-09-10 14:28:48 -07:00
Antoine Pelisse
d30e597391 Regenerate specs 2019-09-10 14:26:14 -07:00
Antoine Pelisse
3ab51e03ce Remove alpha status from ManagedFields 2019-09-10 14:12:46 -07:00
Anago GCB
405890fe0c Update CHANGELOG-1.16.md for v1.16.0-rc.1. 2019-09-10 18:37:49 +00:00
Yassine TIJANI
18b185b5e8 adding yastij as a reviewer for the runtimeclass admission controller
Signed-off-by: Yassine TIJANI <ytijani@vmware.com>
2019-09-10 20:34:28 +02:00
caiweidong
9157df47e8 add apigroup to the data source when using kubectl describe pvc 2019-09-10 23:47:09 +08:00
Andrew Phillips
5a753a834f
'imagetag' -> 'image' in edit set command examples
'imagetag' is not/no longer supported as a command
2019-09-10 10:53:27 -04:00
Jan Safranek
894e6795cf Log all executed iscsiadm commands
We sometimes face issues with iSCSI PVs and it's hard to guess what's going
on without iscsiadm commands logged. Using level 5 (iscsiadm output can be
long sometimes) and explicitly avoiding logging of CHAP passwords.

In addition, log which path failed to appear after timeout, so the admin
can see which portals are not providing devices.
2019-09-10 14:31:28 +02:00
Kubernetes Prow Robot
1888745c3d
Merge pull request #82520 from sttts/sttts-test-liveness-pod
test: fix liveness pod
2019-09-10 02:36:55 -07:00
Dr. Stefan Schimanski
ace8fd945d test: fix liveness pod 2019-09-10 10:15:11 +02:00
Guangming Wang
2bf3a07298 add line break in kubeadm upgrade logging message
logging use Println instead of Printf
2019-09-10 11:53:33 +08:00
haoshuwei
573dcd7364 remove packages in hack/.staticcheck_failures which are passing staticcheck
Signed-off-by: haoshuwei <haoshuwei24@gmail.com>
2019-09-10 11:01:32 +08:00
Ted Yu
8819a4b6b4 Continue with remaining volumeAttached's in VerifyVolumesAreAttached 2019-09-09 15:52:53 -07:00
Kubernetes Prow Robot
6348200c92
Merge pull request #82501 from losipiuk/lo/ca-1.16-final
Update Cluster Autoscaler version to 1.16.0
2019-09-09 14:12:54 -07:00
Łukasz Osipiuk
b27e0b54f1 Update Cluster Autoscaler version to 1.16.0 2019-09-09 19:12:31 +02:00
Filipe Brandenburger
c8f4e958e6 Remove me from OWNERS for GCI
Signed-off-by: Filipe Brandenburger <filbranden@gmail.com>
2019-09-09 09:39:05 -07:00
Jordan Liggitt
510140ee27 Avoid encoding from competing goroutines 2019-09-09 12:03:38 -04:00
Aldo Culquicondor
5af048af7f Nominate alculquicondor to scheduler reviewers
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2019-09-09 12:03:09 -04:00
Jordan Liggitt
bbedc4f7ed Generated files 2019-09-09 08:55:04 -04:00
Jordan Liggitt
0e787a4b78 Export UserInfo conversion, use authnv1.UserInfo in audit 2019-09-09 08:54:54 -04:00
Janek Łukaszewicz
72683a0252 log-dump: make logging clearer 2019-09-09 13:08:24 +02:00
haoshuwei
ef0fe263aa remove packages in hack/.staticcheck_failures which are passing staticcheck
Signed-off-by: haoshuwei <haoshuwei24@gmail.com>
2019-09-09 18:57:44 +08:00
haoshuwei
aaed9daf9b fix some ineffassigns
Signed-off-by: haoshuwei <haoshuwei24@gmail.com>
2019-09-09 18:52:17 +08:00
SataQiu
0a706d3827 e2e_kubeadm: fix command flags description 2019-09-09 18:39:33 +08:00
Dr. Stefan Schimanski
420f010f87 endpoints: fix admission test types 2019-09-09 08:36:52 +02:00
haoshuwei
c4fe8f11b2 fix some missing errors return statements
Signed-off-by: haoshuwei <haoshuwei24@gmail.com>
2019-09-09 13:54:14 +08:00
Kubernetes Prow Robot
35cf6b6cbc
Merge pull request #82262 from nilo19/t-qini-fix_index_panic
Prevent resultPod.Status.ContainerStatuses from being empty.
2019-09-08 21:47:17 -07:00
haoshuwei
89a6533ef6 fix ineffassign 2019-09-09 11:34:21 +08:00
zhuangqh
057caf7fcf kubelet: refactor server containerLogs test to table driven test
Signed-off-by: zhuangqh <zhuangqhc@gmail.com>
2019-09-09 10:04:45 +08:00
Kubernetes Prow Robot
1cdd0848ee
Merge pull request #82430 from losipiuk/lo/ca-1.16
Update cluster autoscaler image to 1.16.0-beta.1
2019-09-08 18:41:17 -07:00
Ted Yu
e4d880bd62 Return proper Kind in error for Cacher 2019-09-07 19:42:56 -07:00
mengyang02
b4638519a9 init check for cloud node controller 2019-09-07 10:47:11 +08:00
Kubernetes Prow Robot
90f41951cd
Merge pull request #82420 from openSUSE/e2e-fix
Fix wrong command in e2e agnhost utility function
2019-09-06 17:41:20 -07:00
Darren Shepherd
8a58f332dd Check cache is synced first before sleeping
If a cache was already synced, cache.WaitForCacheSync would
always take 100ms to complete because the PollUntil method will
sleep first before checking the condition.  Switching to
PollImmediateUntil will ensure already synced caches will return
immediately.  For code that has, for example, 20 informers, the time
to check the cache was in sync would take at least 2 seconds, but with
this change it can be as fast as you can actually load the data.

Signed-off-by: Darren Shepherd <darren@rancher.com>
2019-09-06 16:34:03 -07:00
Ted Yu
89a70fa407 Handle pod addition / removal errors 2019-09-06 16:25:11 -07:00
Kubernetes Prow Robot
e682310dcc
Merge pull request #82438 from liggitt/apply-fallback
Fallback to schemaless apply behavior for custom resources with unhandled schemas
2019-09-06 15:37:19 -07:00
Sally O'Malley
4ce16254f7
fix indentation with 'kubectl describe node' 2019-09-06 16:57:42 -04:00
Kubernetes Prow Robot
ab73a018de
Merge pull request #82018 from odinuge/prepull-images-after-tests
Add pre pull of e2e images after DiskPressure test
2019-09-06 13:49:20 -07:00
Jordan Liggitt
3904e14b40 Fallback to schemaless apply behavior for custom resources with unhandled schemas 2019-09-06 15:39:28 -04:00
Kubernetes Prow Robot
1583bd60da
Merge pull request #82397 from robscott/endpointslice-gce-up
Improving GCE cluster up logic for EndpointSlice Controller
2019-09-06 12:27:20 -07:00
Monis Khan
4dc16f29a7
Encryption config: correctly handle overlapping providers
This change updates NewPrefixTransformers to not short-circuit on
the first transformer that has a matching prefix.  If the same type
of encryption ProviderConfiguration is used more than once, they
will share the same prefix.  A failure in the first one should not
prevent a later match from being attempted.

Added TestCBCKeyRotationWithOverlappingProviders unit test to
prevent regressions.  Note that this test explicitly exercises this
flow using an EncryptionConfiguration object as the structure of the
resulting transformer is an important part of the check.

Signed-off-by: Monis Khan <mkhan@redhat.com>
2019-09-06 15:12:28 -04:00
Rob Scott
66196c1043
Improving GCE cluster up logic for EndpointSlice Controller 2019-09-06 09:49:32 -07:00
Kubernetes Prow Robot
38752f7f99
Merge pull request #82425 from liggitt/client-go-readme
Update dev setup and client-go install instructions
2019-09-06 09:46:57 -07:00
Jorge Alarcon Ochoa
849386980c
Added alejandrox1 as test/e2e/framework reviewer 2019-09-06 12:39:16 -04:00
Łukasz Osipiuk
d02cc41644 Add read-only rbac for csinodes to cluster-autoscaler 2019-09-06 17:38:48 +02:00
Łukasz Osipiuk
9332d11563 Update cluster-autoscaler image to v1.16.0-beta.1 2019-09-06 17:38:31 +02:00
Jordan Liggitt
d965b143e6 Update kubernetes dev setup instructions 2019-09-06 11:16:38 -04:00
Jordan Liggitt
df3d143d15 Update client-go install instructions 2019-09-06 11:00:01 -04:00
Kubernetes Prow Robot
c58767b1e2
Merge pull request #81876 from wgliang/bugfix/filter-plugins-are-not-been-called-during-preemption
Fix filter plugins are not been called during preemption
2019-09-06 07:30:59 -07:00