Zach Loafman
c7f1485e1b
Redo v1.4.0-alpha.0
2016-06-14 09:01:41 -07:00
k8s-merge-robot
5fbde0a9c3
Merge pull request #27270 from piosz/hpa-docs
...
Automatic merge from submit-queue
Added warning to hpa design doc
fix #22797
cc @davidopp
[]()
2016-06-14 02:13:49 -07:00
k8s-merge-robot
10255f8aec
Merge pull request #26951 from madhusudancs/fed-detect-project-registry-base
...
Automatic merge from submit-queue
Detect the project in which the federation of clusters are being created and point the federation docker registry to that project.
Only the last commit here needs review.
Depends on #26950 .
cc @colhom @kubernetes/sig-cluster-federation
[]()
2016-06-13 06:00:04 -07:00
Piotr Szczesniak
dc8c631afd
Added warning to hpa design doc
2016-06-13 14:26:37 +02:00
Madhusudan.C.S
c7a4401359
Default to GCR as the image registry if the provider is GCE or GKE.
2016-06-13 02:08:59 -07:00
k8s-merge-robot
911e84ed1e
Merge pull request #26710 from sttts/sttts-fix-seccomp-annotations
...
Automatic merge from submit-queue
Move /seccomp/ into domain prefix in seccomp annotations
Fixes #26610 .
/cc @mdshuai @ncdc @jfrazelle
2016-06-11 07:03:50 -07:00
Dawn Chen
88de86fcb9
Revert "Versioning docs and examples for v1.4.0-alpha.0."
...
This reverts commit cce9db3aa9
.
2016-06-10 16:46:46 -07:00
Dawn Chen
9ee6809586
Revert "Update the latestReleaseBranch to release-1.3 in the munger."
...
This reverts commit 3beed6e1aa
.
2016-06-10 16:46:11 -07:00
David McMahon
3beed6e1aa
Update the latestReleaseBranch to release-1.3 in the munger.
2016-06-10 14:55:46 -07:00
David McMahon
cce9db3aa9
Versioning docs and examples for v1.4.0-alpha.0.
2016-06-10 14:55:35 -07:00
David McMahon
fd1377a16b
Versioning docs and examples for v1.4.0-alpha.0.
2016-06-10 14:21:20 -07:00
k8s-merge-robot
6a388d4a0d
Merge pull request #27072 from colhom/federation-e2e-docs
...
Automatic merge from submit-queue
Updating e2e docs with instructions on running federation tests
Last two commits are for review. Depends on #26951
\cc @madhusudancs @quinton-hoole @nikhiljindal
[]()
2016-06-09 19:14:11 -07:00
Colin Hom
5f7c7ad195
document federation e2e cli flow
2016-06-09 15:11:52 -07:00
Daniel Smith
1d25410c3b
Run new update-generated-docs.sh script
2016-06-08 17:25:21 -07:00
Daniel Smith
adcd48ccea
update documentation & hooks
2016-06-08 17:22:12 -07:00
Matt Liggett
d09af4a1d6
Stop 'drain' deleting pods with local storage.
...
Unless forced with --delete-local-data. Also a refactoring of the
kubectl drain logic that selects/rejects pods and produces error/warning
messages.
2016-06-08 14:59:03 -07:00
k8s-merge-robot
525a56eff8
Merge pull request #26832 from pwittrock/node-e2e-makefile
...
Automatic merge from submit-queue
Node e2e Makefile support for running remote tests against kubernetes…
Fixes #26665
[]()
…-node-e2e-images.
2016-06-08 14:25:28 -07:00
Phillip Wittrock
e94e1c6e3d
Node e2e Makefile support for running remote tests against kubernetes-node-e2e-images.
...
Also includes other improvements:
- Makefile rule to run tests against remote instance using existing host or image
- Makefile will reuse an instance created from an image if it was not torn down
- Runner starts gce instances in parallel with building source
- Runner uses instance ip instead of hostname so that it doesn't need to resolve
- Runner supports cleaning up files and processes on an instance without stopping / deleting it
- Runner runs tests using `ginkgo` binary to support running tests in parallel
2016-06-08 07:31:54 -07:00
Eric Paris
2fba6d2d63
update automation.md
2016-06-07 17:30:50 -04:00
k8s-merge-robot
7476d97781
Merge pull request #26389 from brendandburns/credo
...
Automatic merge from submit-queue
Add the criteria for including new APIs
@bgrant0607 @smarterclayton @davidopp @thockin @jbeda
As discussed in community meeting today.
2016-06-06 23:08:48 -07:00
Huamin Chen
4b4048a084
correction on rbd volume object and defaults
...
Signed-off-by: Huamin Chen <hchen@redhat.com>
2016-06-06 17:27:47 +00:00
Dr. Stefan Schimanski
ad6bd78007
Move /seccomp/ into domain prefix in seccomp annotations
...
Double slashes are not allowed in annotation keys. Moreover, using the 63
characters of the name component in an annotation key will shorted the space
for the container name.
2016-06-06 14:08:17 +02:00
David Oppenheimer
68097515d8
Merge pull request #26638 from mikedanese/death_to_podmaster
...
remove podmaster from high availability example configs
2016-06-05 14:04:59 -07:00
pwittrock
c74997508e
Node e2e use vendored testing packages.
2016-06-03 17:01:50 -07:00
k8s-merge-robot
525140a278
Merge pull request #26693 from AdoHe/init_containers
...
Automatic merge from submit-queue
exec support init containers
Partially fixes #25818
@smarterclayton ptal.
2016-06-03 10:13:49 -07:00
AdoHe
1cfcb24f37
exec support init container
2016-06-03 02:05:15 -04:00
Saad Ali
9dbe943491
Attach/Detach Controller Kubelet Changes
...
This PR contains Kubelet changes to enable attach/detach controller control.
* It introduces a new "enable-controller-attach-detach" kubelet flag to
enable control by controller. Default enabled.
* It removes all references "SafeToDetach" annoation from controller.
* It adds the new VolumesInUse field to the Node Status API object.
* It modifies the controller to use VolumesInUse instead of SafeToDetach
annotation to gate detachment.
* There is a bug in node-problem-detector that causes VolumesInUse to
get reset every 30 seconds. Issue https://github.com/kubernetes/node-problem-detector/issues/9
opened to fix that.
2016-06-02 16:47:11 -07:00
Brendan Burns
736fba2b86
Add the criteria for including new APIs
2016-06-02 09:43:11 -07:00
k8s-merge-robot
8c66ffbddc
Merge pull request #26581 from caesarxuchao/continue-25746
...
Automatic merge from submit-queue
fix kubectl patch example
Based on https://github.com/kubernetes/kubernetes/pull/25746 , fix the kubectl example.
cc @tobstarr
2016-06-02 07:48:07 -07:00
k8s-merge-robot
1288106608
Merge pull request #26676 from nikhiljindal/admissionControl
...
Automatic merge from submit-queue
federation: Update the list of supported admission controls
Ref https://github.com/kubernetes/kubernetes/pull/26298#issuecomment-221697124
In 1.3, we are going to support only AlwaysAdmit and AlwaysDeny admission controls.
Updating the documentation accordingly.
@kubernetes/sig-cluster-federation
2016-06-02 06:05:15 -07:00
nikhiljindal
fe3cba94bf
Update the list of supported admission controls
2016-06-01 18:51:09 -07:00
k8s-merge-robot
401da26068
Merge pull request #26635 from derekwaynecarr/fix_formating
...
Automatic merge from submit-queue
Fix table formatting in eviction proposal
/cc @vishh - table was not formatted properly.
2016-06-01 18:51:00 -07:00
Mike Danese
6c70ea3398
remove podmaster from high availability example configs
2016-06-01 09:58:31 -07:00
derekwaynecarr
1cf90a8f70
Fix table formatting in eviction proposal
2016-06-01 10:44:44 -04:00
Dr. Stefan Schimanski
026804c2be
Fix kubectl --attach decription with deprecated --interactive
2016-06-01 13:21:39 +02:00
k8s-merge-robot
ee412efcef
Merge pull request #26335 from girishkalele/kubedns-transition
...
Automatic merge from submit-queue
Switch DNS addons from skydns to kubedns
Change GCI and trusty cluster-helper scripts to use kubedns instead of skydns.
2016-05-31 16:14:48 -07:00
k8s-merge-robot
5288a255f4
Merge pull request #25567 from gmarek/validate
...
Automatic merge from submit-queue
Add Controller field to OwnerReference
cc @davidopp
2016-05-31 14:21:38 -07:00
Chao Xu
216649b822
fix kubectl patch example
2016-05-31 11:45:12 -07:00
k8s-merge-robot
d957e78a41
Merge pull request #25253 from soltysh/issue24533
...
Automatic merge from submit-queue
kubectl run --restart=Never creates pods
Fixes #24533 .
@bgrant0607 @janetkuo ptal
/fyi @thockin
```release-note
* kubectl run --restart=Never creates pods
```
[]()
2016-05-31 11:44:05 -07:00
gmarek
778b1df717
Add Controller to api/meta
2016-05-31 20:21:05 +02:00
Girish Kalele
4c1047d359
Switch DNS addons from skydns to kubedns
...
Unified skydns templates using a simple underscore based template and
added transform sed scripts to transform into salt and sed yaml
templates
Moved all content out of cluster/addons/dns into build/kube-dns and
saltbase/salt/kube-dns
2016-05-31 10:14:14 -07:00
k8s-merge-robot
38181bb3fb
Merge pull request #25917 from pmorie/pv-selector
...
Automatic merge from submit-queue
Add LabelSelector to PersistentVolumeClaimSpec
Implements #25413 .
@kubernetes/sig-storage @bgrant0607 @thockin @jsafrane @eparis
2016-05-31 08:22:07 -07:00
gmarek
a6dd89d797
Add Controller field to OwnerReference
2016-05-31 15:33:35 +02:00
Paul Morie
acfcb73533
Regen for pv selector
2016-05-31 09:32:23 -04:00
Piotr Szczesniak
22dc21d703
Removed metrics api group
2016-05-31 09:48:39 +02:00
k8s-merge-robot
9aeeef1d81
Merge pull request #26414 from jsafrane/reduce-sync-period
...
Automatic merge from submit-queue
Reduce volume controller sync period
fixes #24236 and most probably also fixes #25294 .
Needs #25881 ! With the cache, binder is not affected by sync period. Without the cache, binding of 1000 PVCs takes more than 5 minutes (instead of ~70 seconds).
15 seconds were chosen by fair 2d10 roll :-)
2016-05-30 05:54:51 -07:00
Jan Safranek
2aa9f1dd8f
Reduce volume controller sync period
2016-05-30 09:59:31 +02:00
Dr. Stefan Schimanski
9e25d9f614
Run hack/update-generated-docs.sh
2016-05-30 07:28:48 +02:00
Chao Xu
b3df629432
add gc and its enablement flag to kube-controller-manager
2016-05-28 14:12:33 -07:00
mfanjie
6133db345f
add federation service controller
2016-05-29 00:25:07 +08:00