- 25 Mar, 2019 3 commits
-
-
Kubernetes Prow Robot authored
Add some logs for kubeadm join
-
Kubernetes Prow Robot authored
Scheduler: Logging cleanup in predicates.go.
-
PingWang authored
Signed-off-by:PingWang <wang.ping5@zte.com.cn>
-
- 24 Mar, 2019 1 commit
-
-
Kubernetes Prow Robot authored
use cache size to signal undecorated storage
-
- 23 Mar, 2019 7 commits
-
-
Kubernetes Prow Robot authored
Remove use of `%#v` in frequently accessed code
-
Kubernetes Prow Robot authored
Move protection common funcs to protectionutil
-
Kubernetes Prow Robot authored
Fix goroutine leak in pkg/util/wait PollUntil()
-
Jonathan Basseri authored
This is some light cleanup of logs in predicates.go. In particular, some log lines have details clarified that will make debugging easier. I have not touched any VLOG messages, since those usually have plenty of detail.
-
Kubernetes Prow Robot authored
Fix golint failures of e2e/framework/[a-c].go
-
Kubernetes Prow Robot authored
kubeadm: remove v1alpha3
-
Kubernetes Prow Robot authored
Fix linting issues in pkg/kubectl/cmd/version
-
- 22 Mar, 2019 29 commits
-
-
Kubernetes Prow Robot authored
test/e2e/framework: add OWNERS file
-
Kubernetes Prow Robot authored
Kubelet should request protobuf from the apiserver
-
Kubernetes Prow Robot authored
add area/cloudprovider label for changes in pkg/cloudprovider & k8s.i…
-
Kubernetes Prow Robot authored
Fix golint failures under test/e2e/[..]/gce
-
Kenichi Omichi authored
This fixes golint failures on the following files: - test/e2e/framework/authorizer_util.go - test/e2e/framework/cleanup.go - test/e2e/framework/create.go
-
Kubernetes Prow Robot authored
Use apps/v1 APIs in integration tests
-
Kubernetes Prow Robot authored
fix eliminate shellcheck failures in hack/lib/golang.sh
-
Lubomir I. Ivanov authored
-
Kubernetes Prow Robot authored
Fix a regression in watch performance and reduce allocations in the GET path
-
Clayton Coleman authored
There was no reason to have two types and this avoids ~10% of allocations on the GET code path. ``` BenchmarkGet-12 100000 109045 ns/op 17608 B/op 146 allocs/op BenchmarkGet-12 100000 108850 ns/op 15942 B/op 132 allocs/op ```
-
Clayton Coleman authored
These allocations should only occur rarely. ``` BenchmarkGet-12 100000 108013 ns/op 17732 B/op 149 allocs/op BenchmarkGet-12 100000 109045 ns/op 17608 B/op 146 allocs/op ```
-
Clayton Coleman authored
ReplaceAllStrings always allocates, while scanning a relatively short regex twice is slightly more CPU immediately but less later. ``` BenchmarkGet-12 100000 108824 ns/op 17818 B/op 152 allocs/op BenchmarkGet-12 100000 108013 ns/op 17732 B/op 149 allocs/op ```
-
Clayton Coleman authored
IsListType was causing ~100 allocations for a non list object. It is used in a wide range of code, so perform a more targeted check. The use of `%#v` in a hot return path for `fmt.Errorf()` was the main victim. Replace `%#v` with a typed error and create a cache of types that are lists with a bounded size (probably not necessary, but safer). ``` BenchmarkGet-12 100000 119635 ns/op 20110 B/op 206 allocs/op BenchmarkWatchHTTP-12 100000 65761 ns/op 7296 B/op 139 allocs/op BenchmarkGet-12 100000 109085 ns/op 17831 B/op 152 allocs/op BenchmarkWatchHTTP-12 200000 33966 ns/op 1913 B/op 30 allocs/op ```
-
Clayton Coleman authored
The kubelet was not asking for application/vnd.kubernetes.protobuf on list and get calls. It looks like we lost that code when we moved to cert rotation. Clean up the client initialization path and make sure that all non-dynamic clients use protobuf by default.
-
Kenichi Omichi authored
This fixes golint failures under test/e2e/framework/providers/gce/. Cleanup: * FirewallTimeoutDefault is not used at all, so remove it. * FirewallTestTcpTimeout, FirewallTestHttpPort and FirewallTestUdpPort are used at test/e2e/network/firewall.go only. So move them.
-
Clayton Coleman authored
Baseline: ``` BenchmarkGet-12 100000 119635 ns/op 20110 B/op 206 allocs/op BenchmarkWatchHTTP-12 100000 65761 ns/op 7296 B/op 139 allocs/op ```
-
Kubernetes Prow Robot authored
Updated client-go expiration cache to take in expiration policies
-
Kubernetes Prow Robot authored
provide verbose output when health check fails
-
Kubernetes Prow Robot authored
make describers of different versions work properly when autoscaling/v2beta2 is not supported
-
Kubernetes Prow Robot authored
shorten scheduler package alias for better readability
-
tiffany jernigan authored
-
Kubernetes Prow Robot authored
replace AddRateLimited with Add in enqueue func
-
Kubernetes Prow Robot authored
Avoid unnecessary sort for some cases in selectVictimsOnNode
-
Kubernetes Prow Robot authored
Daemon Set Conformance test fails in CI process using ci-kubernetes-c…
-
Kubernetes Prow Robot authored
Use UUIDv4 not UUIDv1
-
Kubernetes Prow Robot authored
Check for required name parameter in dynamic client
-
Kubernetes Prow Robot authored
Allow choice of os/arch when downloading client
-
Kubernetes Prow Robot authored
Add nokubeproxy option in START_MODE
-
Kubernetes Prow Robot authored
Remove redundant checker whether pod has claims in func FindPodVolumes
-