k8s-ci-robot
37cb88efd2
Merge pull request #70012 from andyzhangx/azuredisk-logging
...
add more logging for azure disk diagnostics
2018-10-19 07:18:19 -07:00
k8s-ci-robot
34196ac946
Merge pull request #69692 from seans3/deployment-util-fix
...
kubectl: copy deployment util dependency into kubectl
2018-10-19 06:07:40 -07:00
yuexiao-wang
8af042af6d
fix reference to controlManagerExtraAargs
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2018-10-19 20:22:34 +08:00
k8s-ci-robot
c0d9a0728c
Merge pull request #69897 from code-sleuth/develop
...
Remove error output from stdout to stderr
2018-10-19 04:57:33 -07:00
k8s-ci-robot
b7c2d923ef
Merge pull request #69927 from SataQiu/fix-20181017
...
remove duplicate root check for kubeadm
2018-10-19 01:26:30 -07:00
andyzhangx
79a5bb6216
add more logging for azure disk diagnostics
2018-10-19 08:11:49 +00:00
k8s-ci-robot
3d4cc707a2
Merge pull request #69454 from zetaab/fix_aws_node_delete
...
delete node from aws if it is terminated
2018-10-19 00:10:22 -07:00
k8s-ci-robot
12f726c33a
Merge pull request #68012 from wiremind/fluentd-concat
...
Fluentd: concatenate long logs
2018-10-18 22:57:06 -07:00
k8s-ci-robot
d8f9b5b668
Merge pull request #69958 from Pingan2017/cleanup-kubectl-delete
...
remove unneed if block for kubectl delete command
2018-10-18 19:50:53 -07:00
k8s-ci-robot
85e460e362
Merge pull request #69809 from sc14aec/create-context-error-messages
...
Fix error messages suggesting invalid flag
2018-10-18 19:50:43 -07:00
k8s-ci-robot
52de5c55e3
Merge pull request #69883 from chrisohaver/coredns-default
...
Make CoreDNS default in kubeup and update CoreDNS version/manifest in kubeup and kubeadm
2018-10-18 18:39:12 -07:00
k8s-ci-robot
34db40fbf5
Merge pull request #67930 from AdamDang/patch-15
...
Fix the returned messaged: statefullset->statefulset
2018-10-18 18:39:03 -07:00
k8s-ci-robot
cfd6343477
Merge pull request #66515 from justinsb/verify_kubectl_dump
...
Add test for kubectl cluster-info dump
2018-10-18 18:38:52 -07:00
k8s-ci-robot
4339a70dfa
Merge pull request #68841 from krzysztof-jastrzebski/cpuandmemeory2
...
Optimizes calculating stats when only CPU and Memory stats are returned from Kubelet stats/summary http endpoint.
2018-10-18 16:41:07 -07:00
Mayank Kumar
64bd2e35ae
add myself to node reviwers
2018-10-18 16:19:18 -07:00
k8s-ci-robot
3fdb1e6bdb
Merge pull request #69952 from Katharine/include-staging
...
Include vendor/k8s.io in coverage instrumentation
2018-10-18 14:44:28 -07:00
k8s-ci-robot
125cb7b1ad
Merge pull request #69846 from andrewrynhard/fix-kubeadm-join-taints
...
kubeadm: Fix node join taints
2018-10-18 14:44:19 -07:00
k8s-ci-robot
c30f5269a3
Merge pull request #69810 from chrisohaver/checkmem
...
Add DNS container memory check to scalability tests
2018-10-18 14:44:09 -07:00
k8s-ci-robot
007ad9179c
Merge pull request #69760 from Pingan2017/validate-args
...
validate args for kubectl api-versions/api-resources command
2018-10-18 14:44:00 -07:00
k8s-ci-robot
00dd32b167
Merge pull request #69573 from bjhaid/master
...
Opt out of chowning and chmoding from kubectl cp.
2018-10-18 14:43:49 -07:00
Ibrahim Mbaziira
7480650e05
Remove error output from stdout to stderr
2018-10-19 00:28:36 +03:00
Pradip-Khakurel
8c4fd312c9
make error messages more helpful for some e2e auth tests
2018-10-18 22:03:02 +02:00
k8s-ci-robot
e9d1514b95
Merge pull request #68994 from charrywanganthony/pr_template
...
Add guidance for testing in the PR template
2018-10-18 12:47:07 -07:00
Sean Sullivan
ffd4ea963d
kubectl: copy deployment util dependency into kubectl
2018-10-18 12:02:39 -07:00
Chris O'Haver
0cfb4bbe2c
make coredns kubeup default, update manifest
2018-10-18 14:52:38 -04:00
Brad Hoekstra
409a48ef91
Set the default for EnableServiceLinks only in Pod
2018-10-18 13:44:21 -04:00
k8s-ci-robot
4d66eeb922
Merge pull request #69709 from seans3/kubectl-translate-fix
...
kubectl: move translated data into kubectl
2018-10-18 10:25:18 -07:00
Han Kang
56cd8ecf08
fix lint issues in the apis/abac directory (except latest.go)
2018-10-18 09:05:04 -07:00
Lubomir I. Ivanov
8c9cb0c71f
docs/admin: add OWNERS file with cmd/kubeadm approvers
2018-10-18 18:45:17 +03:00
Chris O'Haver
402266afde
add dns pod memory constraint
2018-10-18 10:35:30 -04:00
bjhaid
44bed94f0e
Opt out of chowning and chmoding from kubectl cp.
...
`kubectl cp` relies on tar to extract the copied file/directory in the
container, tar by default attempts to chown/chmod the extracted file
after extraction if the user is the "superuser"(root)
```
--same-owner
try extracting files with the same ownership as exists in the archive
(default for superuser)
-p, --preserve-permissions, --same-permissions
extract information about file permissions (default for superuser)
```
This fails in environment where the container runs as root but is not
granted the OWNER or CHOWN capability.
Before this patch below was the behavior of `kubectl cp`
```
kubectl cp README.md foo-67b6fcbd4c-qjlt6:/tmp
tar: README.md: Cannot change ownership to uid 1000, gid 1000: Operation
not permitted
tar: Exiting with failure status due to previous errors
command terminated with exit code 2
kubectl exec -it foo-67b6fcbd4c-qjlt6 -- ls -l /tmp/README.md
-rw------- 1 1000 1000 3179 Oct 7 22:00 /tmp/README.md
```
After this patch
```
kubectl cp -x a foo-67b6fcbd4c-qjlt6:/
kubectl exec -it foo-67b6fcbd4c-qjlt6 -- ls -l /tmp/README.md
-rw-r--r-- 1 root root 3179 Oct 7 22:00 /tmp/README.md
```
2018-10-18 14:16:06 +00:00
k8s-ci-robot
d425258532
Merge pull request #69788 from ravisantoshgudimetla/taint-based-eviction
...
Add test cases for taintbasedevictions
2018-10-18 06:34:31 -07:00
Matt Matejczyk
803ee8426d
Add EndpointsLastTriggerTime annotation.
2018-10-18 09:25:27 -04:00
k8s-ci-robot
b5c25728ec
Merge pull request #69718 from andyzhangx/azurefile-premium
...
support Azure premium file for azure file plugin
2018-10-18 05:18:50 -07:00
Rostislav M. Georgiev
91049ef77b
kubeadm: Introduce config print init/join-defaults
...
In order to improve the UX of kubeadm, it was decided to introduce the
following subcommands:
- `kubeadm config print` - this is currently only a placeholder for subcommands
that deal printing of some kind of configuration.
- `kubeadm config print init-defaults` - prints the default combination of
InitConfiguration and ClusterConfiguration. Selected component configs can be
printed too if the `--component-configs` command line switch is used.
- `kubeadm config print join-defaults` - prints the default JoinConfiguration.
This command also supports the use of `--component-configs`.
- `kubeadm config print-defaults` is deprecated in favor of
`kubeadm config print init/join-defaults`.
Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2018-10-18 14:21:02 +03:00
fabriziopandini
22da6a66a2
autogenerated
2018-10-18 11:52:15 +02:00
fabriziopandini
abac950cd7
kubeadm graduate preflight phase
2018-10-18 11:52:04 +02:00
k8s-ci-robot
0ab29b4852
Merge pull request #69944 from jingxu97/defertest
...
Make sure kubelet is restarted after it is stopped in the test
2018-10-18 00:10:54 -07:00
chao wang
a6a5c91a06
Add guidance for testing in the PR template
2018-10-18 14:29:18 +08:00
k8s-ci-robot
1ba06b0444
Merge pull request #69939 from ixdy/clean-crossbuild-protoc-3.0.2
...
Clean cross-build image and update to protoc 3.0.2
2018-10-17 22:25:59 -07:00
k8s-ci-robot
060ecb8837
Merge pull request #69936 from seans3/describe-fix
...
kubectl: remove internalclientset dependency
2018-10-17 22:25:49 -07:00
k8s-ci-robot
7a53a075e4
Merge pull request #69824 from Huang-Wei/enable-TaintBasedEvictions
...
promote TaintBasedEvictions featuregate to beta
2018-10-17 21:04:04 -07:00
Pingan2017
797f0ac660
remove unneed if block for kubectl delete command
2018-10-18 11:33:45 +08:00
k8s-ci-robot
aad6437aa9
Merge pull request #64061 from wgliang/master.remove-unused-code-pkg-controller
...
remove unused code of (pkg/controller)
2018-10-17 19:54:05 -07:00
Weibin Lin
e81776b140
update bazel
2018-10-18 10:18:15 +08:00
Weibin Lin
d02e3bd780
use PodSecurityPolicySpec of policy/v1beta1 instead of extensions/v1beta1
2018-10-18 10:18:13 +08:00
k8s-ci-robot
6f4b768c94
Merge pull request #65350 from liggitt/simplify-taint-manager-key
...
Simplify taint manager workqueue keys
2018-10-17 18:39:03 -07:00
Katharine Berry
9ec5b7ffde
Include vendor/k8s.io in coverage.
2018-10-17 17:15:27 -07:00
k8s-ci-robot
feb6475a30
Merge pull request #68952 from grayluck/node-cidr-size
...
Skip node cidr mask size check for cloud allocation
2018-10-17 16:19:49 -07:00
k8s-ci-robot
0652e098d0
Merge pull request #67547 from pbarker/audit-api
...
dynamic audit configuration api
2018-10-17 16:19:39 -07:00