Commit Graph

97121 Commits

Author SHA1 Message Date
Stephen Heywood
e9e74aa98b Create e2e test for pod & service ProxyWithPath endpoints 2021-01-18 12:55:29 +13:00
Kubernetes Prow Robot
d72c056260
Merge pull request #98124 from jayunit100/fix-pause-args
remove weird pause args from this networking.go, that break the perio…
2021-01-17 14:31:43 -08:00
jay vyas
4d757f1c52 remove weird pause args from this networking.go, that break the periodic sig-network tests 2021-01-17 13:42:41 -05:00
Kubernetes Prow Robot
97cf67b329
Merge pull request #97897 from knabben/sctp-netpol-test
Copying SCTP tests to Netpol e2e framework
2021-01-17 07:27:43 -08:00
Kubernetes Prow Robot
3b38f6a08e
Merge pull request #98095 from qingsenLi/210115-fix
fix klog.Info -> klog.Infof
2021-01-17 01:15:43 -08:00
waynepeking348
b2de3507d0 add dependency in bazel BUILD file 2021-01-16 22:25:37 +08:00
xiongzhongliang
e650a8a38c Remove kubectl alpha debug command in 1.21 2021-01-16 20:17:22 +08:00
Kubernetes Prow Robot
8566345877
Merge pull request #98113 from thockin/Logo-color
Document our official blue color.
2021-01-16 02:27:43 -08:00
changshuchao
42eb85e4fb Made some optimizations, including modifying variable names, omitting unnecessary parentheses, and conflicting variable names and package names.
Signed-off-by: changshuchao <chang.shuchao1@zte.com.cn>
2021-01-16 17:24:08 +08:00
Kubernetes Prow Robot
c37905c06c
Merge pull request #97917 from gavinfish/refact-addpod
Scheduler: Add function AddPodInfo(*PodInfo) for NodeInfo struct
2021-01-16 00:25:43 -08:00
Tim Hockin
d6ebf11b82
Create colors.md 2021-01-15 22:15:43 -08:00
Li Bo
a286455a3e fix problem that NewReplicaSet shows <none> when describing deployments 2021-01-16 13:38:14 +08:00
Douglas Schilling Landgraf
ea017e53af kubectl: run - remove unneeded vars
No need extra vars just for a single validation.

Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
2021-01-15 21:03:27 -05:00
Kubernetes Prow Robot
8bf42039e6
Merge pull request #96552 from pandaamanda/klog_fmt
use klog.Info and klog.Warning when had no format
2021-01-15 17:57:43 -08:00
Kubernetes Prow Robot
d73693cb44
Merge pull request #98101 from aojea/agnhost26
bump agnhost to 2.26
2021-01-15 17:08:31 -08:00
Kubernetes Prow Robot
9ac1df0ebe
Merge pull request #98036 from ehashman/ehashman-node-reviewer
Request: Add ehashman as sig-node-reviewer
2021-01-15 17:08:22 -08:00
Kubernetes Prow Robot
f4fd7cf86c
Merge pull request #98025 from hasheddan/fqdn-test
Default cluster dns-domain to empty string in e2e_node suite
2021-01-15 17:08:13 -08:00
Kubernetes Prow Robot
a399b3e92f
Merge pull request #97935 from adeniyistephen/fix-build-readme
Fix the build/README.md documentation file on docker-machine remote
2021-01-15 17:08:05 -08:00
Kubernetes Prow Robot
efba8f0482
Merge pull request #97589 from heqg/typo-expected-02
Fix typo in pkg/kubelet/.../helpers_test.go
2021-01-15 17:07:56 -08:00
Kubernetes Prow Robot
5e9b43eab6
Merge pull request #96960 from Jefftree/defaulter-diff
Update defaulter gen to not use reflect
2021-01-15 17:07:44 -08:00
Kubernetes Prow Robot
fe58a937bd
Merge pull request #96857 from jnummelin/kubelet-cri-endpoint-help
Finetune container-runtime-endpoint option help text
2021-01-15 16:17:43 -08:00
Solly Ross
e90e67bd00 Don't record events in goroutines
This changes the event recorder to use the equivalent of a select
statement instead of a goroutine to record events.

Previously, we used a goroutine to make event recording non-blocking.
Unfortunately, this writes to a channel, and during shutdown we then
race to write to a closed channel, panicing (caught by the error
handler, but still) and making the race detector unhappy.

Instead, we now use the select statement to make event emitting
non-blocking, and if we'd block, we just drop the event.  We already
drop events if a particular sink is overloaded, so this just moves the
incoming event queue to match that behavior (and makes the incoming
event queue much longer).

This means that, if the user uses `Eventf` and friends correctly (i.e.
ensure they've returned by the time we call `Shutdown`), it's
now safe to call Shutdown.  This matches the conventional go guidance on
channels: the writer should call close.
2021-01-15 14:58:56 -08:00
Kubernetes Prow Robot
7791bbe978
Merge pull request #98008 from RA489/min_support_ver
kubeadm: Update versions for 1.21
2021-01-15 14:50:04 -08:00
Kubernetes Prow Robot
a99ebca030
Merge pull request #97552 from aanm/pr/replace/buffer/with/strings
replace bytes.Buffer with strings.Builder
2021-01-15 14:49:56 -08:00
Kubernetes Prow Robot
4fe132954f
Merge pull request #96877 from xeniumlee/master
fix privileged config of Pod Sandbox
2021-01-15 14:49:44 -08:00
Andrew Sy Kim
fdc9790b2d add myself as reviewer in pkg/controller/OWNERS
Signed-off-by: Andrew Sy Kim <kim.andrewsy@gmail.com>
2021-01-15 17:21:35 -05:00
Kubernetes Prow Robot
d5a75dc7e8
Merge pull request #97987 from jayunit100/directly_resolve_dns
directly query dns and resolve it in the e2es for windows
2021-01-15 13:57:56 -08:00
Kubernetes Prow Robot
5932f34ac3
Merge pull request #97459 from yu2003w/issue#97458
Build multiplatform images when issue `make release-images`
2021-01-15 13:57:43 -08:00
Kubernetes Prow Robot
b6958b2b1b
Merge pull request #97173 from YoyinZyc/add_context
Add context to metric interface in component-base/mertic
2021-01-15 12:05:51 -08:00
Kubernetes Prow Robot
09bcf0723a
Merge pull request #97155 from sanwishe/master
cleanup unused type conversion
2021-01-15 11:15:51 -08:00
Kubernetes Prow Robot
38585884e3
Merge pull request #97184 from chendave/add_status
Show the details on the failure of preemption
2021-01-15 10:25:51 -08:00
Kubernetes Prow Robot
a9e2e18cc6
Merge pull request #98068 from liggitt/gc-owner
Ensure invalid cluster-scoped children do not block cleanup of valid namespaced children
2021-01-15 07:31:52 -08:00
Antonio Ojea
44653fc21b bump agnhost to 2.26 2021-01-15 16:21:31 +01:00
Dave Chen
7315c1f6dd Show the details on the failure of preemption
Since the filter status is missed for the phase of preemption, there
will be no way to tell why the preemption failed for some reasons, and
those reasons could be different with the status from the main scheduling
process (the first failed plugin will hide other failures in the chain).

This change provides verbose information based on the node status generated
during pod preemption, those information helps us to diagnose the issue which
is happened during pod preemption.

Signed-off-by: Dave Chen <dave.chen@arm.com>
2021-01-15 23:20:17 +08:00
Kubernetes Prow Robot
294c352380
Merge pull request #98017 from lanzao/patch01
Fix golint issues in client/custom_metrics/scheme
2021-01-15 06:31:51 -08:00
Kubernetes Prow Robot
e1c1fd9edf
Merge pull request #97880 from justinsb/spelling
Fix spelling typos: scheduable -> schedulable
2021-01-15 03:43:51 -08:00
RA489
fe91902d08 kubeadm: Update versions for 1.21 2021-01-15 16:36:34 +05:30
10177505
2ecbf7e4f5 fix klog.Info -> klog.Infof 2021-01-15 17:22:58 +08:00
Kubernetes Prow Robot
083290d996
Merge pull request #97896 from brpratt/fix-external-name-doc
Add missing word to ServiceSpec doc
2021-01-14 23:03:51 -08:00
Kubernetes Prow Robot
857c06eb49
Merge pull request #98043 from JornShen/migrate_string_overlay_as_const
migrate winkernel network type string "overlay" as const
2021-01-14 20:43:51 -08:00
Kubernetes Prow Robot
33ee864e92
Merge pull request #97003 from ravisantoshgudimetla/remove-scheduler-preemption-test-from-conformance
make hostPort match test linuxonly
2021-01-14 19:39:51 -08:00
wzshiming
4e17e58552 Fix repeatedly aquire the inhibit lock 2021-01-15 10:49:11 +08:00
lanzao
a833a0321c Fix golint issues in client/custom_metrics/scheme 2021-01-15 10:17:12 +08:00
Kubernetes Prow Robot
4b2a98442e
Merge pull request #98081 from pjh/pigz-repair
Repair pigz URL for Windows GCE nodes
2021-01-14 18:01:51 -08:00
Kubernetes Prow Robot
da26de3167
Merge pull request #97990 from AlexanderYastrebov/offset-97651
Uses offset instead of line number in JSONSyntaxError
2021-01-14 16:49:22 -08:00
Peter Hornyack
edd58b1a4e Repair pigz URL
New Windows nodes are failing to start with:

windows-startup-script-ps1: Failed to download file from https://storage.googleapis.com/gke-release/winnode/pigz/prod/gke_windows/pigz/release/5/20201104-134221/pigz-$PIGZ_VERSION.zip.

With this fix, the nodes start successfully.
2021-01-14 16:12:05 -08:00
Kubernetes Prow Robot
bb6d0e7175
Merge pull request #97361 from h4ghhh/leaderelect
Modify LeaderElectionConfiguration .ResourceNamespace comment
2021-01-14 15:11:22 -08:00
Alexander Yastrebov
4b422f9e4c Uses offset instead of line number in JSONSyntaxError 2021-01-14 23:50:34 +01:00
ravisantoshgudimetla
32c2ec5ceb conformance changes 2021-01-14 16:40:39 -05:00
ravisantoshgudimetla
c183ac16d1 make hostPort match test linuxonly 2021-01-14 16:40:39 -05:00