Yu-Ju Hong
007257a5ad
kubelet: remove outdated TODOs
2016-07-14 18:28:25 -07:00
Manuel de Brito Fontes
d3d569315c
Fix make on Mac replacing sed with tr
2016-07-14 21:01:45 -04:00
Maisem Ali
e4265cebbc
Merge pull request #28980 from kubernetes/revert-28691-pv-gid-squash2
...
Revert "Remove pod mutation for PVs with supplemental GIDs"
2016-07-14 17:48:41 -07:00
Daniel Smith
360f2eb927
Revert "Remove pod mutation for PVs with supplemental GIDs"
2016-07-14 17:47:46 -07:00
PingWang
a7cea72e66
modify two wrong description about InsecurePort
...
Signed-off-by: PingWang <wang.ping5@zte.com.cn>
Update genericapiserver.go
Signed-off-by: PingWang <wang.ping5@zte.com.cn>
2016-07-15 08:29:18 +08:00
coufong
8a4c394ede
Fix a bug in mirror pod node e2e test.
2016-07-14 16:59:08 -07:00
Ron Lai
a58c774c08
Including ContainerRemoved in PLEG event reporting
2016-07-14 16:39:03 -07:00
Anirudh Ramanathan
80d4800d4b
Added instructions on turning on dynamic provisioning for testing.
...
HostPath volumes are not automatically provisioned unless we pass in `--enable-hostpath-provisioner` to the controller manager. This was not mentioned in the docs previously.
2016-07-14 15:58:30 -07:00
Mike Brown
136833f78e
devel/ tree 80col updates; and other minor edits
...
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
2016-07-14 15:07:05 -05:00
Anirudh
467333cc40
Create event only if creation of PVC failed.
2016-07-14 11:53:42 -07:00
David McMahon
ae18034920
Add RELEASE_INFRA_PUSH related code to support pushes from kubernetes/release.
2016-07-14 11:46:59 -07:00
Mike Danese
95e2e299a9
move kube-dns to the cluster/addons/ directory
2016-07-14 11:44:00 -07:00
k8s-merge-robot
3a0d2d55c3
Merge pull request #28613 from a-robinson/blog
...
Automatic merge from submit-queue
Remove crufty blog post material that isn't actually an example.
2016-07-14 11:22:14 -07:00
k8s-merge-robot
4c58621413
Merge pull request #28966 from liggitt/cache-filter
...
Automatic merge from submit-queue
Fix watch cache filtering
When serving watch events for a particular namespace, the watch cache filters out events from other namespaces by checking the etcd key of the event's object, and making sure it is prefixed with the root key for the namespace being watched.
The prefix check does not ensure the match occurs on a path segment boundary, so a watch on namespace `test` is delivered watch events for namespace `test1`.
This tightens the check to ensure the prefix match occurs on a path segment boundary.
2016-07-14 11:22:10 -07:00
k8s-merge-robot
be3175611c
Merge pull request #28691 from wongma7/pv-gid-squash2
...
Automatic merge from submit-queue
Remove pod mutation for PVs with supplemental GIDs
Continuation of https://github.com/kubernetes/kubernetes/pull/27571 to bring the feature back without pod mutation
2016-07-14 11:22:04 -07:00
Jordan Liggitt
4fcd999c25
Fix watch cache filtering
2016-07-14 13:13:17 -04:00
Clayton Coleman
b9845e7cb5
Don't double encode protobuf runtime.Unknown
...
When using runtime.Object and runtime.RawExtension, passing
runtime.Unknown to protobuf serializer should result in the raw message
being serialized (since all normal protobuf objects are
runtime.Unknown).
Also, avoid setting a content-type when decoding a protobuf object
except when the content appears to be proto.
2016-07-14 13:09:16 -04:00
Clayton Coleman
866e788aba
generate: New Stringers
2016-07-14 12:43:36 -04:00
Clayton Coleman
8c17b48824
Generate gogo stringer instead of proto stringer
...
Similar to %#v.
2016-07-14 12:43:33 -04:00
Andy Goldstein
792ec603c0
Reexport term.IsTerminal
...
Reexport term.IsTerminal so downstream consumers (e.g. OpenShift) can use it.
2016-07-14 12:29:38 -04:00
k8s-merge-robot
bea382c124
Merge pull request #28932 from smarterclayton/fix_protobuf_error
...
Automatic merge from submit-queue
Fail correctly in go-to-protobuf
We need to return earlier.
@wojtek-t
2016-07-14 09:09:42 -07:00
Charlie Drage
13cecd6e4a
Warn when missing cloud-provider on kube controller
...
This commit warns the user / gives better information that when using
--cloud-provider="" on kube-controller, that services such as
LoadBalancer will not work.
However, despite the error, kube-controller will still run as normal.
Fixes https://github.com/kubernetes/kubernetes/issues/12716
Fixes https://github.com/kubernetes/kubernetes/issues/11172
Fixes https://github.com/kubernetes/kubernetes/issues/27085
2016-07-14 11:54:35 -04:00
k8s-merge-robot
03be7117a4
Merge pull request #28882 from gmarek/ratelimiter
...
Automatic merge from submit-queue
Allow switching rate limiter inside RateLimitedQueue
Ref. #28832
cc @davidopp
```release-note
Deprecate deleting-pods-burst ControllerManager flag
```
2016-07-14 08:44:35 -07:00
k8s-merge-robot
673b486776
Merge pull request #28957 from ziyadbasheer/patch-1
...
Automatic merge from submit-queue
Update CONTRIBUTING.md
```release-note
* Rewrote two sentences.
```
2016-07-14 08:03:44 -07:00
k8s-merge-robot
98d769cf3d
Merge pull request #27943 from ivan4th/refactor-printer-arguments
...
Automatic merge from submit-queue
Refactor Printer arguments
<!--
Checklist for submitting a Pull Request
Please remove this comment block before submitting.
1. Please read our [contributor guidelines](https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md ).
2. See our [developer guide](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md ).
3. If you want this PR to automatically close an issue when it is merged,
add `fixes #<issue number>` or `fixes #<issue number>, fixes #<issue number>`
to close multiple issues (see: https://github.com/blog/1506-closing-issues-via-pull-requests ).
4. Follow the instructions for [labeling and writing a release note for this PR](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes ) in the block below.
-->
[]()
Fixes #21260
2016-07-14 08:03:40 -07:00
k8s-merge-robot
50172148e4
Merge pull request #25273 from ncdc/exec-sigwinch
...
Automatic merge from submit-queue
Support terminal resizing for exec/attach/run
```release-note
Add support for terminal resizing for exec, attach, and run. Note that for Docker, exec sessions
inherit the environment from the primary process, so if the container was created with tty=false,
that means the exec session's TERM variable will default to "dumb". Users can override this by
setting TERM=xterm (or whatever is appropriate) to get the correct "smart" terminal behavior.
```
Fixes #13585
2016-07-14 07:26:49 -07:00
Angus Salkeld
5c3eea15eb
e2e.go --isup should also check the version
...
fixes #18667
2016-07-14 16:20:30 +02:00
gmarek
f6b1c316e9
Allow switching rate limiter inside RateLimitedQueue
2016-07-14 15:38:14 +02:00
k8s-merge-robot
6558b30f11
Merge pull request #28931 from smarterclayton/fix_conversions
...
Automatic merge from submit-queue
genconversion=false should skip fields during conversion generation
Currently it only skips if the fields don't match, but that leaves no
way for callers to say "no really, ignore this field".
@wojtek-t @thockin *must* be able to ignore a non-convertible field (if the types are different but we still want the autogeneration of everything else)
2016-07-14 06:36:27 -07:00
ziyadbasheer
b7494a59e2
Update CONTRIBUTING.md
...
Rewrote a few sentences.
2016-07-14 16:33:34 +03:00
Wojciech Tyczynski
a23f7bd556
Few more optimizations of priority functions in scheduler
2016-07-14 15:32:56 +02:00
Ivan Shvedunov
5ed881c6c4
Refactor Printer arguments
...
Fixes #21260
2016-07-14 16:23:02 +03:00
k8s-merge-robot
c94976570f
Merge pull request #28917 from wonderfly/gci-family
...
Automatic merge from submit-queue
e2e-runner: Update the image family used for GCI canary test images
@Amey-D @spxtr Can you review?
@Random-Liu Heads up
cc/ @kubernetes/goog-image
2016-07-14 06:02:40 -07:00
k8s-merge-robot
6bb0995c89
Merge pull request #28886 from wojtek-t/fix_schedulercache_bug
...
Automatic merge from submit-queue
Add ForgetPod to SchedulerCache
Fix #28883
@gmarek @davidopp @xiang90
2016-07-14 05:30:23 -07:00
k8s-merge-robot
cdb4df8ea5
Merge pull request #26908 from pmorie/pv-dynprov
...
Automatic merge from submit-queue
dynamic provisioning proposal
Proposal for dynamic provisioning using storage classes; supercedes #17056
@kubernetes/sig-storage
2016-07-14 04:54:37 -07:00
k8s-merge-robot
74c5b4e4be
Merge pull request #28459 from ping035627/ping035627-patch-0704
...
Automatic merge from submit-queue
Optimise the process of the CalculateSpreadPriority in selector_spreading.go
It had better inspect if the nodeLister is normal first in the CalculateSpreadPriority in selector_spreading.go. If the nodeLister.List return error, the function return directly, not need deal the serviceLister and controllerLister and replicaSetLister.
2016-07-14 04:54:32 -07:00
deads2k
f6f1ab34aa
authorize based on user.Info
2016-07-14 07:48:42 -04:00
k8s-merge-robot
ae990defcf
Merge pull request #26956 from joe2far/fix-typos
...
Automatic merge from submit-queue
Fixed several typos
2016-07-14 04:13:15 -07:00
Wojciech Tyczynski
31d09f5290
Merge pull request #28948 from soltysh/issue28941
...
Fix issue with closing channels in job controller tests
2016-07-14 13:01:50 +02:00
k8s-merge-robot
06939c57aa
Merge pull request #20699 from jiangyaoguo/add-AvoidPreviousNode
...
Automatic merge from submit-queue
Implement alpha version of PreferAvoidPods
This is part of #18853
<!-- 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/20699 )
<!-- Reviewable:end -->
2016-07-14 03:30:25 -07:00
Maciej Szulik
fd76f71fd5
Fix issue with closing channels in job controller tests
2016-07-14 12:09:12 +02:00
k8s-merge-robot
febd37b148
Merge pull request #28164 from intelsdi-x/dont_set_provider_for_conformance_tests
...
Automatic merge from submit-queue
Unset KUBERNETES_PROVIDER when KUBERNETES_CONFORMANCE_TEST is set
fixes #26269
same as #26530 - i accidentally lost my fork and couldn't rebase there ;)
@mikedanese PTAL
2016-07-14 02:53:08 -07:00
Jan Safranek
7aa61dd0ff
Dynamic provisioning proposal
2016-07-14 10:14:06 +02:00
Marek Grabowski
339c6924b2
Merge pull request #28942 from kubernetes/revert-28805-ssh-dial-timeout
...
Revert "Add a customized ssh dialer that will timeout"
2016-07-14 09:05:39 +02:00
PingWang
4e9b8b15c5
Improve fatal error description
...
Signed-off-by: PingWang <wang.ping5@zte.com.cn>
2016-07-14 15:03:31 +08:00
Wojciech Tyczynski
4b9b1afe76
Revert "Add a customized ssh dialer that will timeout"
2016-07-14 08:48:24 +02:00
k8s-merge-robot
f27a8034fd
Merge pull request #28911 from thockin/fix-gendocs-for-symlinks
...
Automatic merge from submit-queue
Don't panic if we hit a dangling symlink in mungedocs
I hit this because I have a dangling symlink, which would cause a panic.
2016-07-13 20:55:34 -07:00
PingWang
97b4a6fa42
optimise the New function
...
Signed-off-by: PingWang <wang.ping5@zte.com.cn>
2016-07-14 11:43:53 +08:00
Clayton Coleman
0d26c2efd4
Unable to have optional message slice
...
When making a message slice optional, we need to handle one more
conditional case in the rewriter.
2016-07-13 23:10:44 -04:00
Clayton Coleman
c55f47c4c9
Fail correctly in go-to-protobuf
...
We need to return earlier.
2016-07-13 23:02:45 -04:00