Kubernetes Prow Robot
514ea6f8f8
Merge pull request #83383 from wongma7/222nfs
...
Bump nfs provisioner version to v2.2.2
2019-10-02 03:03:08 -07:00
Kubernetes Prow Robot
fdd1f27ce9
Merge pull request #83390 from mborsz/revert-78466-revert-77904-revert-76396-reapply-75624
...
Revert "Revert "Revert "[Re-Apply][Distroless] Convert the GCE manifests for master containers."""
2019-10-02 01:47:07 -07:00
Maciej Borsz
2d9a9f7713
Revert "Revert "Revert "[Re-Apply][Distroless] Convert the GCE manifests for master containers."""
2019-10-02 09:22:02 +02:00
Kubernetes Prow Robot
9ac9a1d397
Merge pull request #83355 from beautytiger/dev-191001-sh-fix
...
fix wrong test in generic-resources.sh
2019-10-01 21:23:06 -07:00
draveness
9769d49bb5
feat(scheduler): remove MaxPriority in the scheduler api
2019-10-02 11:24:25 +08:00
Kubernetes Prow Robot
e31cc95276
Merge pull request #83381 from davidz627/fix/blockFail
...
Run block tests for gce-pd csi driver. Improve skip block test function name
2019-10-01 20:03:06 -07:00
Kubernetes Prow Robot
246df354a5
Merge pull request #83379 from davidz627/revert-79784-July/RemoveDeviceVolumeDir
...
Revert "Bugfix: remove PV dir when umount raw block device"
2019-10-01 18:41:23 -07:00
Kubernetes Prow Robot
125c1c100e
Merge pull request #83049 from obitech/update_pr_template_release_note_info
...
Add link to release notes documentation to PR template
2019-10-01 18:41:09 -07:00
Kubernetes Prow Robot
1fe922efcc
Merge pull request #83369 from ereslibre/feature-gates-test
...
kubeadm: add test to detect panics when given certain feature gates
2019-10-01 17:23:19 -07:00
Kubernetes Prow Robot
144708beac
Merge pull request #83109 from m3ngyang/reuse-equal
...
reuse Equal
2019-10-01 17:23:07 -07:00
Matthew Wong
74adfc31b9
Bump nfs provisioner version to v2.2.2
2019-10-01 15:46:19 -07:00
Joe Betz
1406f7adf2
Use same 'minimum resource version' semantics both when watch cache is enabled and disabled
2019-10-01 15:29:31 -07:00
Kubernetes Prow Robot
8b611ac7df
Merge pull request #83370 from nikhita/bob-guin-reviewers
...
.github: add guineveresaenger and mrbobbytables as reviewers
2019-10-01 15:27:21 -07:00
Kubernetes Prow Robot
867fef5851
Merge pull request #82424 from jsafrane/mount-propagation-remove-ssh
...
Use pod + nsenter instead of SSH in mount propagation tests
2019-10-01 15:27:08 -07:00
David Zhu
8ff56a50a2
Run block tests for gce-pd csi driver. Improve skip block test function name
2019-10-01 15:23:19 -07:00
David Zhu
8970ec8fa7
Revert "Bugfix: remove PV dir when umount raw block device"
2019-10-01 15:14:35 -07:00
Angela Li
c06413b6f1
Fix sig-node test by adding back the numNodes
2019-10-01 13:59:38 -07:00
Kubernetes Prow Robot
dc0013a506
Merge pull request #83365 from notpad/feature/83244
...
A consistent interface for plugin extended functionality
2019-10-01 13:01:11 -07:00
Kubernetes Prow Robot
acd9141e76
Merge pull request #83333 from lavalamp/unbufferedchannel
...
Don't leak a go routine on panic
2019-10-01 13:01:00 -07:00
Kubernetes Prow Robot
9d59ed80f5
Merge pull request #83262 from Huang-Wei/sched-extender-api-refactor
...
Refactor scheduler extender-related API fields
2019-10-01 13:00:50 -07:00
Kubernetes Prow Robot
2f964248f9
Merge pull request #81904 from mattjmcnaughton/mattjmcnaughton/fix-staticcheck-test-utils
...
Fix staticcheck failures in `test/utils/...`
2019-10-01 13:00:37 -07:00
Patrick Ohly
72609fc5f4
bazel update
2019-10-01 21:30:12 +02:00
Patrick Ohly
4620d0b2b8
e2e log: move back to framework, part II
...
This continues the work in
https://github.com/kubernetes/kubernetes/pull/81426 by also moving the
logger_test.go, moving the log helper code from util.go to log.go (a
more logical place, as it is only used there) and updating comments.
2019-10-01 21:30:12 +02:00
Nikhita Raghunath
21dba90e69
.github: add guineveresaenger and mrbobbytables as reviewers
...
Guin and Bob have consistently provided valuable reviews for PRs
touching the issue and PR templates in the past.
2019-10-02 00:59:38 +05:30
Patrick Ohly
ecd7ae55bc
e2e log: Ginkgo 1.10.1 fixes stack skip
...
Now Ginkgo properly skips the initial stack entry.
2019-10-01 21:27:29 +02:00
Patrick Ohly
f70c81c9f2
e2e log: consistent logging of stack backtrace and failure, part II
...
After merging
259bb3bef5 (diff-eb7b79470992813ea1905e96c298b47b)
ExpectEqual and some of the other wrappers logged the failure twice,
once inside the wrapper itself and once in the failure handler.
Logging the stack backtrace is useful because many assertions still
don't contain an explanation and therefore knowing where they occur is
crucial. Now all failures are logged with a "Full Stack Trace", not
just those with a wrapper. The stack is pruned to skip over wrapper
functions and removes Ginkgo internal functions to keep the stack
trace smaller.
Failures occuring in the wrappers were recorded as occuring in those
wrappers. Now the wrappers are skipped and the caller is recorded
instead.
The full stack trace recorded by Ginkgo 1.10.0 is currently off by one
entry. This needs to be fixed in Ginkgo, then the test can be updated.
2019-10-01 21:27:29 +02:00
Patrick Ohly
6cecc0ab37
e2e log: skip log.Failf in stack information
...
The function itself isn't relevant.
2019-10-01 21:25:59 +02:00
Patrick Ohly
02ce619078
e2e log: fix full stacktrace with Ginkgo 1.10.0
...
Ginkgo 1.10.0 includes the relevant fix for dumping the full stack
(https://github.com/onsi/ginkgo/pull/590 ), so when using that release
we can simplify the logging unit test.
By changing the skipping, we can avoid the rather volatile util.go
entries. However, that gomega is part of the stack trace still needs
to be fixed in Gingko.
2019-10-01 21:25:59 +02:00
Rafael Fernández López
cd1ad5646e
kubeadm: add test to detect panics when given certain feature gates
...
This integration test allows us to detect if a given feature gate will
panic kubeadm. This builds on the assumption that a golang panic makes
the process exit with the code 2.
These tests are not trying to check if the init process succeeds or
not, their only purpose is to ensure that the exit code of the
`kubeadm init` invocation is not 2, thus, reflecting a golang panic.
Some refactors had to be made to the test code, so we return the exit
code along with stdout and stderr.
2019-10-01 20:37:37 +02:00
obitech
d13878c3f6
Add link to release notes documentation to PR template
2019-10-01 20:22:42 +02:00
Kubernetes Prow Robot
5219ad7be2
Merge pull request #82105 from logicalhan/admission-test
...
Explicitly handle returned error values in admission metrics_test
2019-10-01 11:03:50 -07:00
Kubernetes Prow Robot
7878160a97
Merge pull request #81914 from wojtek-t/cache_serializations_across_watchers
...
Cache serializations across watchers
2019-10-01 11:03:35 -07:00
mengyang02
b116585b22
remove redundant quota.V1Equals
2019-10-02 01:02:09 +08:00
Wei Huang
a01259ef6f
bazel and codegen files
2019-10-01 09:51:40 -07:00
Wei Huang
cbdb4e3fdb
refactor scheduler extender related API
...
- move extender related API from pkg/scheduler/api to pkg/scheduler/apis/extender/v1
- alias extenderv1 to pkg/scheduler/apis/extender/v1
- use NodeScore and NodeScoreList in non-extender logic
2019-10-01 09:51:24 -07:00
Daniel Smith
a4ae7b9081
Don't leak a go routine on panic
2019-10-01 09:48:00 -07:00
Kubernetes Prow Robot
af67b2cbce
Merge pull request #83350 from soltysh/cp_fix
...
Update symlink warning
2019-10-01 09:35:47 -07:00
Kubernetes Prow Robot
40d4ddc7e5
Merge pull request #83192 from liggitt/improve-token-request-error
...
Improve error message for projected tokens when API is not enabled
2019-10-01 09:35:34 -07:00
Mark Wolters
f7bf17bc2f
Switch from admission-control flag to enable-admission-plugins
2019-10-01 09:21:33 -07:00
notpad
fc55e74741
A consistent interface for plugin extended functionality
2019-10-01 23:59:48 +08:00
Kubernetes Prow Robot
2ebcd2509c
Merge pull request #83110 from deads2k/finalizer-ordering
...
explain why finalizers are not processed in order
2019-10-01 06:51:34 -07:00
David Eads
51195dd860
add ability to authenticators for dynamic update of certs
2019-10-01 09:50:20 -04:00
mattjmcnaughton
42f8596b13
Fix staticcheck failures in test/utils/...
...
The `err` return value was being overwritten in an unintended way, which
means the function may not return the proper error value. This diff
ensures it does.
2019-10-01 09:46:45 -04:00
David Eads
f14f4c933e
add ability to pre-configure poststarthooks for apiservers
2019-10-01 09:08:18 -04:00
Guangming Wang
c0a4c09040
fix wrong test in generic-resources.sh
...
Signed-off-by: Guangming Wang <guangming.wang@daocloud.io>
2019-10-01 20:45:17 +08:00
David Eads
8f78484ced
generated
2019-10-01 08:32:09 -04:00
David Eads
781b5095d5
explain lack of finalizer ordering in godoc
2019-10-01 08:24:56 -04:00
Kubernetes Prow Robot
c2c821534b
Merge pull request #81093 from johnSchnake/useImageUtilsForLookup
...
Use imageutils instead of hardcoded image paths
2019-10-01 02:37:32 -07:00
Maciej Szulik
99448d2283
Update symlink warning
2019-10-01 10:36:02 +02:00
Kubernetes Prow Robot
78940cd5ef
Merge pull request #81419 from mgdevstack/checkServiceReachability
...
Update e2e testing nodePort service listening on same port but different protocols
2019-10-01 01:21:40 -07:00