- 03 May, 2016 1 commit
-
-
David McMahon authored
-
- 02 May, 2016 8 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue AWS: Add support for ap-northeast-2 region (Seoul) This PR does: - Support AWS Seoul region: ap-northeast-2. Currently, I can not setup Kubernetes on AWS Seoul. Error Messages: > > ip-10-0-0-50 core # docker logs 0697db > I0419 07:57:44.569174 1 aws.go:466] Zone not specified in configuration file; querying AWS metadata service > F0419 07:57:44.570380 1 controllermanager.go:279] Cloud provider could not be initialized: could not init cloud provider "aws": not a valid AWS zone (unknown region): ap-northeast-2a
-
k8s-merge-robot authored
Automatic merge from submit-queue allow kubectl subcmds to process multiple resources ~~autoscale, expose & patch~~ Many kubectl subcommands were limited to processing one resource at a time. This PR allows those subcommands to process multiple resources. This PR is in reference to https://github.com/kubernetes/kubernetes/pull/23116#issuecomment-202360784 by @deads2k
-
k8s-merge-robot authored
Automatic merge from submit-queue Up to go 1.6.2 for build and test. ~~1.6.1 contains some security fixes. 1.6.2 should be out soon.~~ 1.6.2 is out :D Images aren't pushed yet.
-
k8s-merge-robot authored
Automatic merge from submit-queue Update cAdvisor & go-dockerclient for docker v1.11 compatability
-
k8s-merge-robot authored
Automatic merge from submit-queue Unify termination signal handling across platforms The signals are used to ensure proper execution of cleaning up actions to restore a terminal in: - [pkg/kubectl/cmd/attach.go#L163-L226](https://github.com/kubernetes/kubernetes/blob/b8d000853edbfe3d0d9bcd85e8e511a98b6ac6af/pkg/kubectl/cmd/attach.go#L163-L226) - [pkg/kubectl/cmd/util/editor/editor.go#L112-L137](https://github.com/kubernetes/kubernetes/blob/b8d000853edbfe3d0d9bcd85e8e511a98b6ac6af/pkg/kubectl/cmd/util/editor/editor.go#L112-L137) All supported platforms can handle the same set of signals we're interested in, thus we don't need build contraints to use a set of signals on Linux, while restricting ourselves to only SIGINT on Darwin and Windows. According to the documentation of os/signal, similar to SIGINT and SIGTERM, SIGHUP causes the program to exit, therefore add it to the list of handled signals. The fist commit is part of #23643.
-
k8s-merge-robot authored
Automatic merge from submit-queue Framework support for node e2e. This should let us port existing e2e tests to the node e2e suite, if the tests are node specific.
-
k8s-merge-robot authored
Automatic merge from submit-queue Federation client for cluster generate v1alpha1 and unversioned client for federation/clusters #23653, requires #23847, #23998 @nikhiljindal @quinton-hoole @caesarxuchao
-
Mike Metral authored
- use resource.Visit() to recursively process resources, as well as, aggregate errors where possible
-
- 30 Apr, 2016 2 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix `kubectl create configmap` help Resurrection of #23290 cc @bgrant0607 @janetkuo @ncdc
-
k8s-merge-robot authored
Automatic merge from submit-queue Convert internal types to use exact precision integers This makes conversion more suitable for future optimizations, and we need to stop pretending for some of our internal types that the width of the int doesn't matter. @wojtek-t
-
- 29 Apr, 2016 26 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix detect-node-names to not error out if there are no nodes Fixes #21564. Teardown was not working correctly in rare cases because `detect-node-names` was failing before any of the actual cleanup was run. I'm pretty sure the issue was that there was an instance group, but no instances in the instance group, so we bailed out when we tried to expand the bash array. This PR adds a guard so we don't bail if the array is empty. cc @jlowdermilk @spxtr
-
Vishnu kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
k8s-merge-robot authored
Automatic merge from submit-queue GCI: Update the command to get the image When we announced public GCI, we used the project google-containers to host GCI release images. However, later we encountered a licence issue and the administrators of google-containers project decided to remove this project from gcloud commands. According, we should list GCI images with the flag "--project google-containers". But the same image is listed twice during this transient period. This PR updates the code of getting the GCI image, which works during the transient period and after the google-containers project change finishes. @roberthbailey @dchen1107 @zmerlynn please review it. cc/ @wonderfly @fabioy FYI
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove metadata-cache. It's moving to kubernetes/test-infra. See https://github.com/kubernetes/test-infra/pull/2.
-
Clayton Coleman authored
-
Clayton Coleman authored
-
Clayton Coleman authored
Having internal and external integer types being different hides potential conversion problems. Propagate that out further (which will also allow us to better optimize conversion).
-
Andy Goldstein authored
Remove "generic" from the help text, as that was an inadvertent carry-over from `kubectl create secret generic`.
-
k8s-merge-robot authored
Automatic merge from submit-queue Disable coreos nodes from node e2e due to issues with ssh on coreos. Fixes #24423
-
k8s-merge-robot authored
Automatic merge from submit-queue more explicit requirements for pre-commit hook I don't know if using the pre-commit hook is still a best-practice, but godep and etcd are requirements for it to succeed.
-
k8s-merge-robot authored
Automatic merge from submit-queue Refactored SeedProvider and Updated Docker This is a redo of the last PR that I munged
😄 - fixed maven build folder structure - updated build to C* 3.4 - refactored Seed Provider - improved error handling, updated default SeedProvider code - added start of unit tests. Not as comprehensive as I would like - updated docker image to debian:jessie - installed openjdk 8 - added some docker fu to make the image smaller - updated docker to C* 3.4 and update yaml - updated README content. Added a section about the docker, and the SeedProvider Have not had a chance to test the docker on k8s, because I do not have a local docker repo. NOTE: someone needs to push the docker image into the google repo. Not sure what the process is ... I will submit another PR request with changes to the yaml files. -
Joe Finney authored
-
Vishnu kannan authored
Signed-off-by:Vishnu kannan <vishnuk@google.com>
-
k8s-merge-robot authored
Automatic merge from submit-queue [Networking] [E2E] n-to-1 iperf client->server throughput benchmarking
-
k8s-merge-robot authored
Automatic merge from submit-queue Port-forward: use out and error streams instead of glog Switches use of glog with command out and error streams
-
Andy Zheng authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Provide flags to use etcd3 backed storage ref: #24405 What's in this PR? - Add a new flag "storage-backend" to choose "etcd2" or "etcd3". By default (i.e. empty), it's "etcd2". - Take out etcd config code into a standalone package and let it create etcd2 or etcd3 storage backend given user input.
-
k8s-merge-robot authored
Automatic merge from submit-queue Support Close() in streaming decoder [This would be useful for changes in clients to support protobufs.]
-
k8s-merge-robot authored
Automatic merge from submit-queue Make all defaulters public Will allow for generating direct accessors in conversion code instead of using reflection. @wojtek-t
-
k8s-merge-robot authored
Automatic merge from submit-queue Fix zone in kubemark-100
-
gmarek authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Promote Pod Hostname & Subdomain to fields (were annotations) Deprecating the podHostName, subdomain and PodHostnames annotations and created corresponding new fields for them on PodSpec and Endpoints types. Annotation doc: #22564 Annotation code: #20688
-
k8s-merge-robot authored
Automatic merge from submit-queue Create OWNERS for jenkins data Assigne jenkins changes to more precise owners.
-
k8s-merge-robot authored
Automatic merge from submit-queue Slightly more effective conversion test (better variety) Exercises more code paths for debugging memory allocations.
-
Morgan Bauer authored
-
Erick Fejta authored
-
- 28 Apr, 2016 3 commits
-
-
jianhuiz authored
-
jianhuiz authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Add godoc for some kubelet funcs Chipping away at that old boulder @kubernetes/sig-node
-