Robert Bailey
abf9d227fd
Update the large cluster parameters to reflect the 1.1 release.
2016-01-06 14:54:15 -08:00
k8s-merge-robot
66d3cbf889
Merge pull request #16900 from madhusudancs/avoid-kubelet-oscillation
...
Auto commit by PR queue bot
2016-01-05 17:14:13 -08:00
Sergey Tiraspolsky
f91828899f
Add zone back in to cluster management doc
...
Addressing PR comments
2016-01-04 17:56:41 -08:00
Sergey Tiraspolsky
ef4359ab7e
Fix cluster management doc
...
Update cluster management doc with correct command to resize cluster
2016-01-04 17:08:50 -08:00
k8s-merge-robot
236683fe29
Merge pull request #18357 from gmarek/expose-master-components
...
Auto commit by PR queue bot
2016-01-04 14:32:17 -08:00
Madhusudan.C.S
059c2aa799
Mitigate node out of disk status oscillation by delaying it.
...
Implement a flag that defines the frequency at which a node's out of
disk condition can change its status. Use this flag to suspend out of
disk status changes in the time period specified by the flag, after
the status is changed once.
Set the flag to 0 in e2e tests so that we can predictably test out of
disk node condition.
Also, use util.Clock interface for all time related functionality in
the kubelet. Calling time functions in unversioned package or time
package such as unversioned.Now() or time.Now() makes it really hard
to test such code. It also makes the tests flaky and sometimes
unnecessarily slow due to time.Sleep() calls used to simulate the
time elapsed. So use util.Clock interface instead which can be faked
in the tests.
2016-01-04 12:23:38 -08:00
Ravi Sankar Penta
a9b0696166
Update auto generated docs for kubelet
...
Add node-ip flag to know-flags.txt
2016-01-03 10:18:58 -08:00
k8s-merge-robot
4f65f68a12
Merge pull request #19182 from thockin/kube-proxy-conntrack-max
...
Auto commit by PR queue bot
2016-01-02 02:36:18 -08:00
Justin Santa Barbara
f9a6ac077e
Ubernetes Lite: Volumes can dictate zone scheduling
...
For AWS EBS, a volume can only be attached to a node in the same AZ.
The scheduler must therefore detect if a volume is being attached to a
pod, and ensure that the pod is scheduled on a node in the same AZ as
the volume.
So that the scheduler need not query the cloud provider every time, and
to support decoupled operation (e.g. bare metal) we tag the volume with
our placement labels. This is done automatically by means of an
admission controller on AWS when a PersistentVolume is created backed by
an EBS volume.
Support for tagging GCE PVs will follow.
Pods that specify a volume directly (i.e. without using a
PersistentVolumeClaim) will not currently be scheduled correctly (i.e.
they will be scheduled without zone-awareness).
2015-12-31 12:27:01 -05:00
Tim Hockin
da0ac31182
Set conntrack params in kube-proxy
...
Add flags to control max connections (set to 256k vs 64k default) and TCP
established timeout (set to 1 day vs 5 day default). Flags can be set to 0 to
mean "don't change it".
This is only set at startup, and not wrapped in a rectifier loop.
Tested manually.
2015-12-30 15:46:40 -08:00
k8s-merge-robot
fec5206f1a
Merge pull request #13840 from nelcy/master
...
Auto commit by PR queue bot
2015-12-28 23:55:32 -08:00
k8s-merge-robot
500493a3ac
Merge pull request #18925 from caesarxuchao/refactor-registration
...
Auto commit by PR queue bot
2015-12-24 15:19:36 -08:00
k8s-merge-robot
e340cce2ed
Merge pull request #15423 from hurf/convert_cleanup
...
Auto commit by PR queue bot
2015-12-24 00:34:37 -08:00
Chao Xu
2b5b708b70
Refactor the API registration and installation
2015-12-23 22:44:25 -08:00
k8s-merge-robot
e185b1028a
Merge pull request #18909 from ncdc/force-image-pulls-admission
...
Auto commit by PR queue bot
2015-12-23 14:53:31 -08:00
Chakravarthy Nelluri
fa76de79e5
Add support for flex volume. Flex volume adds support for thirdparty(vendor)
...
volumes and custom mounts.
2015-12-23 14:11:38 -08:00
gmarek
a4202cbee9
Scheduler and ControllerManager listens on 0.0.0.0
2015-12-23 08:33:25 +01:00
hurf
763edd3011
Clean up standalone conversion tool
...
Remove kube-version-change for all its functionalities are covered
by kubectl convert command. Also changed the related docs.
2015-12-23 10:31:08 +08:00
Brendan Burns
4ca66d2aef
Merge pull request #18047 from caesarxuchao/munger-tag-new
...
Stop munger produce the link to a release version doc if it doesn't exit in the release branch
2015-12-22 10:35:20 -08:00
Andy Goldstein
f175a22443
Add admission controller to force image pulls
...
Add an admission controller that forces every container's image pull policy to
Always when a pod is created.
2015-12-22 10:32:40 -05:00
Ed Costello
f968c593e3
Copy edits for typos
2015-12-22 09:30:48 -05:00
HaiyangDING
d9f3607292
Implement multi-scheduler:
...
1. Name default scheduler with name `kube-scheduler`
2. The default scheduler only schedules the pods meeting the following condition:
- the pod has no annotation "scheduler.alpha.kubernetes.io/name: <scheduler-name>"
- the pod has annotation "scheduler.alpha.kubernetes.io/name: kube-scheduler"
update gofmt
update according to @david's review
run hack/test-integration.sh, hack/test-go.sh and local e2e.test
2015-12-22 10:49:40 +08:00
Chao Xu
2b2f285777
run hack/update-generated-docs.sh
2015-12-21 10:41:30 -08:00
k8s-merge-robot
2eea4c0e8f
Merge pull request #18819 from wojtek-t/flag_gate_second_etcd
...
Auto commit by PR queue bot
2015-12-20 00:36:58 -08:00
k8s-merge-robot
1562d84c96
Merge pull request #18628 from mikedanese/expose-master-count
...
Auto commit by PR queue bot
2015-12-19 12:42:05 -08:00
Mike Danese
a09d85bd83
expose master count configuration in a cli option on apiserver
2015-12-18 13:10:41 -08:00
Wojciech Tyczynski
0209792f7b
Update docs about etcd for events
2015-12-18 12:11:42 +01:00
Janet Kuo
32d153093e
Fix deployment tests failures; change ResyncPeriod
2015-12-17 19:29:54 -08:00
k8s-merge-robot
548cfbf058
Merge pull request #18358 from gmarek/use-proxy
...
Auto commit by PR queue bot
2015-12-17 06:37:55 -08:00
nikhiljindal
2d952aaa87
Extracting APIServer machinery code into a library
2015-12-16 13:54:23 -08:00
gmarek
4852ca23ef
Make getSchedulingLatency use master proxy
2015-12-14 16:08:34 +01:00
nikhiljindal
724b098855
Deleting unused master.ClusterName param
2015-12-11 13:39:19 -08:00
markturansky
4fc1bf1f23
Added PersistentVolumeController
2015-12-11 10:33:30 -05:00
k8s-merge-robot
d3243b8778
Merge pull request #18383 from timothysc/tools_removal
...
Auto commit by PR queue bot
2015-12-11 07:17:14 -08:00
k8s-merge-robot
4a22f2f5f5
Merge pull request #18177 from eosrei/1111-doc-machine-names
...
Auto commit by PR queue bot
2015-12-10 21:42:08 -08:00
k8s-merge-robot
2a5e83ad70
Merge pull request #17924 from xinxiaogang/master
...
Auto commit by PR queue bot
2015-12-10 11:14:10 -08:00
Timothy St. Clair
413d8d18fe
Futher storage isolation and removal of the tools interface.
2015-12-09 11:04:14 -06:00
k8s-merge-robot
d71e838d91
Merge pull request #17760 from gmarek/kubelet-port-salt
...
Auto commit by PR queue bot
2015-12-08 21:14:10 -08:00
k8s-merge-robot
94752c12a8
Merge pull request #18128 from ZJU-SEL/fix-typo
...
Auto commit by PR queue bot
2015-12-07 15:59:08 -08:00
gmarek
4060eba626
Use KubeletPort from API object, salt changes, take 2
...
This reverts commit a7425bf070
, reversing
changes made to 4a9b0fc715
.
2015-12-07 10:31:11 +01:00
k8s-merge-robot
db11f1b6c6
Merge pull request #17133 from derekwaynecarr/quota_controller_improvements
...
Auto commit by PR queue bot
2015-12-06 12:24:00 -08:00
Brad Erickson
ac5726a12f
Minion->Node rename: docs/ machine names only, except gce/aws
2015-12-03 23:34:50 -08:00
He Simei
387d861d4e
deprecate confusing flag usage
2015-12-04 09:09:23 +08:00
derekwaynecarr
55d4f70f8e
Resource quota observes deletes faster
2015-12-03 17:35:05 -05:00
Jordan Liggitt
2321651518
Add non-resource and API group support to ABAC authorizer, version ABAC policy rules
2015-12-03 12:31:13 -05:00
Xin
128ce59bf1
Issue# 17860 Correct expression of nodecontroller for sync loop in node.html
...
1. Remove "creates" from the sentence
2. Add general explaination for nodecontaoller
https://github.com/kubernetes/kubernetes/issues/17860
2015-12-03 09:20:26 +08:00
gmarek
459131fd92
Use KubeletPort reported in NodeStatus instead of cluster-wide master config, take 2.
2015-12-02 13:38:17 +01:00
k8s-merge-robot
3cc588b5be
Merge pull request #17850 from sdminonne/bug_fix3
...
Auto commit by PR queue bot
2015-11-27 01:15:02 -08:00
k8s-merge-robot
c7cddbefc9
Merge pull request #17697 from dchen1107/event
...
Auto commit by PR queue bot
2015-11-26 13:42:05 -08:00
Salvatore Dario Minonne
479afa4bd2
updating resourcequota/README.md
2015-11-26 22:39:48 +01:00
k8s-merge-robot
0c4f302e5e
Merge pull request #17601 from eosrei/shell-var-MINION-to-NODE
...
Auto commit by PR queue bot
2015-11-26 05:02:44 -08:00
k8s-merge-robot
e09dd8df47
Merge pull request #17537 from ihmccreery/upgrading-masters-docs
...
Auto commit by PR queue bot
2015-11-25 18:39:02 -08:00
Brad Erickson
53172a5356
Minion->Node rename: NUM_NODES
2015-11-25 00:45:10 -08:00
Prashanth Balasubramanian
9aa0efa393
Turn flannel off by default
2015-11-25 09:43:48 +01:00
Prashanth Balasubramanian
ad2d3d4c20
Docs etc
2015-11-25 09:42:59 +01:00
jiangyaoguo
e3ea9d7c40
add separate client for events in kubelet
2015-11-25 01:28:34 +08:00
k8s-merge-robot
683e908f0a
Merge pull request #17265 from gambol99/rj/node_labels
...
Auto commit by PR queue bot
2015-11-24 06:55:31 -08:00
Dawn Chen
0b734cec93
Have a sane default for RegistryPullQPS
2015-11-23 17:14:15 -08:00
Mike Danese
65b8d43543
remove code that puts kube-proxy into a special cgroup since it runs in a container now
2015-11-23 10:20:58 -08:00
k8s-merge-robot
68d691858a
Merge pull request #17255 from derekwaynecarr/add_default_to_header
...
Auto commit by PR queue bot
2015-11-21 17:05:13 -08:00
k8s-merge-robot
d25cffef55
Merge pull request #17381 from caesarxuchao/add-blob
...
Auto commit by PR queue bot
2015-11-20 05:32:31 -08:00
Isaac Hollander McCreery
96cd51066d
Update docs for how to perform upgrades
2015-11-19 14:46:46 -08:00
Rohith
c2526c93fa
- adding the -node-label flag to the kubelet which allows for a initial tagging / labelling of the node on cluster registration
...
- the labels can come from a series of key=pair value or file:///path_to_file which contains key pairs
2015-11-18 23:20:58 +00:00
Chao Xu
0c913ed5a1
change HEAD to blob/HEAD, and add blob in versioned-docs.sh
2015-11-16 17:13:49 -08:00
Greg Taylor
fd79010fd7
Spelling fix in daemons.md
...
DeamonSet->DaemonSet
2015-11-16 16:05:32 -08:00
Jeff Lowdermilk
70d89a3541
Merge pull request #13571 from yujuhong/lifecycle_v0
...
kubelet: add a generic pod lifecycle event generator
2015-11-16 14:59:40 -08:00
k8s-merge-robot
65c285f5ab
Merge pull request #16344 from thockin/enable-iptables-proxy
...
Auto commit by PR queue bot
2015-11-16 09:48:38 -08:00
Matt Moore
b750d1dddc
Drop the beta for GCR v2 images.
...
beta.gcr.io is no longer needed to pull through v2.
2015-11-14 12:19:02 -08:00
Tim Hockin
970c045848
Enable iptables kube-proxy by default in master
2015-11-13 18:38:01 -08:00
derekwaynecarr
138315266d
Improve describe for LimitRange resource based on user feedback
2015-11-13 17:02:54 -05:00
Tim Hockin
dab591b629
Run update-gendocs
2015-11-13 13:57:57 -08:00
k8s-merge-robot
6a34b2cc04
Merge pull request #16411 from feihujiang/deleteSimpleYamlDocInUserGuide
...
Auto commit by PR queue bot
2015-11-13 11:13:23 -08:00
k8s-merge-robot
0f7b1b4d3a
Merge pull request #17224 from mikedanese/undeprecate-static
...
Auto commit by PR queue bot
2015-11-13 10:52:20 -08:00
Yu-Ju Hong
ac778e8203
Adjust the sync/backoff period
...
Set resyncInterval to one minute now that we rely on the generic pleg to trigger
pod syncs on container events. When there is an error during syncing, pod
workers need to wake up sooner to retry. Set the sync error backoff period to
10 second in this case.
2015-11-13 09:57:25 -08:00
Mike Danese
bb0e2e6de7
undeprecated static pods in the docs
2015-11-13 09:40:38 -08:00
Abhi Shah
051e9fe837
Fix Env Var Name in daemonset documentation
2015-11-13 09:24:09 -08:00
feihujiang
ef0239a08b
Delete the simple-yaml.md example
2015-11-12 13:48:52 +08:00
Jan Chaloupka
53419ee971
doc: correct member 'the the -> the' (two 'the' member into one 'the' member)
2015-11-11 22:54:25 +01:00
Avesh Agarwal
f111033641
Fix defaults for MaxPods and MaxOpenFiles.
...
Fix go formatting and docs.
2015-11-10 12:20:54 -05:00
k8s-merge-robot
1831a057f1
Merge pull request #16694 from jbeda/update-etcd
...
Auto commit by PR queue bot
2015-11-05 03:27:26 -08:00
k8s-merge-robot
c3a072768b
Merge pull request #16728 from markturansky/lengthen_pv_sync
...
Auto commit by PR queue bot
2015-11-05 00:35:12 -08:00
Joe Beda
993c1ee222
Update etcd to 2.2.1
2015-11-04 12:26:57 -08:00
k8s-merge-robot
8e5f3a3f9b
Merge pull request #16761 from roberthbailey/supervisord
...
Auto commit by PR queue bot
2015-11-04 02:28:38 -08:00
markturansky
468bc39a63
Lengthened pvsync period
2015-11-04 00:42:44 -05:00
Robert Bailey
d5bb12134e
Replace monit with supervisord in documentation.
2015-11-03 16:20:02 -08:00
derekwaynecarr
b403e30d1a
Kubelet serialize image pulls had incorrect default
2015-11-03 15:24:01 -05:00
Mike Danese
67f46aa1f1
autogenerated
2015-10-31 12:26:54 -07:00
nikhiljindal
72db55eb26
Fixing how to enable daemonsets
2015-10-30 12:28:10 -07:00
k8s-merge-robot
a1e3a1c39a
Merge pull request #16328 from erictune/scratch-addons
...
Auto commit by PR queue bot
2015-10-29 01:32:11 -07:00
Eric Tune
0869e01342
Improve addons documentation.
...
Longer description of Addons in Admin Guide to Cluster Components.
Mention fluentd as node component in Admin Guide to Cluster Components.
From docs/getting-started-guides/scratch.md add refs to setting up
DNS, Logging, Monitoring, and GUI.
Add TOCs to several pages that were referenced.
Fixes #16235
2015-10-27 08:28:55 -07:00
Andy Goldstein
325e0ce68b
Fix kubelet help typo
...
Fix double percent (%%) typo for image-gc-high-threshold and
image-gc-low-threshold help text.
2015-10-26 10:37:46 -04:00
feisky
13dce74adb
Gendocs for docs/admin/kube-*
2015-10-25 19:24:23 +08:00
Tim Hockin
5c903dbcac
Merge pull request #16073 from caesarxuchao/fix-htmlpreview-on-head
...
fix htmlpreview links to point to subdictory
2015-10-23 13:32:29 -07:00
Tim Hockin
5390a93f4b
csv is not a know syntax, messes up gh-pages
2015-10-23 12:37:56 -07:00
Saad Ali
a5c3c16994
Merge pull request #15981 from nikhiljindal/docsUpdate
...
Updating documentation to reflect the latest status of extension resources
2015-10-23 12:07:31 -07:00
Filip Grzadkowski
5f7fea2f35
Merge pull request #15974 from gambol99/rj/groups_fields_quoted
...
single column groups option in tokenfile
2015-10-23 14:06:25 +02:00
Chao Xu
316bd058d0
fix htmlpreview links to point to subdictory
2015-10-21 15:46:52 -07:00
nikhiljindal
72914fd81b
Updating documentation to reflect the latest status of extension resources
2015-10-21 13:03:33 -07:00
Rohith
ee691aa1ab
[tokenfile]
...
- the groups field has been changed to a single column option as requested in https://github.com/kubernetes/kubernetes/pull/15704
[docs]
- updated the docs related the the tokefile along with an example
2015-10-21 10:37:35 +01:00
k8s-merge-robot
b6ac469eaf
Merge pull request #13724 from HaiyangDING/update_limitrange_example
...
Auto commit by PR queue bot
2015-10-21 02:20:33 -07:00
dinghaiyang
5cc6433a05
update limitrange example
2015-10-21 09:48:44 +08:00
k8s-merge-robot
a2b6fea452
Merge pull request #15704 from gambol99/rj/add_groups_tokenfile
...
Auto commit by PR queue bot
2015-10-20 07:16:13 -07:00
k8s-merge-robot
77a68448c7
Merge pull request #15919 from brendandburns/docs2
...
Auto commit by PR queue bot
2015-10-20 03:35:45 -07:00
Rohith
f02c80584b
[plugin/auth/tokenfile]
...
- allowing for variable length groups to be added to the static token file
[docs/admin/authentication]
- updating the documentation for token file
2015-10-19 17:14:14 +01:00
Brendan Burns
6827900a8d
Fix a deprecated 'replace' command with a 'patch' command.
2015-10-16 14:34:37 -07:00
k8s-merge-robot
3744ea8ce6
Merge pull request #15425 from Dingshujie/fix_dns_doc
...
Auto commit by PR queue bot
2015-10-15 13:37:03 -07:00
k8s-merge-robot
5d66bf9741
Merge pull request #15519 from ihmccreery/upgrade-versioning
...
Auto commit by PR queue bot
2015-10-15 06:30:12 -07:00
Marek Grabowski
e7ddb4f9a6
Merge pull request #15338 from bharrisau/patch-1
...
Correct multi-cluster number recommendations
2015-10-15 09:28:07 +02:00
k8s-merge-robot
877bfa6d1f
Merge pull request #15302 from piosz/plugins-doc
...
Auto commit by PR queue bot
2015-10-14 21:09:53 -07:00
Isaac Hollander McCreery
60c316b54a
Upgrades and upgrade tests take versions of the form release/stable instead of stable_release:
...
- Refactor common and gce/upgrade.sh to use arbitrary published releases
- Update hack/get-build to use cluster/common code
- Use hack/get-build.sh in cluster upgrade test logic
2015-10-14 10:16:21 -07:00
Eric Tune
ca6c950b89
Doc: apigroups, alpha, beta, experimental/v1alpha1
2015-10-14 09:06:05 -07:00
Piotr Szczesniak
4abe33458e
Added documentation of Initial Resources plugin.
2015-10-14 12:11:08 +02:00
Ben Harris
92137e89dc
Correct number recommendations
...
The mathematics of the current recommendations didn't seem to give the right outcomes. Especially with `U`, as you need at least `U+1` to keep availability in the face of `U` failures.
2015-10-13 08:43:52 +11:00
k8s-merge-robot
71e9565815
Merge pull request #15163 from thockin/gcloud-preview
...
Auto commit by PR queue bot
2015-10-10 12:04:55 -07:00
JessiaDing
717ee92934
update dns doc
2015-10-10 15:31:26 +00:00
Chao Xu
88eeb03811
fix examples
2015-10-09 15:58:07 -07:00
Jordan Liggitt
9d6b52881d
Add authentication/authorization interfaces to kubelet, always include /metrics with /stats
2015-10-09 03:10:00 -04:00
Tim Hockin
b25069d084
Stop using `gcloud preview` - it is obsolete
...
Switch to supported APIs. Update docs.
2015-10-08 11:05:49 -07:00
Mike Danese
b6734d5572
Merge pull request #15213 from mwielgus/cluster_doc
...
Updated doc for cluster autoscaler
2015-10-07 14:04:42 -07:00
Marcin Wielgus
bc58341d34
Updated doc for cluster autoscaler
2015-10-07 10:58:33 +02:00
Abhishek Shah
a1b6dbe870
Removed DenyEscalatingExec from the list of default admission controllers.
2015-10-06 13:35:32 -07:00
Alex Robinson
db7a54930c
Merge pull request #14514 from cjellick/salt-doc-fix
...
Correct example salt config
2015-10-05 13:39:02 -07:00
k8s-merge-robot
de9dd42f58
Merge pull request #14334 from zhengguoyong/del-parenthesis
...
Auto commit by PR queue bot
2015-10-02 04:20:05 -07:00
k8s-merge-robot
688e0921a8
Merge pull request #14523 from jayunit100/README-ctrlrsched
...
Auto commit by PR queue bot
2015-09-28 20:35:50 -07:00
Brian Grant
f9e4a6f60a
Merge pull request #14465 from zhengguoyong/del-graphic-minion
...
Remove use of "minion" from graphic
2015-09-25 10:58:57 -07:00
eulerzgy
eb71e59fcb
Remove use of "minion" from graphic
2015-09-25 10:07:13 +08:00
Eric Tune
bf9e93250e
Job and DaemonSet documentation.
2015-09-24 17:51:25 -07:00
Brian Grant
bbae9fc983
Merge pull request #14330 from zhengguoyong/update-rc
...
update replication-controllers to replicaton controller
2015-09-24 16:55:28 -07:00
jayunit100
783a7aa7e6
Remove some stuff that looks obsolete from api-server certs/access docs
2015-09-24 17:25:57 -04:00
Craig Jellick
142018cff4
Correct example salt config
...
The correct parameter is cloud not cloud_provider.
2015-09-24 12:27:23 -07:00
Eric Tune
8d2d42a8d0
Merge pull request #14345 from zhengguoyong/update-minior
...
change kubernetes-mininon to kubernetes-node
2015-09-23 16:40:19 -07:00
k8s-merge-robot
ab07e320ec
Merge pull request #13725 from HaiyangDING/update_resource-quota_doc
...
Auto commit by PR queue bot
2015-09-22 08:56:12 -07:00
eulerzgy
9f82ffa273
change kubernetes-mininon to kubernetes-node
2015-09-22 16:30:09 +08:00
eulerzgy
239b121f1f
del unnecessary parenthesis
2015-09-22 11:16:51 +08:00
eulerzgy
3326e24f29
update replication-controllers to replicaton controller
2015-09-22 09:48:53 +08:00
Federico Simoncelli
f21d9ac9e4
Support pods with containers using host ipc
...
Add a HostIPC field to the Pod Spec to create containers sharing
the same ipc of the host.
This feature must be explicitly enabled in apiserver using the
option host-ipc-sources.
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
2015-09-18 21:13:39 +02:00
Alex Mohr
959c1a14cf
Merge pull request #13750 from jimmycuadra/docs-accessing-the-api
...
Clarify authentication methods for k8s components
2015-09-17 10:26:58 -07:00
k8s-merge-robot
445fde3dc5
Merge pull request #13447 from pweil-/pid-mode
...
Auto commit by PR queue bot
2015-09-16 23:34:35 -07:00
k8s-merge-robot
26da8d0f24
Merge pull request #10093 from jsafrane/devel/static-pods
...
Auto commit by PR queue bot
2015-09-16 05:53:46 -07:00
k8s-merge-robot
0ef741a557
Merge pull request #14018 from Huawei-PaaS/fix-typos-of-doc
...
Auto commit by PR queue bot
2015-09-16 02:48:28 -07:00
yuqi huang
d88562d070
fix the syntax error in docs
...
fix the syntax error in docs
2015-09-16 11:47:02 +08:00
Paul Weil
ed80c2b940
pid mode
2015-09-15 13:51:44 -04:00
dinghaiyang
1c88a368b4
update resource-quota docs
2015-09-16 00:52:29 +08:00
Jeff Lowdermilk
1f97fbeae6
Merge pull request #13675 from derekwaynecarr/move_resource_quota_doc
...
Move resource quota doc from user-guide to admin
2015-09-14 16:02:47 -07:00
qiaolei
cb80475135
Fixed some minor typos
...
1. remove duplicate `than`
2. fixed a typo `<maste IP>` to `<master IP>`
3. add a `$` before the `kubelet` command to keep align with others in the document
2015-09-13 09:59:41 +00:00
derekwaynecarr
48d0e8945d
Move resource quota doc from user-guide to admin
2015-09-11 12:07:12 -04:00
Mike Danese
aba849c43c
Merge pull request #13801 from Huawei-PaaS/fix-typo-error-of-ovs-networking-png
...
fix typo error of ovs-networking.png
2015-09-10 20:18:06 -07:00
huangyuqi
4508101c1b
fix typo error of ovs networking.png
2015-09-11 09:06:33 +08:00
Chao Xu
183c6e2e84
Merge pull request #13652 from clasohm/example_download_links_raw
...
add raw flag for GitHub download links
2015-09-09 16:19:14 -07:00
Jimmy Cuadra
3bdb51e710
Clarify authentication methods for k8s components.
2015-09-09 11:16:56 -07:00
k8s-merge-robot
45742e885c
Merge pull request #13452 from aveshagarwal/master-api-rate-burst-remove
...
Auto commit by PR queue bot
2015-09-09 00:42:59 -07:00
Jan Safranek
b710468b73
Add documentation about static pods.
...
Described behavior was extracted from source code and via trial-and-error
attempts.
2015-09-08 15:57:09 +02:00
Carsten Clasohm
d093fe0c4b
add raw flag for GitHub download links
2015-09-07 17:43:09 -07:00
qiaolei
41708fb0af
Add 'svc.' before 'cluster.local' and fix some typos
...
1. Add 'svc.' before 'cluster.local'
2. ```Terminating`` to `Terminating`
3. 'DNS entry1' to 'DNS entry'
2015-09-07 09:11:30 +00:00
Quinton Hoole
dd68f0b23f
Merge pull request #13551 from eparis/cloudplatfrom-to-kubernetes
...
s|github.com/GoogleCloudPlatform/kubernetes|github.com/kubernetes/kub…
2015-09-04 12:36:01 -07:00
Avesh Agarwal
f0d0e2a089
Remove unused api-rate and api-burst params.
2015-09-03 17:57:35 -04:00
derekwaynecarr
06bbe00642
Remove NamespaceExists from configuration
2015-09-03 13:42:09 -04:00
Eric Paris
04fc8ae3dd
s|github.com/GoogleCloudPlatform/kubernetes|github.com/kubernetes/kubernetes|
2015-09-03 10:10:11 -04:00
k8s-merge-robot
80f2d89a79
Merge pull request #13087 from ZJU-SEL/specify-garbage-collection
...
Auto commit by PR queue bot
2015-09-02 17:08:54 -07:00
Brendan Burns
8696c6c1d7
Merge pull request #13290 from Huawei-PaaS/amend_two_markdown_errors_in_authentication_md
...
Amend some markdown and other errors in **easyrsa** section
2015-09-01 10:07:21 -07:00
He Simei
f5bdea836e
specify gc
2015-09-01 10:16:20 +08:00
qiaolei
29625a9ffe
Fix Jenkins GCE e2e failure and other errors in APPENDIX easyrsa section
...
Modifications are as following(`APPENDIX` -> `**easyrsa**`):
1, fix Jenkins GCE e2e failure, mainly for markdown errors;
2, change `"${MASTER_IP}"` to `"IP:${MASTER_IP}"` to keep align with `make-ca-cert.sh`
3, change `/pki/` to `pki/` for the generated certs/key
4, other tiny improvements
Please check, thanks.
2015-08-29 11:27:26 +08:00
Solly Ross
3bbdb16149
Merge NamespaceExists into NamespaceLifecycle
...
This commit merges the NamespaceExists admission controller
into the NamespaceLifecycle admission controller.
New tests were added to the NamespaceLifecycle addmission controller
tests, and the test case was fixed so that it runs without panicing.
Additionally, the NamespaceExists admission controller was marked as
deprecated in the docs.
Closes #12053
2015-08-28 10:56:18 -04:00
qiaolei
c17977b6dd
Amend two markdown errors in authentication.md
...
Amend two markdown errors in authentication.md.
1, amend order list display error by enter a newline after the first sentence
2, add two backticks to make ``"@`date +%s`"`` display correctly
2015-08-28 09:16:05 +08:00
Ed Costello
1916d3bb74
Copy edits for typos (resubmitted)
2015-08-25 10:47:58 -04:00
Yifan Gu
aca6368e3c
plugin/oidc: add minor documentation details.
2015-08-24 15:25:26 -07:00
Zach Loafman
6979efec4a
Merge pull request #12586 from jszczepkowski/hna-docs
...
Added section about node autoscaler to cluster-management design doc.
2015-08-21 18:53:00 -07:00
Yifan Gu
0318cb145c
docs: add documentations for OpenID Connect authentication.
2015-08-21 15:27:08 -07:00
Jerzy Szczepkowski
0f8bd6020c
Added section about node autoscaler to node design doc.
...
Added section about node autoscaler to node design doc.
2015-08-21 10:35:43 +02:00
Saad Ali
1aeeeaecd1
Merge pull request #12702 from liguangbo/doc-cert
...
Add the describe about generate CA in authentication
2015-08-20 11:07:37 -07:00
liguangbo
97693558e0
Add the describe about generate CA in authentication
2015-08-20 17:29:37 +00:00
Saad Ali
8a43bd621e
Merge pull request #12745 from eparis/even-less-dash-false-positive
...
verify-flags-underscore.py: Even fewer dash false positives
2015-08-19 17:03:29 -07:00
Ilya Dmitrichenko
cb3425351a
Make typography more consistent
2015-08-19 12:01:50 +01:00
Eric Paris
c560f41a4b
Update docs which were incorrectly using _ in flag names
...
Each of these was verified that the actual flag declaration correctly
used -
2015-08-17 11:18:43 -07:00
Brendan Burns
8e05da1316
Merge pull request #12696 from eparis/less-dash-false-positive
...
Fewer false positives in verify-flag-underscore.sh
2015-08-14 16:27:08 -07:00
Eric Paris
30d34d0e59
Reduce false positives with verify-flag-underscore.sh by updating regex
...
Check to make sure there is not an alphanumeric character immeditely
before or after the 'flag'. It there is an alphanumeric character then
this is obviously not actually the flag we care about. For example if
the project declares a flag "valid-name" but the regex finds something
like "invalid_name" we should not match. Clearly this "invalid_name" is
not actually a wrong usage of the "valid-name" flag.
2015-08-13 21:06:39 -04:00
He Simei
1d6c0e287b
fix service-account related doc
2015-08-14 08:44:21 +08:00
Ruddarraju, Uday Kumar Raju
937db3f70d
Keystone authentication plugin
2015-08-13 09:46:30 -07:00
Eric Paris
5aa495cdad
Update code to use - in flag names instead of _
2015-08-11 16:31:52 -04:00
Marek Grabowski
5f9cefc1d8
Merge pull request #12441 from vlajos/typofixes-vlajos-20150807
...
typofix - https://github.com/vlajos/misspell_fixer
2015-08-10 16:33:52 +02:00
Marek Grabowski
08f67e5888
Merge pull request #12469 from xiejunan/auth_example
...
change "ns" to "namespace" in example and doc for ABAC authorization
2015-08-10 16:33:22 +02:00
Mark Petrovic
105ace039f
issue 12473 Fix minor typo in authentication.md around base64 encoding in the HTTP Authorization header
2015-08-10 05:25:44 -07:00
xiejunan
8d99ba94c8
modify example and doc for ABAC authorization
2015-08-10 18:46:13 +08:00
Ed Costello
35a5eda585
Copy edits for typos
2015-08-09 14:18:06 -04:00
Veres Lajos
9f77e49109
typofix - https://github.com/vlajos/misspell_fixer
2015-08-08 22:31:48 +01:00
Eric Paris
e4d0389b4a
Converts docs/ from --flag_name= to --flag-name=
2015-08-07 11:00:13 -04:00
David Walter
792fc2269b
change underscores to dashes to match the command line argument
2015-08-06 22:13:44 -05:00
Wojciech Tyczynski
e366f2c597
Merge pull request #12206 from derekwaynecarr/move_doc
...
LimitRange documentation should be under admin
2015-08-06 13:43:58 +02:00
Mike Danese
8326697055
rewrite all links to prs to k8s links
2015-08-05 21:11:11 -07:00
Mike Danese
fe6b15ba2f
rewrite all links to issues to k8s links
2015-08-05 21:11:11 -07:00
derekwaynecarr
577f2fa0a5
LimitRange documentation should be under admin
2015-08-05 10:26:52 -04:00
gmarek
2201e75666
NodeController small cleanup
2015-08-04 14:44:14 +02:00
Wojciech Tyczynski
2d95cd454c
Swich to new gcloud API for GCE MIGs
2015-08-03 09:56:25 +02:00
Eric Paris
024208e39f
Fix trailing whitespace in all docs
2015-07-30 20:41:30 -04:00
Eric Paris
4cbca2e63c
Make munger begin/end less generic
...
Just force the beginMungeTag() endMungeTag() macros on users, by hiding
it under the covers. It really simplies things for users.
2015-07-30 20:41:30 -04:00
Janet Kuo
180798cfa4
Use example syncer tags instead of hard-coded examples in doc
2015-07-27 14:48:41 -07:00
Mike Danese
caab2741ba
add documentation on how to use service aaccounts with ABAC mode authorization
2015-07-23 13:34:33 -07:00
Janet Kuo
a2971fb2ab
Fix doc typos
2015-07-22 17:19:07 -07:00
krousey
6553ec47da
Merge pull request #11402 from brendandburns/docs2
...
Add upgrade instructions.
2015-07-20 15:28:31 -07:00
krousey
5161d22322
Merge pull request #11595 from erictune/foo
...
Split namespace docs user vs admin.
2015-07-20 15:11:03 -07:00
Brendan Burns
4b946d7633
Add upgrade instructions.
2015-07-20 15:05:25 -07:00
Eric Tune
6fa6beaccc
Split namespace docs user vs admin.
...
Move namespace.md and examples dir from docs/user-guide
to docs/admin.
Assumption is that creating and deleting namespaces is an "admin"
task.
Add a mostly new user-guide to namespaces that gives more advice
on when to use namespaces, and how to work within them,
but not how to create/delete them. It is more succinct than
before.
2015-07-20 15:01:44 -07:00
krousey
6617d63c97
Merge pull request #11602 from erictune/quota
...
Improvements to quota doc.
2015-07-20 14:50:35 -07:00
Eric Tune
0b327627f4
Improvements to quota doc.
...
Address review comments in #11487
2015-07-20 14:45:44 -07:00
Alex Robinson
acd1bed70e
Fix capitalization of Kubernetes in the documentation.
2015-07-20 14:39:36 -07:00
krousey
b4fb9387b6
Merge pull request #11487 from erictune/admindocs
...
Improve resource quota doc.
2015-07-20 13:29:15 -07:00
krousey
1f8e85c634
Merge pull request #11408 from lavalamp/docsIndex
...
add admin index
2015-07-20 13:27:18 -07:00
krousey
9721efed91
Merge pull request #11569 from nikhiljindal/eric
...
Linking to API object definitions from docs
2015-07-20 12:30:47 -07:00
krousey
960c6a2d8b
Merge pull request #11583 from thockin/docs-tick-tick-tick
...
Collected markedown fixes around syntax.
2015-07-20 12:01:04 -07:00
Daniel Smith
022ccb475d
Add admin TOC; mv README -> intro, TOC -> README
2015-07-20 11:46:23 -07:00
nikhiljindal
021138bd83
Linking to API object definitions from docs
2015-07-20 11:11:13 -07:00
David Oppenheimer
2d88675f22
Merge pull request #10827 from gmarek/doc
...
Update cluster management doc.
2015-07-20 10:49:47 -07:00
gmarek
de07cbda3a
Update cluster management doc.
2015-07-20 19:47:09 +02:00
Eric Tune
7f1970a22d
Improve resource quota doc.
2015-07-20 10:15:07 -07:00
Tim Hockin
995a7aef29
Collected markedown fixes around syntax.
2015-07-20 09:51:22 -07:00
Brian Grant
5450afdabc
Merge pull request #11568 from davidopp/doc2
...
Absolutize links that leave the docs/ tree to go anywhere other than
2015-07-20 07:34:00 -07:00
David Oppenheimer
50e95a031b
Absolutize links that leave the docs/ tree to go anywhere other than
...
to examples/ or back to docs/
2015-07-20 00:25:07 -07:00
Brian Grant
ddda661991
Merge pull request #11560 from davidopp/doc3
...
Update doc guide in top-level README.md and fix description of
2015-07-19 23:17:33 -07:00
David Oppenheimer
ddde3930f5
Update doc guide in top-level README.md and fix description of
...
cluster management doc in docs/admin/README.md
2015-07-19 23:00:54 -07:00
Alex Robinson
68d6e3a8ae
Replace ``` with ` when emphasizing something inline in docs/
2015-07-19 09:05:17 +00:00
Alex Robinson
b80c0e5177
Fix gendocs
2015-07-19 09:05:17 +00:00
Alex Robinson
3364a32dc6
Improve admin docs syntax highlighting.
2015-07-19 05:48:34 +00:00
David Oppenheimer
715f2c488f
Merge pull request #11493 from bgrant0607/docfix
...
Gut stale roadmaps. Move useful content elsewhere.
2015-07-17 17:49:08 -07:00
Brian Grant
cbed53cffe
Gut stale roadmaps. Move useful content elsewhere.
2015-07-18 00:41:06 +00:00
David Oppenheimer
d483fda945
Fix run-gendocs breakage at head.
2015-07-17 16:45:37 -07:00
David Oppenheimer
e8099a6080
Merge pull request #11419 from lavalamp/docsAdminEtcd
...
add admin etcd doc
2015-07-17 16:25:35 -07:00
David Oppenheimer
d28a6656ae
Merge pull request #11452 from thockin/docs-munge-headerlines
...
Munge headerlines
2015-07-17 15:52:08 -07:00
Tim Hockin
33f1862830
Run gendocs
2015-07-17 15:35:43 -07:00
Daniel Smith
ebff4ff746
add etcd admin doc
2015-07-17 15:32:23 -07:00
Dawn Chen
2ea8a7d316
Run hack/run-gendocs.sh to fix issue, otherwise shippable is failed for all prs.
2015-07-17 15:09:07 -07:00
Tim Hockin
6e4ec38f51
Make TOC munge include blank line before TOC
2015-07-17 15:06:54 -07:00
Abhi Shah
816f18a388
Merge pull request #11424 from lavalamp/mungePreformatted
...
Munge preformatted
2015-07-17 13:32:38 -07:00
David Oppenheimer
341f3a8826
Merge pull request #11438 from davidopp/doc3
...
Various minor edits/clarifications to docs/admin/ docs.
2015-07-17 13:10:51 -07:00
David Oppenheimer
d64250c34c
Fix per reviewer comments.
2015-07-17 11:31:41 -07:00
Daniel Smith
c603542221
add docs/admin/cluster-components.md
2015-07-17 11:14:48 -07:00
Daniel Smith
f7873d2a1f
apply changes
2015-07-17 11:04:46 -07:00
David Oppenheimer
820c4cbe7f
Run hack/run-gendocs.sh
2015-07-17 10:53:23 -07:00
David Oppenheimer
2a26b7487e
Various minor edits/clarifications to docs/admin/ docs.
...
Deleted docs/admin/namespaces.md as it was content-free and the topic is
already covered well in docs/user-guide/namespaces.md
2015-07-17 10:53:23 -07:00
Tim Hockin
542e13d2d3
Better scary message
2015-07-17 09:28:49 -07:00
Brian Grant
5f34630aca
Merge pull request #11352 from JanetKuo/docs-reachable
...
Ensure all docs and examples in user guide are reachable
2015-07-16 23:33:45 -07:00
Janet Kuo
2498f93938
MUNGE generated table of contents should strip comma
2015-07-16 23:21:09 -07:00
Janet Kuo
b0c68c4b81
Ensure all docs and examples in user guide are reachable
2015-07-16 23:12:47 -07:00
Brian Grant
368634564f
Merge pull request #11413 from davidopp/doc2
...
Add link to multi-cluster doc
2015-07-16 22:50:39 -07:00
Brian Grant
786b59427d
Merge pull request #11400 from lavalamp/munger
...
Add absolute path link checking to munger
2015-07-16 22:50:14 -07:00
Brian Grant
cb58e8e43b
Merge pull request #11350 from thockin/munge-check-kubectl-dash-f
...
Add munger to verify kubectl -f targets
2015-07-16 22:46:37 -07:00
David Oppenheimer
07274829f6
Add link to multi-cluster doc
2015-07-16 17:26:19 -07:00
Daniel Smith
98eeadb66e
(mostly) auto fixed links
2015-07-16 16:28:18 -07:00
Tim Hockin
f7512d007b
Add munger to verify kubectl -f targets, fix docs
2015-07-16 15:39:45 -07:00
David Oppenheimer
c57c877670
Take availability.md doc and
...
- extract the portion related to multi-cluster operation into a new multi-cluster.md doc
- merge the remainder (that was basically high-level troubleshooting advice) into cluster-troubleshooting.md
2015-07-16 14:39:03 -07:00
Janet Kuo
ec2b125e25
Organize troubleshooting sections
2015-07-15 13:20:32 -07:00