- 17 Oct, 2016 1 commit
-
-
deads2k authored
-
- 14 Oct, 2016 30 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue NodeController waits for informer sync before doing anything cc @lavalamp @davidopp ```release-note NodeController waits for full sync of all it's informers before taking any action. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Run rbac authorizer from cache RBAC authorization can be run very effectively out of a cache. The cache is a normal reflector backed cache (shared informer). I've split this into three parts: 1. slim down the authorizer interfaces 1. boilerplate for adding rbac shared informers and associated listers which conform to the new interfaces 1. wiring @liggitt @ericchiang @kubernetes/sig-auth
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move RunRC-like functions to test/utils Ref. #34336 cc @timothysc - the "move" part of the small refactoring. @jayunit100
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Introduce additional debug logging to cluster logging tests @piosz
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Improve edit experience Improve edit experience a bit according [#26050(comment)](https://github.com/kubernetes/kubernetes/issues/26050#issuecomment-246089751) > a) always go back to the editor b) always retain what I hand-edited, even if that has to be in comments @janetkuo
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Set the dns policy for pods in node e2e tests
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue e2e: don't require minimum availability once scaling takes place This test shouldn't care about availability at all in the first place. @mfojtik @kubernetes/deployment ptal Fixes https://github.com/kubernetes/kubernetes/issues/34717
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Log more information on pod status updates Also bump the logging level to V2 so that we can see them in a non-test cluster.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue azure: lower log priority for skipped nic update message **What this PR does / why we need it**: Very minor, just wanted to remove some log noise I introduced in #34526. I chose `V(3)` since it aligns with the other nicupdate message printed out here, and will be hidden for the usual default of `--v=2`. **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 NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Merge string flag into util flag Continuing my work on https://github.com/kubernetes/kubernetes/issues/15634 This refactoring is expected to be completely finished and then I will add a verify scripts in `hack`
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix misspellings of 'Kubernetes' Fix typos.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix simple typos.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move Summary test out of [Flaky] Test has been stable for a week.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Security Group support for OpenStack Load Balancers <!-- 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 --> **Add Security Group Support for OpenStack Load Balancers**: fixes #29745 adds OpenStack support to the work done in #20392 **Release note**: ``` This allows security groups to be created and attached to the neutron port that the load balancer is using on the subnet. The security group ID that is assigned to the nodes needs to be provided, to allow for traffic from the load balancer to the nodePort to be reflected in the rules. This adds two config items to the LoadBalancer options - ManageSecurityGroups (bool) NodeSecurityGroupID (string) ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make NodeController recognize deletion tombstones cc/ @lavalamp @gmarek
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue split genericapiserver configuration apart so that you can run withou… …t flag options @dims Take a look at this re-slicing of the `genericapiserver.Config` creation. I think this helps composers overall and resolves the chicken/egg problem you were having.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update scheduler perf to spin up similar client to other tests Seems to Fix #34504 . But I'm not sure what the mechanics of the underlying client objects is all supposed to be.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Assign options.Err in "set image" **What this PR does / why we need it**: There is a usage of options.Err in a Printf, but this option is never set. This patch passes the stderr into the command and assigns the option correctly. **Which issue this PR fixes** fixes #34433 **Special notes for your reviewer**: None **Release note**: ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove scheduler flags that were marked as deprecated 2+ releases ago. Starting to spin back into scheduler testing and performance evaluation, and I noticed some leftover cleanup work from 2+ releases ago. **Release note**: Removed unused bind-pods-qps, and bind-pods-burst flags from the scheduler.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue remove NODE_IPS
-
David Oppenheimer authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add UpdateRuntimeConfig interface Expose UpdateRuntimeConfig interface in RuntimeService for kubelet to pass a set of configurations to runtime. Currently it only takes PodCIDR. The use case is for kubelet to pass configs to runtime. Kubelet holds some config/information which runtime does not have, such as PodCIDR. I expect some of kubelet configurations will gradually move to runtime, but I believe cases like PodCIDR, which dynamically assigned by k8s master, need to stay for a while.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Minor cleanup to scheduler. Part 1 of pr for scheduler modularization specifically supporting CheckServiceAffinity improvements #33763. These are some innoccous changes which help separate the predicate injection machinery from the cleanup parts of CheckServiceAffinity @timothysc @wojtek-t - changes to metadata.go are for the follow on pr - changes to prio/pred stuff is all passing unit tests hoping to grease this through and then the interesting part is in the follow on pr.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add e2e tests for storageclass - test pd-ssd and pd-standard on GCE, - test all four volume types and encryption on AWS - test just the default volume type on OpenStack (right now, there is no API to get list of them) These tests are quite slow, e.g. there are two tests on AWS that has to run mkfs.ext4 on 500 GB magnetic drive with low IOPS, which takes ~3-4 minutes each.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Set target version env in etcd manifest Ref https://github.com/kubernetes/kubernetes/issues/20504 @lavalamp
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase job cache limit to 300 and leave a TODO.
-
Angus Salkeld authored
There is a usage of options.Err in a Printf, but this option is never set. This patch passes the stderr into the command and assigns the option correctly.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix race condition in test with git server startup Fixes https://github.com/kubernetes/kubernetes/issues/32467 (hopefully) Previously, the test didn't ensure the git server was running before attempting to connect to it.
-
- 13 Oct, 2016 9 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue remove call to compinit in zsh completion output **Release note**: ```release-note release-note-none ``` Fixes: https://github.com/kubernetes/kubernetes/issues/32029 Fixes: https://github.com/kubernetes/kubernetes/issues/27538#issuecomment-238574035 The zsh completion output makes a call to "compinit" which causes the zsh completion system to re-initialize every time `<root_cmd> completion zsh` is sourced, overwriting any settings already applied to other commands. This in-turn caused other commands' completions to break (such as git, gcloud, vim) causing an error "function definition file not found" to be returned any time a tab-completion was attempted. This patch removes the call to `compinit` in the zsh completion output, causing no behavioral changes to the existing `completion` command, but fixing any issues that were caused after sourcing its output.
-
Graham Hayes authored
This allows security groups to be created and attached to the neutron port that the loadbalancer is using on the subnet. The security group ID that is assigned to the nodes needs to be provided, to allow for traffic from the loadbalancer to the nodePort to be refelected in the rules. This adds two config items to the LoadBalancer options - ManageSecurityGroups (bool) NodeSecurityGroupID (string)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase build verbosity for verify-generated-{protobuf,runtime}.sh Print out more details of the build process to help with debugging #34675. -
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubeadm implement preflight checks Checks that user running kubeamd init and join is root and will only execute command if user is root. Moved away from using kubectl error handling to having kubeadm handle its own errors. This should allow kubeadm to have more meaningful errors, exit codes, and logging for specific kubeadm use cases. fixes #33908
-
Matt Liggett authored
Marked GCL logging test as Flaky
-
Yu-Ju Hong authored
Also bump the logging level to V2 so that we can see them in a non-test cluster.
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add flag for enabling RBAC on local-up-cluster Enables cases like `ALLOW_ANY_TOKEN=true ENABLE_RBAC=true hack/local-up-cluster.sh ` to startup an api server so you can test RBAC against it. @pweil- You can try this using `oc login localhost:6443 --token=username/group1,group2,system:masters`. Then you should have full rights. You can use `oc login --token=username` or `kubectl create -f - --token=otheruser/othergroup` to simulate other users.
-
saadali authored
-