- 06 Jul, 2016 6 commits
-
-
Angus Salkeld authored
This is to base the name on the volume not just on the source configMap. If you have 2 volumes that both have the same configMap as a source, the volume is see as being in the attached state (it's state is looked up based on GetVolumeName()). See bug #28502
-
k8s-merge-robot authored
Automatic merge from submit-queue selector: make sure value of GT and LT is integer GT and LT in selector has been introduced in Node Affinity feature: https://github.com/kubernetes/kubernetes/pull/19758, https://github.com/kubernetes/kubernetes/pull/18261 According to the API: > If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. But the implementation has parsed it as float64: https://github.com/kubernetes/kubernetes/blob/ef0c9f0c5b8efbba948a0be2c98d9d2e32e0b68c/pkg/labels/selector.go#L183 Modeling integer as float is dangerous. We don't even have fixed precision guarantee when doing comparison. This PR is to get rid of this pre-optimization and convert **integer** to int64.
-
k8s-merge-robot authored
Automatic merge from submit-queue kubectl: simplify Rollbacker interface @kubernetes/kubectl
-
k8s-merge-robot authored
Automatic merge from submit-queue Finish migration of integration tests to separate namespaces This is also making the logs from integration tests debuggable and understandable.
-
k8s-merge-robot authored
Automatic merge from submit-queue allocator ETCD: remove unused Refresh()
-
k8s-merge-robot authored
Automatic merge from submit-queue Implementing a proper master/worker split in the juju cluster code. ``` release-note-none ``` General updates to the cluster/juju Kubernetes provider, to bring it up to date. Updating the skydns templates to version 11 Updating the etcd container definition to include arch. Updating the master template to include arch and version for hyperkube container. Adding dns_domain configuration options. Adding storage layer options. []()
-
- 05 Jul, 2016 25 commits
-
-
Wojciech Tyczynski authored
-
Hongchao Deng authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Check existence of kubernetes dir for get-kube.sh []() There are a lot of references to https://get.k8s.io/ over the internet. Most of such references do not describe KUBERNETES_SKIP_DOWNLOAD env variable and newbies can get into a situation described below: - execute `wget -q -O - https://get.k8s.io | bash` - receive a failure due too missed packages or some configs - fix the issue - try again `wget -q -O - https://get.k8s.io | bash` In this case, get-kube.sh will not check that kubernetes directory already exist and repeat download again. Lets make get-kube.sh more user-friendly and check existence of kubernetes dir
-
Matt Bruzek authored
Updating the skydns templates to version 11 Updating the etcd container definition to include arch. Updating the master template to include arch and version for hyperkube container. Adding dns_domain configuration options. Adding storage layer options. Fixing underscore problem and adding exceptions. Fixing the underscore flag errors.
-
k8s-merge-robot authored
Automatic merge from submit-queue Migrate most of the remaining integration tests to run in dedicated namespace (when possible).
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix node e2e issues on selinux enabled systems It fixes following 3 node e2es: ``` [Fail] [k8s.io] Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits [It] it should run with the expected status [Conformance] /root/upstream-code/gocode/src/k8s.io/kubernetes/test/e2e_node/runtime_conformance_test.go:114 [Fail] [k8s.io] Kubelet metrics api when querying /stats/summary [It] it should report resource usage through the stats api /root/upstream-code/gocode/src/k8s.io/kubernetes/test/e2e_node/kubelet_test.go:158 ``` ``` [Fail] [k8s.io] Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits [It] should report termination message if TerminationMessagePath is set [Conformance] /root/upstream-code/gocode/src/k8s.io/kubernetes/test/e2e_node/runtime_conformance_test.go:150 ``` @kubernetes/rh-cluster-infra
-
k8s-merge-robot authored
Automatic merge from submit-queue allow handler to join after the informer has started This allows an event handler to join after a SharedInformer has started. It can't add any indexes, but it can add its reaction functions. This works by 1. stopping the flow of events from the reflector (thus stopping updates to our store) 1. registering the new handler 1. sending synthetic "add" events to the new handler only 1. unblocking the flow of events It would be possible to 1. block 1. list 1. add recorder 1. unblock 1. play list to as-yet unregistered handler 1. block 1. remove recorder 1. play recording 1. add new handler 1. unblock But that is considerably more complicated. I'd rather not start there since this ought to be the exception rather than the rule. @wojtek-t who requested this power in the initial review @smarterclayton @liggitt I think this resolves our all-in-one ordering problem. @hongchaodeng since this came up on the call
-
k8s-merge-robot authored
Automatic merge from submit-queue "Mover" should be "Moreover" In file docs/proposals/apiserver-watch.md, line #108, "Mover, this will not require any changes in other parts of the code.", here "Mover" should be "Moreover".
-
k8s-merge-robot authored
Automatic merge from submit-queue dedup workqueue requeuing Updates `workqueue.AddAfter` to only perform the add for the earliest requested requeue operation. An earlier time inserts in the earlier slot and removes the old one. A later time is ignored. When using this conjunction with an `AddRateLimited` method, you get charged for the additional retry even though you're only queue once. This keeps requeues from multiplying for every add. @liggitt
-
k8s-merge-robot authored
Automatic merge from submit-queue ObjectReflectDiff has an incorrect array index comparison Is comparing the wrong field for bounds. @deads2k
-
k8s-merge-robot authored
Automatic merge from submit-queue Add command "kubectl config get-contexts" ```release-note * A new command "kubectl config get-contexts" has been added. ``` fixes #25383
-
deads2k authored
-
lixiaobing10051267 authored
-
deads2k authored
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Migrate some integration tests to run in dedicated namespace.
-
Angus Salkeld authored
Note: Context is not a runtime object (doesn't have Kind and Version) so we can't use the resource_printer -
k8s-merge-robot authored
Automatic merge from submit-queue Fix logic of consecutive DELETE calls when gracefull deletion is enabled Previously it was possible to extend delete timestamp to infinity by issuing repeated DELETE calls. This PR prevents that. Ref. discussion in #27422 cc @wojtek-t @smarterclayton @lavalamp @piosz @dchen1107
-
gmarek authored
-
k8s-merge-robot authored
Automatic merge from submit-queue cacher: replace usable lock with conditional variable Perviously we use a rwlock to indicate the ready information of the cacher. I feel it is not straightforward. Also it requires a few comments to explain. The pull request tries to replace the lock with a conditional variable for readability reason. /cc @lavalamp @wojtek-t
-
k8s-merge-robot authored
Automatic merge from submit-queue Handle more cases in diff.ObjectReflectDiff Interfaces and nested map values were not being recursed. @karkagis since @wojtek-t is out
-
Hongchao Deng authored
-
- 04 Jul, 2016 9 commits
-
-
Clayton Coleman authored
Interfaces and nested map values were not being recursed.
-
k8s-merge-robot authored
Automatic merge from submit-queue e2e: increase timeout when waiting for deployment pods to be deleted Use the same timeout as the one used for waiting for the deployment reaper to complete. Takes a stab at https://github.com/kubernetes/kubernetes/issues/28067 @kubernetes/deployment PTAL
-
Xiang Li authored
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Simplify registries initialization
-
k8s-merge-robot authored
Automatic merge from submit-queue Increase timeouts in multiple node pool e2e tests for cluster autoscaler cc: @piosz @fgrzadkowski @jszczepkowski
-
k8s-merge-robot authored
Automatic merge from submit-queue Unify DeleteAllEtcdKeys in integration tests & start using namespaces in some tests Getting rid of DeleteAllEtcdKeys() and running all tests in separate namespace is necessary to run integration tests in parallel. Aside from that, this is first step of reducing amount of annoying logs in integration tests...
-