weijiehu
97945adaa1
Improves unittest CC for azure_managedDiskController
2020-06-18 09:28:32 -07:00
Kubernetes Prow Robot
dcb587e09f
Merge pull request #91230 from ii/heyste-create-delete-core-v1-collection-namespaced-event-test
...
Create deleteCoreV1CollectionNamespacedEvent test+promote - +1 endpoint coverage
2020-06-18 08:12:20 -07:00
Kubernetes Prow Robot
99019502bd
Merge pull request #92234 from alejandrox1/add-cleanup-time-node-perf
...
Added a buffer period in the node performance tests
2020-06-18 06:04:10 -07:00
Kubernetes Prow Robot
3e24be51fc
Merge pull request #92220 from deads2k/crd-removal
...
fix the timeline for CRD v1beta1 removal
2020-06-18 06:04:00 -07:00
Kubernetes Prow Robot
f4e2cf7fdc
Merge pull request #92215 from chendave/declare
...
Explicitly declare the interfaces for extension points
2020-06-18 06:03:50 -07:00
Kubernetes Prow Robot
05e245ff78
Merge pull request #92209 from thockin/verify-api-group-no-gopath
...
Make verify-api-groups.sh not depend on GOPATH
2020-06-18 06:03:40 -07:00
Kubernetes Prow Robot
0bb640c25a
Merge pull request #92205 from mrunalp/fix_host_path_socket_tests
...
test: Start a pod with nc instead of execing a background command
2020-06-18 06:03:31 -07:00
Kubernetes Prow Robot
6bb668c3c4
Merge pull request #92204 from dims/check-for-either-docker-or-containerd-getting-active
...
Check for either docker or containerd getting active
2020-06-18 06:03:21 -07:00
Kubernetes Prow Robot
78b503d9f8
Merge pull request #92196 from thockin/startup-probe-blocks-readiness
...
Pods which have not "started" can not be "ready"
2020-06-18 06:03:11 -07:00
Kubernetes Prow Robot
58416f38e4
Merge pull request #92188 from gongguan/revert-instance-meta
...
revert InstanceMetadataByProviderID definition and related deprecations
2020-06-18 06:03:01 -07:00
Kubernetes Prow Robot
c83c4d5453
Merge pull request #92184 from dims/set-better-default-for-loading-images
...
Set better default commands for loading images
2020-06-18 06:02:52 -07:00
Kubernetes Prow Robot
6dced80b5a
Merge pull request #92182 from sttts/sttts-non-tcp-listener
...
apiserver: fix secure serving cast for non-tcp listeners
2020-06-18 06:02:42 -07:00
Kubernetes Prow Robot
73d6be90d3
Merge pull request #92166 from andyzhangx/GetLabelsForVolume-panic
...
fix: GetLabelsForVolume panic issue for azure disk PV
2020-06-18 06:02:32 -07:00
Kubernetes Prow Robot
37ec23c437
Merge pull request #92139 from ash2k/ash2k/fix-clientConfig-data-race
...
Fix client config data race
2020-06-18 06:02:19 -07:00
Kubernetes Prow Robot
2001383994
Merge pull request #92133 from knight42/refactor/move-kubectl-out
...
refactor: move kubectl-cp to staging
2020-06-18 06:02:05 -07:00
Kubernetes Prow Robot
d8febccacf
Merge pull request #90523 from sttts/sttts-security-contacts
...
Add myself to staging repo SECURITY_CONTACTS
2020-06-18 01:08:07 -07:00
Kubernetes Prow Robot
cf36d9b8e9
Merge pull request #90880 from ii/ii-update-and-improve-replicationcontroller-resource-lifecycle-test
...
Update and improve ReplicationController resource lifecycle test
2020-06-17 19:50:05 -07:00
alejandrox1
9263dd1f02
Added a buffer period in the node performance tests
...
The node-kubelet-flaky e2e job that runs the the
`Node Performance Testing [Serial] [Slow] [Flaky]` e2e tests have been
flaking because of inconsistencies on the cpu manager checkpoint file.
This seems to be caused because the checkpoint file is deleted (which is
what needs to happen in order to change the CPU manager policy which is
used for these e2e tests) right after the e2e tests asserts that a pod
does not exist anymore.
However, after a pod is deleted, the CPU manager may still be cleaning
up the resources used by the pod which may result in the checkpoint file
being created.
Whenever this happened, the kubelet would panic if we then try to
subsequently change the CPU manager policy to "static" from "none" or
vice versa (this is done 4 times in these tests).
Signed-off-by: alejandrox1 <alarcj137@gmail.com>
2020-06-17 18:33:44 -04:00
Anago GCB
7b0d7847ec
CHANGELOG: Update directory for v1.18.4 release
2020-06-17 19:26:38 +00:00
Anago GCB
868efab6f5
CHANGELOG: Update directory for v1.17.7 release
2020-06-17 15:39:48 +00:00
Anago GCB
1b93ae5774
CHANGELOG: Update directory for v1.16.11 release
2020-06-17 15:37:39 +00:00
Kubernetes Prow Robot
1da70ed0fc
Merge pull request #91616 from knight42/feat/port-forward-warn-udp
...
feat(port-forward): warn users about UDP port
2020-06-17 07:48:39 -07:00
David Eads
923c4b4817
fix the timeline for CRD v1beta1 removal
2020-06-17 08:26:30 -04:00
Kubernetes Prow Robot
537a602195
Merge pull request #92185 from erwinvaneyk/sample-server-fix-curl-readme
...
Fix curl instruction in the sample-apiserver README
2020-06-17 03:46:39 -07:00
Dave Chen
9ebd872e71
Explicitly declare the interfaces for extension points
...
This make it easier to catch the issue during the compilation, also,
this also align with other plugins, i.e. plugin of "InterPodAffinity".
Signed-off-by: Dave Chen <dave.chen@arm.com>
2020-06-17 15:11:44 +08:00
Kubernetes Prow Robot
53f3699cf9
Merge pull request #89778 from cmluciano/cml/ingressv1
...
ingress: Add Ingress to v1 API and update backend to defaultBackend
2020-06-16 23:10:39 -07:00
Tim Hockin
4842cb6339
Make verify-api-groups.sh not depend on GOPATH
...
This script quiently depended on being under a GOPATH, and failed
completely when it was not. This change sorts the input (to make
comparing results easier) and operates on files, rather than packages
until the last moment when we add back the package prefix.
Verified by instrumenting the code and comparing runs inside and outside
of GOPATH.
2020-06-16 21:40:09 -07:00
Tim Hockin
64d4254217
Pods which have not "started" can not be "ready"
...
Before this commit, containers which have both a `startupProbe` and a
`readinessProbe` are marked as `ready=false` during stratup, but
containers which have only a `startupProbe` are marked `ready=true`.
This doesn't make sense.
This commit only considers readiness if the container is considered to
have "started", which leaves `ready=false` while starting up.
2020-06-16 21:34:51 -07:00
Kubernetes Prow Robot
19d220073c
Merge pull request #92176 from claudiubelu/test-images/rebases-kitten-nautilus
...
test images: rebases the kitten and nautilus images
2020-06-16 19:24:31 -07:00
Kubernetes Prow Robot
1df459c2d0
Merge pull request #92174 from gongguan/event-gone
...
restore cacher event Gone tests
2020-06-16 19:24:21 -07:00
Kubernetes Prow Robot
1f629ca4a2
Merge pull request #92150 from sambdavidson/sniflagfix
...
Fix to configure-kubeapiserver.sh error.
2020-06-16 19:24:12 -07:00
Kubernetes Prow Robot
42cb4d5510
Merge pull request #92130 from chendave/InterPodAffinity_cleanup
...
cleanup: remove invalid comments in plugin of InterPodAffinity
2020-06-16 19:24:02 -07:00
Kubernetes Prow Robot
c1d7a07d14
Merge pull request #92118 from neolit123/1.19-etcd-do-not-readd-member-join
...
kubeadm: don't re-add an etcd member if it already exists on "join"
2020-06-16 19:23:52 -07:00
Kubernetes Prow Robot
78774eb5ee
Merge pull request #92078 from jingyih/update_etcd_makefile_for_3p4p9
...
Update etcd makefile to build 3.4.9 image
2020-06-16 19:23:43 -07:00
Kubernetes Prow Robot
e760ecd50f
Merge pull request #92074 from nodo/pod-added-unschedulable-pod-integration-tests
...
Test pod becoming schedulable when another pod is added or updated
2020-06-16 19:23:33 -07:00
Kubernetes Prow Robot
81f84d3a17
Merge pull request #92069 from tapih/update-json-patch
...
Update github.com/evanphx/json-patch to e83c0a1c26c884f8ec4fb743f6db9…
2020-06-16 19:23:22 -07:00
Kubernetes Prow Robot
b0638ada8c
Merge pull request #92005 from tkashem/unexpected-eof
...
retry on 'unexpected EOF' error
2020-06-16 19:23:13 -07:00
Kubernetes Prow Robot
7e073db5e0
Merge pull request #91986 from denkensk/fix-pdb-preempt
...
Computing DisruptedPods of PDB in scheduling preemption
2020-06-16 19:23:03 -07:00
Kubernetes Prow Robot
8dbca91cae
Merge pull request #91962 from aojea/udp1
...
Deflake Services should be able to preserve UDP traffic when server pod cycles for a NodePort service
2020-06-16 19:22:53 -07:00
Kubernetes Prow Robot
51aac92f69
Merge pull request #91922 from Jefftree/netproxy-009
...
Upgrade apiserver-network-proxy to v0.0.9
2020-06-16 19:22:39 -07:00
Kubernetes Prow Robot
a84784cbe5
Merge pull request #91730 from tnozicka/fix-sig-apps-owners
...
Add sig-apps-approvers and reviewers
2020-06-16 19:22:25 -07:00
Kubernetes Prow Robot
580eebb03b
Merge pull request #90944 from ii/ii-update-and-improve-configmap-resource-lifecycle-test
...
Update and improve ConfigMap resource lifecycle test
2020-06-16 19:22:05 -07:00
Mrunal Patel
7643b64050
test: Start a pod with nc instead of execing a background command
...
The behavior for exec'ing a backgrounded command is not specified
with CRI so modify the test to run the command directly instead
of using exec.
Signed-off-by: Mrunal Patel <mpatel@redhat.com>
2020-06-16 17:30:31 -07:00
Davanum Srinivas
01183e51f0
Check for either Docker or Containerd getting active for e2e_node tests
...
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2020-06-16 20:08:01 -04:00
Kubernetes Prow Robot
f455a143df
Merge pull request #91259 from ii/heyste-create-delete-core-v1-collection-namespaced-pod-template-test
...
Create deleteCoreV1CollectionNamespacedPodTemplate test+promote - +1 endpoint coverage
2020-06-16 13:46:04 -07:00
Andrea Nodari
0c23caf8e7
Test a pod becoming schedulable when a scheduled pod is updated
2020-06-16 20:39:58 +02:00
Andrea Nodari
ad0bee482e
Add test case for a pod becoming schedulable when another pod is added
2020-06-16 20:29:55 +02:00
Kubernetes Prow Robot
13f1d956ea
Merge pull request #92169 from chendave/perf_nil_pointer
...
scheduler_perf: fix the nil pointer dereference
2020-06-16 10:06:04 -07:00
gongguan
70d49ff0c7
revert InstanceMetadataByProviderID definition and deprecation of related instance functions
2020-06-16 23:40:39 +08:00
andyzhangx
d3a90d1dd0
fix#92167: GetLabelsForVolume panic issue for azure disk PV
...
fix comments
2020-06-16 14:26:23 +00:00