Commit Graph

20172 Commits (f7bfb04665f0bce517b063a330bf7fe659f65732)

Author SHA1 Message Date
Isaac Hollander McCreery 2ab10c4772 stable-latest GKE upgrade jobs 2015-10-28 12:36:28 -07:00
k8s-merge-robot 56e5123744 Merge pull request #16360 from gmarek/framework
Auto commit by PR queue bot
2015-10-28 12:26:15 -07:00
Clayton Coleman 6f688c3df8 Improve the message for UsageError
Capitalize, also indicate that we have examples
2015-10-28 13:33:37 -04:00
Jordan Liggitt b58e62e7d4 Pass runtime.Object to Helper.Create/Replace 2015-10-28 12:43:21 -04:00
Deyuan Deng 638411d744 Wait apiserver in controller manager startup process 2015-10-29 00:15:33 +08:00
Wojciech Tyczynski 579fa74977 Add test for TimeoutSeconds parameter 2015-10-28 15:48:36 +01:00
Wojciech Tyczynski c053ef2a31 Fix computing of percentiles in Density test 2015-10-28 15:45:16 +01:00
Sami Wagiaalla 1d352a16b8 Support volume relabling for pods which specify an SELinux label 2015-10-28 09:26:58 -04:00
Jerzy Szczepkowski 1524d7490a Merge pull request #16294 from aveshagarwal/master-fix-code-duplication
Fixes code duplication.
2015-10-28 13:23:06 +01:00
k8s-merge-robot 47b15c8896 Merge pull request #16366 from jszczepkowski/autoscaling-example
Auto commit by PR queue bot
2015-10-28 03:11:28 -07:00
k8s-merge-robot ffe92cc4d4 Merge pull request #16182 from timothysc/etcd-remove-fakeclient-part2
Auto commit by PR queue bot
2015-10-28 02:02:01 -07:00
k8s-merge-robot 71f57ea6fb Merge pull request #16303 from jvalencia/master
Auto commit by PR queue bot
2015-10-28 02:01:01 -07:00
k8s-merge-robot 43c9309630 Merge pull request #16338 from janetkuo/doc-started-docker
Auto commit by PR queue bot
2015-10-28 02:00:43 -07:00
Wojciech Tyczynski adb9685fe9 Fix hack/update-codecgen.sh script 2015-10-28 09:35:43 +01:00
k8s-merge-robot d5e680afbb Merge pull request #16386 from ihmccreery/version-skew-step6
Auto commit by PR queue bot
2015-10-27 21:27:59 -07:00
k8s-merge-robot 3850579313 Merge pull request #16207 from janetkuo/kubectl-apply-tests
Auto commit by PR queue bot
2015-10-27 20:29:17 -07:00
k8s-merge-robot d695177229 Merge pull request #16054 from smarterclayton/revert_extension_syntax
Auto commit by PR queue bot
2015-10-27 19:57:15 -07:00
k8s-merge-robot d228fd6d9c Merge pull request #15809 from mikedanese/deploy
Auto commit by PR queue bot
2015-10-27 19:25:12 -07:00
k8s-merge-robot 70049d10d8 Merge pull request #15697 from piosz/autoscaling-e2e-fix
Auto commit by PR queue bot
2015-10-27 18:53:40 -07:00
k8s-merge-robot ec9b493647 Merge pull request #14639 from gmarek/hollow-proxy
Auto commit by PR queue bot
2015-10-27 18:22:38 -07:00
k8s-merge-robot a1fd0536cd Merge pull request #13980 from aveshagarwal/iptables-proxy-cleanup
Auto commit by PR queue bot
2015-10-27 17:45:35 -07:00
k8s-merge-robot 77f3c7ebf5 Merge pull request #16363 from ashcrow/disable-flake-16285
Auto commit by PR queue bot
2015-10-27 17:14:33 -07:00
Zach Loafman b71bc4e480 Fix volumes/test/nfs: Needs to run insecure to allow container connections
Since this is a container service port anyways, "insecure" is a bit of
a red herring. There's no real security relevance to the incoming port
numbers for the NFS server pod.

This lets us get rid of the examples/nfs/exporter Docker build
(@jsafrane's personal image).
2015-10-27 16:58:04 -07:00
Zach Loafman 17fd5f2536 NFS: Revamp example, add nfs-common to debian saltbase
This ensures nfs-common is installed on GCE, and provides a more
functional explanation/example. I launched two replication controllers
so that there were busybox pods to poke around at the NFS volume, and
so that the later wget actually works (the original example would have
to work on the node, or need some other access to the container
network). After switching to two controllers, it actually makes more
sense to use PV claims, and it's probably a configuration that makes
more sense for indirection for NFS anyways.
2015-10-27 16:58:04 -07:00
Daniel Smith b791642480 Merge pull request #16217 from caesarxuchao/update-versionize
versionize the include directory in definitions.md and operations.md
2015-10-27 16:42:00 -07:00
Daniel Smith 3f3ca480be Merge pull request #16080 from yujuhong/reset_defaults
Add custom pod conversion functions from pre-v1.1 mirror pods
2015-10-27 15:47:34 -07:00
Daniel Smith 19c1064293 Merge pull request #16099 from jsafrane/devel/move-ceph-image
Move CephFS test container to test/images.
2015-10-27 15:47:16 -07:00
Daniel Smith 6219b50280 Merge pull request #16160 from kargakis/windows-fixes-for-edit
edit: Windows fixes
2015-10-27 15:44:26 -07:00
Daniel Smith 424afd4cfb Merge pull request #15971 from jlowdermilk/client-http-content-type
Set Content-Type in headers of client http requests
2015-10-27 15:33:32 -07:00
k8s-merge-robot 908edd2827 Merge pull request #15943 from gmarek/grab-profiles
Auto commit by PR queue bot
2015-10-27 15:30:15 -07:00
Zach Loafman 777d3a6ec0 Spark: Update to current example standards, add GCS connector
* Pod -> ReplicationController, which also forced me to hack around
hostname issue on the master. (Spark master sees the incoming slave
request to spark-master and assumes it's not meant for it, since it's
name is spark-master-controller-abcdef.)

* Remove service env dependencies (depend on DNS instead).

* JSON -> YAML.

* Add GCS connector.

* Make example do something actually useful: A familiar example to
anyone at Google, implement wordcount of all of Shakespeare's works.

* Fix a minor service connection issue in the gluster example.
2015-10-27 15:06:34 -07:00
Tim St. Clair accb08c0ee Add kubelet raw metrics API proposal 2015-10-27 15:05:05 -07:00
Daniel Smith e1901bf891 Merge pull request #16196 from erictune/job-e2e-fix
Fix e2e test flakes.
2015-10-27 15:04:57 -07:00
Nikhil Jindal 7fade8e230 Merge pull request #16336 from nikhiljindal/versionizeTypo
Fixing a typo in versionize-docs
2015-10-27 14:51:16 -07:00
Janet Kuo a01d339216 Update tutorial about kubectl expose 2015-10-27 14:28:32 -07:00
Daniel Smith 8524d392bf Merge pull request #16178 from madhusudancs/kubelet-out-of-disk-no-master
Report node out of disk condition in the kubelet.
2015-10-27 14:28:03 -07:00
Isaac Hollander McCreery 749c036de5 Don't check version skew on step6 of upgrade jobs 2015-10-27 14:01:47 -07:00
derekwaynecarr caebe7300b Large amount of memory churn in etcd helper 2015-10-27 16:35:07 -04:00
Daniel Smith b7ecbbf744 Merge pull request #16378 from quinton-hoole/2015-10-27-promote-PD-e2e
Promote PD tests out of flaky.
2015-10-27 13:13:29 -07:00
k8s-merge-robot 8aa993266c Merge pull request #15172 from justinsb/aws_integration_tests
Auto commit by PR queue bot
2015-10-27 12:46:25 -07:00
k8s-merge-robot 0a7a9f3535 Merge pull request #16340 from timstclair/flaky-prober
Auto commit by PR queue bot
2015-10-27 12:10:22 -07:00
Avesh Agarwal c3dfd30e51 Fixes incorrect output. 2015-10-27 14:58:19 -04:00
Timothy St. Clair 4cf5b348c8 Removal of fakeClient from etcd_watcher_test in leiu of NewEtcdTestClientServer 2015-10-27 13:32:56 -05:00
k8s-merge-robot ad01a84ecb Merge pull request #11938 from justinsb/docs_aws_internals
Auto commit by PR queue bot
2015-10-27 11:30:09 -07:00
Casey D 97c9fde378 Updated ubuntu-calico.md for v1.1 2015-10-27 11:27:51 -07:00
k8s-merge-robot d6d0976d55 Merge pull request #16276 from ncdc/fix-typo
Auto commit by PR queue bot
2015-10-27 11:25:06 -07:00
Yu-Ju Hong e5c82d2292 Add custom pod conversion functions from pre-v1.1 mirror pods
The functions would default values added after v1.0, so that kubelet wouldn't
fail at comparing the mirror pods against their associated static pods.

This code would need to be maintained if we ever change the default value in
Pod until we drop support for v1.0 nodes.
2015-10-27 10:50:30 -07:00
Quinton Hoole b548a8617e Promote PD tests out of flaky.
Fixes #15382, #16377.
2015-10-27 10:36:08 -07:00
gmarek 5a4e4d4d57 Add a HollowProxy to the HollowNode. 2015-10-27 18:23:29 +01:00
Avesh Agarwal e1837185de Improves iptables cleanup for pure iptables based proxier. 2015-10-27 13:08:16 -04:00