Kubernetes Prow Robot
c7619bd770
Merge pull request #80824 from damemi/preemption-e2e-to-integration
...
Move PodPriorityResolution e2e to integration
2019-09-20 12:27:25 -07:00
Mike Dame
ca18b48151
Move PodPriorityResolution e2e to integration
2019-09-19 20:25:03 -04:00
Kubernetes Prow Robot
a54dba0d84
Merge pull request #81856 from damemi/ravig-fix-tbe
...
Convert TaintBasedEvictions e2e to integration test
2019-09-18 14:49:01 -07:00
ravisantoshgudimetla
7e1794dcb1
Convert tbe e2e to integration test
2019-09-18 13:24:54 -04:00
WanLinghao
a6f5d99409
Refactor and clean up e2e framework utils. This patch handles test/e2e/framework/pv_util.go file
2019-09-18 17:57:13 +08:00
Kubernetes Prow Robot
e60fd899e4
Merge pull request #81982 from s-ito-ts/81427_e2e_scheduling
...
Use log functions of core framework on test/e2e/scheduling
2019-09-11 02:49:25 -07:00
s-ito-ts
4c69199aaa
e2e test: Label all nodes in pod anti-affinity test.
2019-09-02 09:42:11 +00:00
s-ito-ts
8745f02015
Use log functions of core framework on test/e2e/scheduling
2019-08-30 06:27:42 +00:00
Kubernetes Prow Robot
acf5411774
Merge pull request #81108 from oomichi/issue/81103
...
Make nodeList schedulable
2019-08-29 02:55:57 -07:00
alejandrox1
7c161d6a5f
Refactoring pod related functions from pv_util to pod pkg
...
Moving pod related functions from e2e/framework/pv_util.go to
e2e/framework/pod in order to allow refactoring of pv_util.go into its
own package.
Signed-off-by: alejandrox1 <alarcj137@gmail.com>
2019-08-27 12:27:45 -04:00
Alexey Kremsa
ff7b07c43c
removed equivalence cache tests
...
fix build
2019-08-22 14:55:30 +03:00
Mike Dame
a9f1314b60
Taints and tolerations e2e test re-work
...
Includes the changes from #80922 (that were reverted), and updates the test to appropriately add intolerable taints to all nodes except the target node
2019-08-15 11:00:24 -04:00
Kubernetes Prow Robot
43fa5ca693
Merge pull request #81087 from johnSchnake/addSkipsIfSSHNotPresent
...
Ensure tests which rely on SSH behavior are skipped if unavailable
2019-08-13 07:56:07 -07:00
RaviSantosh Gudimetla
afce8f7f44
Revert "Toleration priority function score computation"
2019-08-12 12:03:04 -04:00
Kenichi Omichi
e8c41b8892
Remove printOnce() on e2e tests
...
Originally, printOnce() was implemented for printing debugging message
once for checking actual value is the same as expected value.
However even if an error doesn't happen in ExpectEqual(), printOnce()
is called internally. Then the second ExpectEqual() doesn't output
the debugging message if an error happens. This makes debugging
difficult, let's just remove it for debugging.
2019-08-08 07:29:56 +00:00
John Schnake
37212fa934
Ensure tests which rely on SSH behavior are skipped if unavailable
...
A number of tests rely on SSH behavior but are not marked with
SkipUnlessSSHKeysPresent(). This means that the tests will run and
hang. This can be confusing for users because they may not know why
the tests failed. Instead, we should be reporting on the known issue
and skipping the test (hence why the helper Skip... function exists).
2019-08-07 10:24:39 -05:00
Kenichi Omichi
7f949e1fcc
Make nodeList schedulable
...
The conformance test "validates resource limits of pods that are
allowed to run" is failed if master node doesn't have taints.
The reason is that nodeList which should consist of schedulable
nodes is gotten with GetMasterAndWorkerNodes() and master nodes
were excluded from nodeList.
This makes nodeList be gotten with GetReadySchedulableNodesOrDie()
and nodeList can consist of schedulable nodes.
2019-08-07 10:34:52 +00:00
Kubernetes Prow Robot
64a67184ce
Merge pull request #80654 from spiffxp/promote-taint-e2e-tests
...
Promote taint-based eviction e2e tests to Conformance
2019-08-06 21:05:43 -07:00
Kubernetes Prow Robot
3fdf5cf2ac
Merge pull request #80879 from ravisantoshgudimetla/fix-taint-manager
...
Wait for pods to be running before eviction starts
2019-08-05 19:58:07 -07:00
Kubernetes Prow Robot
f18d1ad6c1
Merge pull request #80821 from damemi/duplicate-e2e
...
Remove duplicate scheduler anti-affinity preemption e2e
2019-08-05 18:18:06 -07:00
Kubernetes Prow Robot
a56f3ed0b8
Merge pull request #80706 from WanLinghao/refactor_e2e_kubelet_stats
...
Refactor and clean up e2e framework utils, this patch handles test/e2e/framework/kubelet_stats.go file
2019-08-05 13:36:16 -07:00
ravisantoshgudimetla
7c53ccfd68
Toleration priority function score computation
...
I think, if a pod doesn't have any tolerations, we don't prefer node without taints to
the one which has taints in https://github.com/kubernetes/kubernetes/blob/master/pkg/scheduler/algorithm/priorities/taint_toleration.go#L29 , so there is no point in testing that particular functionality. The side effect of the above is, since we're going round-robin in every scheduling cycle sometimes we're choosing first node and in the next cycle we'd move onto next node(where taints are not being applied), so it's causing problem unnecessarily
2019-08-02 14:18:25 -07:00
ravisantoshgudimetla
b4ea510529
Wait for pods to be running before eviction starts
2019-08-02 11:00:26 -07:00
WanLinghao
92b0310cc5
Refactor and clean up e2e framework utils, this patch handles test/e2e/framework/kubelet_stats.go file
2019-08-01 17:40:02 +08:00
Mike Dame
66b7d86a2f
Remove duplicate scheduler anti-affinity preemption e2e
2019-07-31 14:40:02 -04:00
Kubernetes Prow Robot
0f32f9ef0e
Merge pull request #77100 from chardch/add-driver-version
...
Emit the nvidia driver version in gpu e2e test
2019-07-27 00:49:57 -07:00
Kenichi Omichi
c6c274e8c9
Add message which shows how much CPU used
...
"validates resource limits of pods that are allowed to run" test of
conformance tests are flake on some local environments.
The CPU workload pods don't seem work well and nodes have still CPU
capacity after running the workload pods. Then the conformance test
failed unexpectedly.
This adds message which shows how much CPU used by the workload pods
for investigating it easily.
2019-07-27 02:13:52 +00:00
Aaron Crickenberger
e0750bd8db
Promote taint-based eviction e2e tests to Conformance
2019-07-26 11:50:25 -07:00
Kubernetes Prow Robot
cc0137cdc6
Merge pull request #80398 from aojea/ipfamily
...
Add ip family autodetection to the testing framework
2019-07-25 18:12:00 -07:00
Kubernetes Prow Robot
0ba6ecca72
Merge pull request #77155 from draveness/feature/refactor-util-service
...
refactor: move service related functions in service pkg
2019-07-23 15:52:15 -07:00
Antonio Ojea
54f81c3bb8
add ipv6 support to the hostport/HostIP e2e test
2019-07-23 22:55:38 +02:00
Kubernetes Prow Robot
65b094676f
Merge pull request #78350 from globervinodhn/hostip_hostport_promote
...
Promote existing E2Es for hostport/HostIP resolution to conformance
2019-07-19 14:25:24 -07:00
Kubernetes Prow Robot
15ade86935
Merge pull request #79921 from s-ito-ts/remove_unnecessary_check
...
e2e test: Remove unnecessary return value check
2019-07-19 00:19:11 -07:00
draveness
c38ae01f8e
feat: move service_util to separated package
2019-07-19 08:32:39 +08:00
Jiatong Wang
e24a962821
Fix error log issue, remove OrDie suffix in methods naming
2019-07-17 23:18:21 -07:00
Jiatong Wang
0b37152f17
Refactor and Move node related methods to framework/node package
...
Signed-off-by: Jiatong Wang <wangjiatong@vmware.com>
2019-07-17 22:54:15 -07:00
Kubernetes Prow Robot
d0dc9c84c0
Merge pull request #76328 from pontiyaraja/limitRangeCNF
...
removed flaky watch code and added NewIndexerInformerWatcher for LimitRange test case
2019-07-15 16:33:25 -07:00
draveness
d3158b2c71
feat: use framework.ExpectNotEqual in e2e test
2019-07-10 21:36:26 +08:00
Pandiyaraja Ramamoorthy
ecf3bb0c03
removed flaky watch code and added NewIndexerInformerWatcher
2019-07-10 00:02:04 +05:30
s-ito-ts
0f8b7c92f3
Remove unnecessary return value check
2019-07-09 05:58:43 +00:00
s-ito-ts
e7752f72e4
Use framework.ExpectEqual() under e2e/scheduling
2019-07-04 08:51:24 +00:00
Kubernetes Prow Robot
b959e9a25a
Merge pull request #79322 from s-ito-ts/e2e_ephemeral_storage
...
e2e test: change from milli bytes to bytes in ephemeral-storage resource limits
2019-07-02 00:57:08 -07:00
Kubernetes Prow Robot
d3be556e1c
Merge pull request #77150 from chardch/gpu-test-pod-number
...
Only create one pod per node with gpus in E2E test
2019-07-01 15:09:07 -07:00
Kubernetes Prow Robot
8e55b5dd40
Merge pull request #79392 from Bowenislandsong/master
...
adding pre-condition for an e2e scheduler test
2019-06-28 12:43:44 -07:00
Bowen Song
d39453c35e
Adding an if statement to check the number of worker nodes available before running a test that needs 2 nodes.
...
Checking avoids error assertion in function 'CreateHostPortPods' to fail.
2019-06-28 09:25:39 -04:00
Richard Chen
9368b2ce87
Only create one pod per gpu node in E2E test
2019-06-27 13:40:35 -07:00
Claudiu Belu
c752ea8134
tests: Replaces images used with agnhost (part 3)
...
Quite a few images are only used a few times in a few tests. Thus,
the images are being centralized into the agnhost image, reducing
the number of images that have to be pulled and used.
This PR replaces the usage of the following images with agnhost:
- audit-proxy
- crd-conversion-webhook
- entrypoint-tester
- inclusterclient
- iperf
- porter
- serve-hostname
2019-06-26 13:33:55 -07:00
s-ito-ts
ea06a1c936
change from milli bytes to bytes in ephemeral-storage resource limits
2019-06-24 02:29:53 +00:00
Kubernetes Prow Robot
dc8b928136
Merge pull request #79162 from SataQiu/fix-test-20190619
...
Refactor: replace framework.Failf with e2elog.Failf
2019-06-21 12:17:04 -07:00
Aaron Crickenberger
9d5aac1845
add import-alias for k8s.io/api/scheduling/v1
2019-06-20 11:40:47 -07:00
Aaron Crickenberger
b8d0ce4019
add import-alias for k8s.io/api/core/v1
2019-06-20 11:40:15 -07:00
SataQiu
332be4b1e3
refactor: replace framework.Failf with e2elog.Failf
2019-06-19 17:52:35 +08:00
Richard Chen
794ec63bbd
Output the nvidia gpu information in the E2E test.
...
Including the gpu information simplifies driver version verification.
nvidia-smi is used in order to display gpu information, which contains the driver version.
2019-06-18 17:11:19 -07:00
Jiatong Wang
b1c346c295
Move node related methods to framework/node package
...
- Add a package "node" under e2e/framework and alias e2enode;
- Rename some functions whose name have redundant string.
Signed-off-by: Jiatong Wang <wangjiatong@vmware.com>
2019-06-17 16:59:07 -07:00
Kubernetes Prow Robot
34b66e5225
Merge pull request #78771 from ravisantoshgudimetla/tbe-allow-localaddress
...
Allow master nodes to be accessed from private ips
2019-06-14 15:26:34 -07:00
Kubernetes Prow Robot
e2c5243d77
Merge pull request #77840 from mgdevstack/master-registry-utils
...
Add references of registry and image from imageutils
2019-06-14 00:28:47 -07:00
ravisantoshgudimetla
64bb6337d0
Allow master nodes to be accessed from private ips
2019-06-06 14:38:05 -04:00
globervinodhn
faf5cda046
Promote existing E2Es for hostport/HostIP resolution to conformance
2019-06-06 11:39:27 +05:30
Mayank Gaikwad
3377737af2
Add references of registry and image from imageutils
2019-05-31 14:27:07 +05:30
Jorge Alarcon Ochoa
4969a05327
Refactored pod-related functions from framework/util.go
...
This a refactoring of framework/utils.go into framework/pod.
Signed-off-by: Jorge Alarcon Ochoa <alarcj137@gmail.com>
2019-05-30 09:30:26 -04:00
Kubernetes Prow Robot
350c309da4
Merge pull request #78284 from SataQiu/test-e2e-refactor-20190524
...
[e2e] Refactor: cleanup Logf from framework/util
2019-05-29 05:33:15 -07:00
SataQiu
d3a902ff5b
e2e refactor: cleanup Logf form framework/util
2019-05-24 16:39:46 +08:00
Kenichi Omichi
496a18febc
Add hack/verify-test-code.sh
...
This script checks coding style for test code.
It is useful to enforce developers to use framework methods for
keeping readable test code for example.
2019-05-22 14:15:25 +00:00
Kubernetes Prow Robot
c2633d8969
Merge pull request #77890 from oomichi/use-ExpectNoError-scalability
...
Use ExpectNoError() for scalability and scheduling
2019-05-22 02:40:25 -07:00
Richard Chen
2a70a0b424
Add an e2e test for running a gpu job interrupted by node recreation.
2019-05-16 11:41:01 -07:00
Kenichi Omichi
48f1f74a51
Use ExpectNoError() for scalability and scheduling
...
The e2e test framework has ExpectNoError() for readable test code.
This replaces Expect(err).NotTo(HaveOccurred()) with it.
2019-05-15 20:19:25 +00:00
danielqsj
ccecc67a5b
fix golint error in test/e2e/scheduling
2019-05-14 14:18:52 +08:00
danielqsj
4cb4864487
replace test error checking with more readable way
2019-05-14 14:17:20 +08:00
danielqsj
15a4342fe8
remove dot imports in e2e/scheduling
2019-05-14 14:17:20 +08:00
draveness
da7507500f
refactor: use e2elog.Logf instead of framework.Logf
2019-05-07 08:15:31 +08:00
Kubernetes Prow Robot
6cd85298c5
Merge pull request #75566 from jiayingz/gpu-test-update
...
Update test/e2e/scheduling/nvidia-gpus to also run cuda10 vector add.
2019-04-24 14:20:47 -07:00
Kubernetes Prow Robot
ed2bdd53dc
Merge pull request #76409 from draveness/feature/refactor-framework-rs-util
...
refactor: cleanup e2e replicaset utils
2019-04-12 00:41:43 -07:00
draveness
dee97a4e5c
refactor: cleanup e2e replicaset utils
2019-04-12 01:48:10 +08:00
Jiatong Wang
7814865b40
Move gpu_util.go to e2e/framework/gpu
2019-04-10 14:30:24 -07:00
Kubernetes Prow Robot
3ec638d3cd
Merge pull request #75905 from ravisantoshgudimetla/fix-priorities
...
Fix usage priority fraction in priorities e2e test
2019-04-10 07:08:17 -07:00
ravisantoshgudimetla
074bbb0434
Build file
2019-04-08 15:53:54 -04:00
Kubernetes Prow Robot
f0ea0fccdf
Merge pull request #75909 from ravisantoshgudimetla/fix-hostname
...
Fix nodeSelector hostname
2019-04-03 14:55:01 -07:00
ravisantoshgudimetla
3a4a69280b
Fix nodeSelector hostname
2019-03-29 20:01:45 -04:00
ravisantoshgudimetla
346f97c048
Ignore BE pods while evaluating
2019-03-29 18:35:31 -04:00
ravisantoshgudimetla
a6055b5c26
Fix usage priority fraction
2019-03-29 17:56:42 -04:00
Andrew Sy Kim
1470df7a05
remove usages of internal clientset in e2e framework
...
Signed-off-by: Andrew Sy Kim <kiman@vmware.com>
2019-03-28 21:13:40 -04:00
Jiaying Zhang
54c2c2690c
Update test/e2e/scheduling/nvidia-gpus to also run cuda10 vector add.
2019-03-21 16:29:47 -07:00
Seth Jennings
6db621589c
test/e2e: fix PreemptionExecutionPath nodeSelector
2019-03-13 17:20:34 -05:00
Kubernetes Prow Robot
596a48dd64
Merge pull request #74945 from liucimin/fix_e2e_test_typo
...
Typo fix in e2e test description message: defaut->default
2019-03-05 14:54:45 -08:00
liucimin
2179ca23c8
Typo fix in e2e test description message: defaut->default
2019-03-05 15:56:05 +08:00
Kubernetes Prow Robot
646145f578
Merge pull request #74125 from tuanvcw/fixing_typo
...
Fix many typos in both code and comments
2019-03-01 14:08:45 -08:00
Wei Huang
f1e2884275
print out verbose info for a scheduler e2e test
2019-02-28 15:00:13 -08:00
Vu Cong Tuan
c747b7f38d
Fix many typos in both code and comments
...
Signed-off-by: Vu Cong Tuan <tuanvc@vn.fujitsu.com>
2019-02-27 14:41:02 +07:00
Bobby (Babak) Salamat
59da8af4b4
update e2e tests to use scheduling V1 API
2019-02-22 10:51:15 -08:00
Bobby (Babak) Salamat
1dac6d03e3
generated files
2019-02-22 10:51:15 -08:00
Kubernetes Prow Robot
b50c643be0
Merge pull request #73540 from rlenferink/patch-5
...
Updated OWNERS files to include link to docs
2019-02-08 09:05:56 -08:00
Davanum Srinivas
b975573385
move pkg/kubelet/apis/well_known_labels.go to staging/src/k8s.io/api/core/v1/
...
Co-Authored-By: Weibin Lin <linweibin1@huawei.com>
Change-Id: I163b2f2833e6b8767f72e2c815dcacd0f4e504ea
2019-02-05 13:39:07 -05:00
Roy Lenferink
b43c04452f
Updated OWNERS files to include link to docs
2019-02-04 22:33:12 +01:00
Wei Huang
5492e2f8c3
move resource_quota e2e test to apimachinery folder
2018-12-27 10:45:41 -08:00
Jordan Liggitt
0ff455e340
generated files
2018-12-19 11:19:12 -05:00
Jordan Liggitt
fd9e9b01b1
Remove uses of extensions/v1beta1 clients
2018-12-19 11:18:53 -05:00
k8s-ci-robot
dda9637f94
Merge pull request #71281 from Huang-Wei/preemption-e2e-test
...
Preemption e2e test
2018-11-30 08:19:59 -08:00
Wei Huang
f9f588f052
address comments
2018-11-29 10:29:39 -08:00
k8s-ci-robot
e5326f22ea
Merge pull request #70471 from xichengliudui/fix181031
...
Fix some typos
2018-11-29 00:48:16 -08:00
Wei Huang
4ce10eda64
cleanup PriorityClass after each test
2018-11-20 11:00:27 -08:00
Wei Huang
c1e7ab07bd
add an e2e test to verify preemption running path
2018-11-20 08:52:17 -08:00
k8s-ci-robot
3f5db92840
Merge pull request #68812 from WanLinghao/token_projection_ca_secret_create
...
Create Ca-certificate configmap used by token projected volume
2018-11-08 10:57:25 -08:00
WanLinghao
efac533f92
To inject ca.crt into container when projected volume was specified, configmap should be created in each namespace.
...
This patch add a controller called "root-ca-cert-publisher" to complete above job as well as some bootstrap rbac policies.
2018-11-08 11:33:47 +08:00
Justin SB
0400871df9
e2e: block all master addresses
...
This way we can be sure that the kubelet can't communicate with the
master, even if falls-back to the internal/external IP (which seems to
be the case with DNS)
Issue #56787
2018-11-05 22:35:19 -05:00
k8s-ci-robot
6b2a01709c
Merge pull request #69796 from Huang-Wei/e2e-TaintBasedEvictions
...
add e2e tests for TaintBasedEvictions
2018-11-02 20:11:28 -07:00
ravisantoshgudimetla
2a7e92e11d
Build file generated
2018-11-02 14:13:16 -04:00
ravisantoshgudimetla
0308d24df7
Remove resource priority limit e2e function
2018-11-02 14:12:18 -04:00
k8s-ci-robot
a525a2b4ee
Merge pull request #70401 from ravisantoshgudimetla/fix-e2e-node-capacity
...
Fix capacities as well
2018-11-01 09:53:04 -07:00
k8s-ci-robot
215234d3a3
Merge pull request #67778 from gyuho/typo
...
staing/apimachinery: fix typo "perfer" to "prefer"
2018-11-01 03:21:02 -07:00
xichengliudui
8477389e7c
Fix some types
...
Fix some typos
2018-10-31 04:05:25 -04:00
Wei Huang
ca10e616bf
add e2e tests for TaintBasedEvictions
2018-10-30 10:40:05 -07:00
ravisantoshgudimetla
dd06ca7631
Fix capacities as well
2018-10-30 13:26:41 -04:00
Gyuho Lee
1adb8100ba
staing/apimachinery: fix typo "perfer" to "prefer"
...
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
2018-10-27 20:29:54 -07:00
ravisantoshgudimetla
fedfddcb21
Build files
2018-10-27 19:06:24 -04:00
ravisantoshgudimetla
e47d587bee
Fix e2e node status updates
2018-10-27 19:04:52 -04:00
ravisantoshgudimetla
c0a8d4702a
Fix e2e test and build file
2018-10-26 13:48:51 -04:00
ravisantoshgudimetla
fad6b326e3
Fix default algorithm provider priority insertion
2018-10-26 13:48:44 -04:00
k8s-ci-robot
8b36038b41
Merge pull request #68483 from pohly/e2e-refactor-pr
...
e2e refactor
2018-10-19 12:32:01 -07:00
ravisantoshgudimetla
ba71ae7227
E2E and build file generated
2018-10-16 12:58:38 -04:00
Wei Huang
8726ed29ef
enable and improve e2e of NoExecuteTaintManager
...
- e2e test file cannot end with "_test.go". rename "taints_test.go" to "taints.go"
- test multiple pods case
2018-10-15 16:02:05 -07:00
Wei Huang
328f63179e
use k8s.gcr.io/pause instead of kubernetes/pause
2018-10-11 11:39:57 -07:00
Patrick Ohly
97101a6a86
e2e: update bazel BUILD files
...
Generated via hack/update-bazel.sh.
2018-10-11 11:36:25 +02:00
Patrick Ohly
8b17db7e0c
e2e: modular framework
...
Not all users of the E2E framework want to run cloud-provider specific
tests. By splitting out the code it becomes possible to decide in
a E2E test suite which providers are supported.
This is achieved in two ways:
- the framework calls certain functions through a provider
interface instead of calling specific cloud provider functions
directly
- tests that are cloud-provider specific directly import the
new provider packages
The ingress test utilities are only needed by a few tests. Splitting
them out into a separate package makes the framework simpler for test
suites not using those tests.
Fixes : #66649
2018-10-11 11:16:11 +02:00
Christoph Blecker
97b2992dc1
Update gofmt for go1.11
2018-10-05 12:59:38 -07:00
Chris O'Haver
9060fc6e6d
add opt to track dns pods
2018-10-01 10:00:16 -04:00
k8s-ci-robot
bcc23dfdc1
Merge pull request #68621 from jcsirot/fix-deleting-critical-pod
...
Move pod created into kube-system namespace delete call into a defer …
2018-09-29 07:58:07 -07:00
k8s-ci-robot
01379fe61e
Merge pull request #69022 from k82cn/k8s_68987
...
Got allocatable GPUs.
2018-09-27 15:53:19 -07:00
k8s-ci-robot
3fe21e5433
Merge pull request #68922 from BenTheElder/version-staging
...
move pkg/util/version to staging
2018-09-26 22:59:42 -07:00
k8s-ci-robot
0805860dba
Merge pull request #67870 from yue9944882/refactor/externalize-resource-quota-admission-controller
...
Externalize resource quota admission controller & controller reconciliation
2018-09-25 02:41:40 -07:00
Da K. Ma
adbdbdec49
Got allocatable GPUs.
...
Signed-off-by: Da K. Ma <klaus1982.cn@gmail.com>
2018-09-25 12:33:42 +08:00
Benjamin Elder
8b56eb8588
hack/update-gofmt.sh
2018-09-24 12:21:29 -07:00
Benjamin Elder
f828c6f662
hack/update-bazel.sh
2018-09-24 12:03:24 -07:00
Benjamin Elder
088cf3c37b
find & replace version import
2018-09-24 12:03:24 -07:00
Jean-Christophe Sirot
52f87963a4
Move pod created into kube-system namespace delete call into a defer block to be sure the clean-up is done even when the test failed
...
Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com>
2018-09-13 14:36:51 +02:00
Bobby (Babak) Salamat
607b99666c
Remove feature tag from ScheudulerPreemption tests
2018-09-10 11:14:49 -07:00
Kubernetes Submit Queue
59bcf0dadf
Merge pull request #67950 from dims/remove-e2e-image-puller
...
Automatic merge from submit-queue (batch tested with PRs 67950, 68195). If you want to cherry-pick this change to another branch, please follow the instructions here: https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md .
Remove e2e-image-puller
**What this PR does / why we need it**:
A long time ago, We added the image prepulling as a workaround due to
the overwhelming amount of flake caused by pulling during the tests.
This functionality has been broken for a while now when we switched to a
COS image where mounting `docker` binary into `busybox` stopped working.
So we just have dead code we should clean up.
Change-Id: I538171a5c1d9361eee7f9e0a99655b88b1721e3e
**Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
Fixes #63355
**Special notes for your reviewer**:
**Release note**:
```release-note
NONE
```
2018-09-07 11:19:36 -07:00
Davanum Srinivas
ae0dde5c7d
Remove e2e-image-puller
...
A long time ago, We added the image prepulling as a workaround due to
the overwhelming amount of flake caused by pulling during the tests.
This functionality has been broken for a while now when we switched to a
COS image where mounting `docker` binary into `busybox` stopped working.
So we just have dead code we should clean up.
Change-Id: I538171a5c1d9361eee7f9e0a99655b88b1721e3e
2018-09-03 20:43:54 -04:00
Di Xu
e6f32eea74
verifying LimitRange update is effective before creating new pod
2018-09-01 17:40:29 +08:00
yue9944882
7f1ef6672c
align imports for test
2018-08-27 21:50:30 +08:00
Kubernetes Submit Queue
d67a03183a
Merge pull request #67687 from Lion-Wei/remote-reschrduler
...
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md ">here</a>.
remove rescheduler since scheduling DS pods by default scheduler is moving to beta
**What this PR does / why we need it**:
remove rescheduler since scheduling DS pods by default scheduler is moving to beta
**Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
Fixes #64725
**Special notes for your reviewer**:
**Release note**:
```release-note
Remove rescheduler since scheduling DS pods by default scheduler is moving to beta.
```
2018-08-23 12:32:17 -07:00
liangwei
5ea138f4e9
remove rescheduler
2018-08-22 11:49:14 +08:00
linyouchong
d7b7fdd0dc
Make log more readable
2018-08-16 17:31:02 +08:00
tanshanshan
43a5091fc6
remove getZoneNames func
2018-08-11 15:36:07 +08:00
vikaschoudhary16
8fbf964898
Add e2e tests for test scope selectors with non-priorityclass scopes
2018-08-02 08:20:59 -04:00
Kubernetes Submit Queue
c6de629bc5
Merge pull request #64645 from aveshagarwal/master-quota-priority-e2e
...
Automatic merge from submit-queue (batch tested with PRs 64645, 66832). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md ">here</a>.
Add e2e tests for resource quota's priority class scope.
This pr is built on top of https://github.com/kubernetes/kubernetes/pull/57963 .
@vikaschoudhary16 @sjenning @derekwaynecarr @bsalamat
@kubernetes/sig-scheduling-pr-reviews
```release-note
None
```
2018-08-01 17:12:59 -07:00
Srini Brahmaroutu
9bb3332c63
Adding details to Conformance Tests using RFC 2119 standards.
2018-07-25 14:46:28 -07:00
Bobby (Babak) Salamat
0daedee0de
Change our tests to ensure that critical system pods are created in the system namespace
2018-06-28 22:25:27 -07:00
Rohit Agarwal
af3bc705b5
Remove COS requirement while running e2e nvidia gpu tests.
2018-06-26 12:12:06 -07:00
Jeff Grafton
23ceebac22
Run hack/update-bazel.sh
2018-06-22 16:22:57 -07:00
Clayton Coleman
e9245b0903
Do not error out on pods in kube-system
...
Scheduling tests are too aggressive about the health of kube-system.
2018-06-11 22:15:56 -04:00