- 21 May, 2016 10 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Add PV test to persistent volume integration test This is a follow-up to #25120 @kubernetes/sig-storage
-
k8s-merge-robot authored
Automatic merge from submit-queue Hook rkt kubelet runtime up to network plugins
-
k8s-merge-robot authored
Automatic merge from submit-queue cluster/gce/coreos: Update addon manifests. cc @yujuhong @timstclair @ArtfulCoder
-
k8s-merge-robot authored
Automatic merge from submit-queue etcd3/compactor: fix logging endpoints Missed a logging.
-
k8s-merge-robot authored
Automatic merge from submit-queue Updaing QoS policy to be at the pod level Quality of Service will be derived from an entire Pod Spec, instead of being derived from resource specifications of individual resources per-container. A Pod is `Guaranteed` iff all its containers have limits == requests for all the first-class resources (cpu, memory as of now). A Pod is `BestEffort` iff requests & limits are not specified for any resource across all containers. A Pod is `Burstable` otherwise. Note: Existing pods might be more susceptible to OOM Kills on the node due to this PR! To protect pods from being OOM killed on the node, set `limits` for all resources across all containers in a pod. <!-- Reviewable:start --> --- This change is [<img src="http://reviewable.k8s.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/14943) <!-- Reviewable:end -->
-
k8s-merge-robot authored
Automatic merge from submit-queue Check status of framework.CheckPodsRunningReady Check status of framework.CheckPodsRunningReady and fail test if it's false, instead of silently ignoring the failure. This doesn't fix whatever is causing the pod not to start in #17523 but it does fail the test as soon as it detects the pod didn't start, instead of allowing the testing to proceed. cc @kubernetes/sig-testing @spxtr @ixdy @kubernetes/rh-cluster-infra
-
k8s-merge-robot authored
Automatic merge from submit-queue Pre-pull images in node e2e-tests. Possible resolution for #24905 []()
-
k8s-merge-robot authored
Automatic merge from submit-queue Updating CentOS image, adding heat back to the required cli tools. []() Updated the CentOS cloudimage to the latest available, and also added heat to the required list of cli tools. This is an interim step to replacing all the commands with openstackclient.
-
k8s-merge-robot authored
Automatic merge from submit-queue Proposal for disk based evictions cc @dchen1107 @derekwaynecarr
-
Andy Goldstein authored
Check status of framework.CheckPodsRunningReady and fail test if it's false, instead of silently ignoring the failure.
-
- 20 May, 2016 30 commits
-
-
Mike Danese authored
Implement OIDC client AuthProvider
-
Mike Danese authored
Update node e2e containervm image to not start kubelet as part of ini…
-
Mike Danese authored
Removing indirection from proxy exec test
-
Mike Danese authored
Make addon-manager cross-platform and use it with hyperkube
-
Mike Danese authored
kubelet: Optionally, have kubelet exit if lock file contention is observed, using --exit-on-lock-contention flag
-
Mike Danese authored
Clearly identify errors killing pods in events and logs
-
Mike Danese authored
Turn on kubenet for GCE
-
Mike Danese authored
Bump up glbc version to 0.6.2
-
Minhan Xia authored
-
Mike Danese authored
Fix a nit in the downward api proposal for resources.
-
Mike Danese authored
Fix kubemark which was broken by a backwards incompatible flag change to controller-manager
-
Vishnu Kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
Mike Danese authored
-
Vishnu kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
Mike Danese authored
rkt: Don't warn on empty pod logs
-
Hongchao Deng authored
-
Elson O Rodriguez authored
-
Mike Danese authored
GCI: fix a breakage in controller-manager
-
Andy Zheng authored
-
Vishnu kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
Vishnu kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
k8s-merge-robot authored
Automatic merge from submit-queue Update AWS under the hood doc with ELB SSL annotations Document #23495. No e2e tests or release notes needed (the other PR is already in the release docs).
-
k8s-merge-robot authored
Automatic merge from submit-queue add CIDR allocator for NodeController This PR: * use pkg/controller/framework to watch nodes and reduce lists when allocate CIDR for node * decouple the cidr allocation logic from monitoring status logic <!-- Reviewable:start --> --- This change is [<img src="http://reviewable.k8s.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/19242) <!-- Reviewable:end -->
-
Lucas Käldström authored
Large changes to the docker deployment. Added kube-addon-manager as a static pod. The addon-manager deploys kube-proxy as a DaemonSet as well as Dashboard and DNS automatically. SecurityContextDeny is removed from the manifests. Also, the turnup.sh and turndown.sh scripts are removed because we don't need them anymore, they're covered by the online documentation
-
Lucas Käldström authored
Make the addon-manager cross-platform, change naming to binary-arch:version, remove deprecated kubectl command, add support for DaemonSets
-
Kris authored
I removed the netexec and goproxy pods from the proxy exec test. Instead it now runs kubectl locally and the proxy is running in-process. Since Go won't proxy for localhost requests, this test cannot pass if the API server is local. However it was already disabled for local clusters.
-
Phillip Wittrock authored
Update node e2e containervm image to not start kubelet as part of init. Update the node e2e host setup.sh to also do this when creating new images.
-
k8s-merge-robot authored
Automatic merge from submit-queue Add 'kubectl set image' ```release-note Add "kubectl set image" for easier updating container images (for pods or resources with pod templates). ``` **Usage:** ``` kubectl set image (-f FILENAME | TYPE NAME) CONTAINER_NAME_1=CONTAINER_IMAGE_1 ... CONTAINER_NAME_N=CONTAINER_IMAGE_N ``` **Example:** ```console # Set a deployment's nginx container image to 'nginx:1.9.1', and its busybox container image to 'busybox'. $ kubectl set image deployment/nginx busybox=busybox nginx=nginx:1.9.1 # Update all deployments' nginx container's image to 'nginx:1.9.1' $ kubectl set image deployments nginx=nginx:1.9.1 --all # Update image of all containers of daemonset abc to 'nginx:1.9.1' $ kubectl set image daemonset abc *=nginx:1.9.1 # Print result (in yaml format) of updating nginx container image from local file, without hitting the server $ kubectl set image -f path/to/file.yaml nginx=nginx:1.9.1 --local -o yaml ``` I abandoned the `--container=xxx --image=xxx` flags in the [deploy proposal](https://github.com/kubernetes/kubernetes/blob/master/docs/proposals/deploy.md#kubectl-set) since it's much easier to use with just KEY=VALUE (CONTAINER_NAME=CONTAINER_IMAGE) pairs. Ref #21648 @kubernetes/kubectl @bgrant0607 @kubernetes/sig-config []()
-
Filip Grzadkowski authored
Bumped Heapster to v1.1.0-beta2
-
k8s-merge-robot authored
Automatic merge from submit-queue kubelet: Don't attempt to apply the oom score if container exited already Containers could terminate before kubelet applies the oom score. This is normal and the function should not error out. This addresses #25844 partially. /cc @smarterclayton @Random-Liu
-