- 22 Aug, 2016 40 commits
-
-
Quintin Lee authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Optimize order description for turning down cluster Optimize order description for turning down cluster.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue correct object in downward_api_resources_limits_requests
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Federated Ingress Controller Based on new federated controller libraries. cc @kubernetes/sig-cluster-federation @mfanjie @nikhiljindal @mwielgus @mml @madhusudancs FYI
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [GarbageCollector] Garbage collector doesn't need to resync ref https://github.com/kubernetes/kubernetes/issues/30759#issuecomment-240904817 Perhaps this is going to help controller manager's CPU consumption. @wojtek-t
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix heapster in kubemark Fix #31108
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue etcd3 backend: support TLS What? Support TLS in etcd3 storage backend. It works the same as previous etcd2 config. - [ ] Blocked on #https://github.com/kubernetes/kubernetes/pull/30480
-
Quinton Hoole authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Federation replicaset controller TBD: integrate with the scheduler, events @quinton-hoole @deepak-vij @kshafiee
-
Chao Xu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue support storage class in Cinder provisioner replace #30876 @kubernetes/sig-storage @jsafrane
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Kubelet: implement GetPods for new runtime API Implement GetPods for kuberuntime. Part of #28789 . CC @yujuhong @Random-Liu
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue e2e test for rescheduling critical pods ref #29023 The test is disabled by default.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue AWS: More ELB attributes via service annotations Replaces #25015 and addresses all of @justinsb's feedback therein. This is a new PR because I was unable to reopen #25015 to amend it. I noticed recently that there is existing (but undocumented) precedent for the AWS cloud provider to manage ELB-specifc load balancer configuration based on service annotations. In particular, one can _already_ designate an ELB as "internal" or enable PROXY protocol. This PR extends this capability to the management of ELB attributes, which includes the following items: * Access logs: * Enabled / disabled * Emit interval * S3 bucket name * S3 bucket prefix * Connection draining: * Enabled / disabled * Timeout * Connection: * Idle timeout * Cross-zone load balancing: * Enabled / disabled Some of these are possibly more useful than others. Use cases that immediately come to mind: * Enabling cross-zone load balancing is potentially useful for "Ubernetes Light," or anyone otherwise attempting to spread worker nodes around multiple AZs. * Increasing idle timeout is useful for the benefit of anyone dealing with long-running requests. An example I personally care about would be git pushes to Deis' builder component. -
jianhuiz authored
-
jianhuiz authored
-
jianhuiz authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove the kubelet container as it's unmaintained <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: It removes the outdated and unmainained kubelet image, since we're using the hyperkube image instead. Should be pretty straightforward to remove this. @fgrzadkowski @thockin @mikedanese @pmorie
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [e2e density test] Fix unnecessary Delete RC requests when not running latency test As the following code block https://github.com/kubernetes/kubernetes/blob/master/test/e2e/density.go#L666-L670 shows, after running each density test case, it will attempt to delete "additional replication controllers" even though there is **no additional replication controller**. When we are not running latency test, API Server will return "404 error code". So, I propose to move the above code block inside thedetermine statementsif `itArg.runLatencyTest{ }` , looks like: ``` if itArg.runLatencyTest { ... for i := 1; i <= nodeCount; i++ { name := additionalPodsPrefix + "-" + strconv.Itoa(i) c.ReplicationControllers(ns).Delete(name, nil) } } ``` In this way, removing RC will be executed only if we set `itArg.runLatencyTest` to be `true`. It can avoid post some necessary requests to API Server. Issuse is #30977
-
Wojciech Tyczynski authored
-
Piotr Szczesniak authored
-
Huamin Chen authored
Signed-off-by:Huamin Chen <hchen@redhat.com>
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix coding style cc @pmorie **What this PR does / why we need it**: Fixes case on a variable name, it's simple and adjust the code to the coding style. **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix description of AWS provisioner zones
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Impersonate user extra Second commit builds on https://github.com/kubernetes/kubernetes/pull/30803. This adds a restriction to `user.Info.Extra`, keys must be lower case. This is because HTTP headers are case insensitive, so we can't be sure that we'll get the right case through proxies or even Go (the go library capitalizes after dashes). I don't think anyone is using them, if they are, they'll need to update to properly plumb through an impersonation flow. @kubernetes/sig-auth @ericchiang since you have background here.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Updating version check for etcd <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: Currently, if you `make build`, etcd is not properly version checked because `etcd -version` does multi-line output. This output cannot be version compared. This small change fixes that. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make DNS and Heapster critical pods ref #29023 ```release-note DNS, Heapster and UI are critical addons ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Close websocket stream when client closes Same problem as #30736, but for websocket streaming
-
Jan Safranek authored
-
deads2k authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [GarbageCollector] Make Rate Limiter registration more efficient in GC <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: Decrease the CPU consumption of the garbage collector **Which issue this PR fixes** #30759 **Special notes for your reviewer**: I observed dramatic improvement (dropped from 0.8cpu to 0.3cpu) in load test. **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ``` @wojtek-t @lavalamp @gmarek
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Don't validate selector that is already validated Ref #30875 @timothysc
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Tweak resource consumption in density test Fix: #30275
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Do not hold the lock for a long time Followup to #30839. I'm not convinced this is a super great idea but I'll throw it out and let others decide. Ref https://github.com/kubernetes/minikube/issues/368 Ref #30759
-
Lucas Käldström authored
-
Wojciech Tyczynski authored
Revert "Use netlink.SetPromiscOn instead of iproute2 command"
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue AWS: Support HTTP->HTTP mode for ELB **What this PR does / why we need it**: Right now it is not possible to create an AWS ELB that listens for HTTP and where the backend pod also listens for HTTP. I asked @justinsb in slack and he said that this seems to be an oversight, so I'd like to use this PR as a step towards solving this. **Special notes for your reviewer**: I've only added a simple unit test. Are any integration tests needed? I'm not familiar with the code base. cc @therc
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Parameterize vpc name
-