k8s-ci-robot
409871ecae
Merge pull request #69310 from liggitt/remove-etcd2
...
Remove etcd2 storage backend
2018-10-04 13:40:00 -07:00
k8s-ci-robot
166490a473
Merge pull request #69103 from pohly/testfiles
...
E2E: handling extra files
2018-10-04 13:39:49 -07:00
k8s-ci-robot
c568da3ab4
Merge pull request #69384 from oomichi/add-distros
...
Update options of master/node-os-distro
2018-10-04 10:09:45 -07:00
Jordan Liggitt
ad46728158
Switch e2e_node to etcd3
2018-10-04 11:41:16 -04:00
k8s-ci-robot
68536e4382
Merge pull request #68520 from verult/top-auth-integration
...
Auth integration tests for CSINodeInfo changes
2018-10-03 21:32:01 -07:00
k8s-ci-robot
5dd78df7da
Merge pull request #68982 from aruneli/master
...
Fixes #65869 Do not listen insecurely if secure port is specified
2018-10-03 17:32:28 -07:00
k8s-ci-robot
16256296d2
Merge pull request #69353 from davidz627/fix/provisionerName
...
Update provisioner name and don't supply zone in GCE PD CSI test
2018-10-03 15:21:59 -07:00
Cheng Xing
c65d7c9a49
NodeAuthorizer and NodeRestriction integration test for CSINodeInfo permissions
2018-10-03 14:31:16 -07:00
k8s-ci-robot
10368ee68b
Merge pull request #68915 from oomichi/issue/68914
...
Add fall-back to get node IP on host_path tests
2018-10-03 13:01:54 -07:00
k8s-ci-robot
e03886c34a
Merge pull request #68297 from leakingtapan/golint-fix-gce-pd
...
fix golint for pkg/volume/gce_pd
2018-10-03 13:01:34 -07:00
Kenichi Omichi
b259e91420
Update options of master/node-os-distro
...
Some e2e tests are skipped by depending on Linux distribution of
master and node, and the options can be one of "debian", "ubuntu",
"gci" or "custom". This updates the help message of the options.
2018-10-03 17:44:28 +00:00
k8s-ci-robot
c635e19e59
Merge pull request #69349 from davidz627/fix/gcePDCSITest
...
Add PodSecurityPolicy Binding back to GCE PD CSI Test and make non-serial
2018-10-03 10:38:16 -07:00
k8s-ci-robot
c1ad6e961a
Merge pull request #69337 from MrHohn/addon-manager-manifest-8.8
...
Bump addon-manager to v8.8
2018-10-03 04:44:17 -07:00
k8s-ci-robot
f149d2a2c2
Merge pull request #68409 from wgliang/feature/remove-chaosclien
...
Remove unused chaosclient
2018-10-02 21:46:22 -07:00
k8s-ci-robot
c179a9c9df
Merge pull request #67356 from yliaog/master
...
Moved staging/src/k8s.io/client-go/tools/bootstrap to staging/src/k8s…
2018-10-02 20:35:51 -07:00
k8s-ci-robot
2d67d782de
Merge pull request #69225 from gnufied/volume-limit-tidy-up
...
Enable volume limit feature by default
2018-10-02 17:03:32 -07:00
David Zhu
fa41fa9acd
Update provisioner name and don't supply zone in GCE PD CSI test
2018-10-02 16:52:14 -07:00
David Zhu
fd18fc548d
Remove redundant [Serial] tags and dont delete CRD's at the end of test
2018-10-02 16:01:38 -07:00
David Zhu
e7af381538
Add Pod Security Policy back in to GCE PD Cluster Role
2018-10-02 14:42:14 -07:00
Zihong Zheng
81eae648cb
Bump addon-manager to v8.8
...
- Rebase docker image on debian-base:0.3.2.
2018-10-02 11:43:40 -07:00
Hemant Kumar
e38cfb61be
Add a e2e test to check node limits
2018-10-02 13:59:05 -04:00
Yu Liao
fc21115c3f
Moved staging/src/k8s.io/client-go/tools/bootstrap to staging/src/k8s.io/cluster-bootstrap
2018-10-02 09:46:13 -07:00
k8s-ci-robot
59957af125
Merge pull request #69283 from chrisohaver/trackdns2
...
Add option to track dns pods
2018-10-02 05:35:33 -07:00
k8s-ci-robot
a27adf1612
Merge pull request #69300 from mrunalp/subpath_test_wait_for_event
...
test: Wait for pod event to show up
2018-10-02 01:12:00 -07:00
k8s-ci-robot
a9823bc314
Merge pull request #69154 from pohly/csi-0.4.0
...
CSI sidecar containers 0.4.0
2018-10-02 01:11:51 -07:00
Patrick Ohly
20c9549c10
e2e: update bazel BUILD files
...
Generated via hack/update-bazel.sh.
2018-10-02 08:31:03 +02:00
Patrick Ohly
212af1ac29
e2e: abstract access to additional files
...
The new test/e2e/framework/testfiles package makes it possible to
write tests that do not depend on a specific way of providing
additional test files at runtime. Such tests and the framework are
then more easily reused in other test suites.
In the test/e2e suite file access is enabled based on the existing
"repo-root" command line parameter and the built-in bindata. Tests
using the new API will first check for files under "repo-root" and
then fall back to the builtin data. This way, users of a test binary
can modify those files without having to rebuild the binary.
"repo-root" is still needed because at least some tests check for
additional files (secret.yaml, via ingress_utils.go) that are not part
of the upstream source code and thus may or may not be built into a
test binary.
Tests using bindata or repo-root directly get modified to use the new
API, or removed when they are obsolete: test/e2e/examples.go depended
on files that were removed in
https://github.com/kubernetes/kubernetes/pull/61246 and thus can no
longer be run in Kubernetes. Moving the tests to kubernetes/examples
is tracked in https://github.com/kubernetes/examples/issues/214 .
The file removal did not break the automated E2E testing probably
because the tests are under the Feature:Example tag and thus not
enabled during normal CI runs.
Removing also the obsolete tests makes it simpler to rework the
"repo-root" setting because less code uses it.
Related-to: #66649 and #23987
2018-10-02 08:31:03 +02:00
k8s-ci-robot
d25e6a6f62
Merge pull request #69291 from mrunalp/bump_up_pod_start_short_timeout
...
Increase the pod start short timeout
2018-10-01 22:21:08 -07:00
k8s-ci-robot
de2b43f14d
Merge pull request #64080 from karataliu/klv
...
Update verbose level for kubectl test
2018-10-01 18:03:45 -07:00
Mrunal Patel
c771de1e6b
test: Wait for pod event to show up
...
We are seeing flakes where pod event isn't yet visible when
we check for it leading to test failure.
Signed-off-by: Mrunal Patel <mpatel@redhat.com>
2018-10-01 12:28:40 -07:00
Cheng Pan
7d68fd00e6
fix golint for pkg/volume/gce_pd
2018-10-01 18:58:30 +00:00
k8s-ci-robot
e567c791aa
Merge pull request #69273 from dims/use-token-file-for-in-cluster-config-during-e2e-tests
...
Use token file for in cluster config during e2e tests
2018-10-01 09:28:04 -07:00
Mrunal Patel
c58fc8ce4b
Increase the pod start short timeout
...
We have seen flakes related to this timeout.
Signed-off-by: Mrunal Patel <mpatel@redhat.com>
2018-10-01 09:27:22 -07:00
Patrick Ohly
39d28d1af4
E2E CSI: bump versions of sidecar containers to 0.4.0
...
The 0.4.0 versions are what is getting released together with and for
Kubernetes 1.12.
2018-10-01 17:38:39 +02:00
k8s-ci-robot
860d3cb32c
Merge pull request #68887 from jsafrane/csi-roles
...
Add controller roles to CSI e2e tests
2018-10-01 08:18:36 -07:00
Chris O'Haver
9060fc6e6d
add opt to track dns pods
2018-10-01 10:00:16 -04:00
k8s-ci-robot
577e06e0b8
Merge pull request #69222 from SataQiu/fix-2018092805
...
fix typo
2018-10-01 04:40:34 -07:00
Davanum Srinivas
57f1f6e5b7
Use token file for in cluster config during e2e tests
...
Change-Id: I08e792d7c4db2d81861eec6f91028ebf26dea8db
2018-10-01 05:55:37 -04:00
Jan Safranek
60f736ed3d
Add controller roles to CSI e2e tests
...
External attacher + provisioner need extra role for leader election.
2018-10-01 10:31:31 +02:00
k8s-ci-robot
945e075aa1
Merge pull request #69215 from bertinatto/fix_csi_plugin_test
...
Fix flake in CSI plugin e2e test
2018-09-29 14:25:21 -07: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
72dd54ec48
Merge pull request #69169 from mgdevstack/master-pods-fmt
...
Add slow test comment and format import statements in e2e/common/pods.go
2018-09-28 18:57:27 -07:00
Kenichi Omichi
dd9cffb18f
Add fall-back to get node IP on host_path tests
...
As the same as the commit[1], this adds fall-back way to get a
node IP address on host_path e2e tests for environments which
don't support external IPs.
[1]: 4e7c2f638d (diff-5ee86aefbb33223865bc542107ea8560L81)
2018-09-28 23:01:18 +00:00
SataQiu
94a653f100
fix typo
2018-09-28 23:41:24 +08:00
Fabio Bertinatto
8894021b99
Fix flake in CSI plugin e2e test
2018-09-28 14:00:39 +02:00
k8s-ci-robot
8fd28eface
Merge pull request #69167 from apelisse/kubectl-diff
...
Move `diff` command from alpha sub-command to root cmd
2018-09-27 20:52:11 -07:00
k8s-ci-robot
f31cec4174
Merge pull request #69149 from mkumatag/update-auth-images
...
Update authenticated-image-pulling with fat manifest image
2018-09-27 15:53:37 -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
Antoine Pelisse
e1eadc5031
Move `diff` command to root rather than alpha
...
New command is now `kubectl diff` rather than `kubectl alpha diff` since
it's moving out of alpha soon, and will be using dry-run apply to
produce the diff rather than the custom merge logic.
2018-09-27 13:11:43 -07:00
k8s-ci-robot
aa3993abc6
Merge pull request #69102 from x13n/test-fix
...
Fix Stackdriver custom metrics tests
2018-09-27 12:21:36 -07:00