- 19 Oct, 2018 15 commits
-
-
Matt Matejczyk authored
-
Matt Matejczyk authored
-
Matt Matejczyk authored
-
k8s-ci-robot authored
add more logging for azure disk diagnostics
-
k8s-ci-robot authored
kubectl: copy deployment util dependency into kubectl
-
k8s-ci-robot authored
Remove error output from stdout to stderr
-
k8s-ci-robot authored
remove duplicate root check for kubeadm
-
andyzhangx authored
-
k8s-ci-robot authored
delete node from aws if it is terminated
-
k8s-ci-robot authored
Fluentd: concatenate long logs
-
k8s-ci-robot authored
remove unneed if block for kubectl delete command
-
k8s-ci-robot authored
Fix error messages suggesting invalid flag
-
k8s-ci-robot authored
Make CoreDNS default in kubeup and update CoreDNS version/manifest in kubeup and kubeadm
-
k8s-ci-robot authored
Fix the returned messaged: statefullset->statefulset
-
k8s-ci-robot authored
Add test for kubectl cluster-info dump
-
- 18 Oct, 2018 25 commits
-
-
k8s-ci-robot authored
Optimizes calculating stats when only CPU and Memory stats are returned from Kubelet stats/summary http endpoint.
-
k8s-ci-robot authored
Include vendor/k8s.io in coverage instrumentation
-
k8s-ci-robot authored
kubeadm: Fix node join taints
-
k8s-ci-robot authored
Add DNS container memory check to scalability tests
-
k8s-ci-robot authored
validate args for kubectl api-versions/api-resources command
-
k8s-ci-robot authored
Opt out of chowning and chmoding from kubectl cp.
-
Ibrahim Mbaziira authored
-
k8s-ci-robot authored
Add guidance for testing in the PR template
-
Sean Sullivan authored
-
Chris O'Haver authored
-
k8s-ci-robot authored
kubectl: move translated data into kubectl
-
Chris O'Haver authored
-
bjhaid authored
`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 ```
-
k8s-ci-robot authored
Add test cases for taintbasedevictions
-
Matt Matejczyk authored
-
k8s-ci-robot authored
support Azure premium file for azure file plugin
-
k8s-ci-robot authored
Make sure kubelet is restarted after it is stopped in the test
-
chao wang authored
-
k8s-ci-robot authored
Clean cross-build image and update to protoc 3.0.2
-
k8s-ci-robot authored
kubectl: remove internalclientset dependency
-
k8s-ci-robot authored
promote TaintBasedEvictions featuregate to beta
-
Pingan2017 authored
-
k8s-ci-robot authored
remove unused code of (pkg/controller)
-
k8s-ci-robot authored
Simplify taint manager workqueue keys
-
Katharine Berry authored
-