O'meid
d0d29d9ff0
containers/images: clarify dockercfg limitions. ( #12429 )
...
Related #59406
This commit clarifies the limitations of dockercfg use by Kubernetes, specifically, the lack of support for credential helpers.
2019-01-31 15:05:33 -08:00
Martynas Pumputis
9da045a934
minikube: Fix cmd args for alternative runtimes ( #12365 )
...
Since minikube v0.33.0 the default CNI config is not being provisioned
by default (https://github.com/kubernetes/minikube/pull/3441 ). Therefore,
we need to pass `--enable-default-cni` when starting minikube.
2019-01-31 14:55:52 -08:00
Jun Gong
33d851c913
Update custom-resource-definitions.md: add validatingadmissionwebhook for validation ( #12371 )
...
Add validatingadmissionwebhook for validation in case someone does not know it.
2019-01-31 14:54:18 -08:00
Barnabas Makonda
2e0287dd86
Added missing pod status in pod lifecycle docs ( #12397 )
...
* Added missing pod status in pod lifecycle docs
Added information about `completed` and `CrashLoopBackOff`
* update example of completed status
2019-01-31 14:22:25 -08:00
R
c9fc834356
Update minikube.md ( #12448 )
...
* Update minikube.md
* Update minikube.md
2019-01-31 14:20:46 -08:00
Damini Satya
9dff778e09
Add Pod Priority to Glossary page ( #12461 )
...
* Add Pod Priority to Glossary page
* change id
2019-01-31 13:59:15 -08:00
Damini Satya
5174235049
Add HostAliases to Glossary page ( #12454 )
2019-01-31 13:21:00 -08:00
atoato88
a7f0d9a713
Update `kubeadm init` output to latest ( #12440 )
...
There is output of `kubeadm init` in create-cluster-kubeadm page.
But it is little old.
Some processes aren't included in it.
This update `kubeadm init` output to latest.
2019-01-31 13:17:51 -08:00
Mumshad Mannambeth
883f43e36b
Add beginners course link from KodeKloud ( #12190 )
...
* Add beginners course link from KodeKloud
* Remove code
2019-01-31 11:14:28 -08:00
Wenjun Wu
191055c7aa
remove duplicate --encryption-provider-config ( #12398 )
...
remove duplicate --encryption-provider-config parameter
2019-01-31 11:10:12 -08:00
Rostislav M. Georgiev
5101eaf912
kubeadm: remove rktlet link from install-kubeadm ( #12463 )
...
Since Kubernetes 1.10, the only supported CRI version is v1alpha2. However,
rktlet does not support that version and development seems stopped.
As there is no way to use rktlet with k8s >= 1.10, it's best to just remove
the rkt link from the "Install runtime" section of "Install kubeadm".
Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2019-01-31 09:35:10 -08:00
yanghaichao12
ef188cbf30
Fix a typos ( #12458 )
...
* Fix a typos
* Revert "Fix a typos"
This reverts commit 5dcca521c4
.
* Fix a typos
2019-01-31 09:32:10 -08:00
Stacy Pedersen
5c3e6f7270
Adding ICP page to Turnkey Cloud Solutions ( #12444 )
2019-01-30 20:05:19 -08:00
Roy Lenferink
7e34aa04c6
Added link to OWNERS docs in OWNERS file ( #12427 )
...
* Added link to OWNERS docs in OWNERS file
* Updated OWNERS files to include link to docs
2019-01-30 14:04:25 -08:00
Harshagarwal19
6e995612a9
New slack icon ( #12438 )
...
* Delete Old slack icon
* Added new icon
* Updated text from 18.06 to 18.09
* Deleted large image
* New slack image uploaded
2019-01-30 12:23:19 -08:00
Jai
3413d276eb
Typo in components.md ( #12378 )
2019-01-30 09:42:27 -08:00
Kenichi Omichi
79052e5232
Update HostAliases entries for new implementation ( #12251 )
2019-01-29 17:35:06 -08:00
SalimGangji
071f80429e
Update install-kubeadm.md ( #12419 )
...
* Update install-kubeadm.md
Fixes #12366
* Update content/en/docs/setup/independent/install-kubeadm.md
committing changes from detiber
Co-Authored-By: SalimGangji <salim.gangji@gmail.com>
2019-01-29 10:10:21 -08:00
Lubomir I. Ivanov
a7792a6ae8
kubeadm: add a caution about certs in HA document ( #12407 )
...
* kubeadm: add a caution about certs in HA document
* Update content/en/docs/setup/independent/high-availability.md
Co-Authored-By: neolit123 <neolit123@gmail.com>
2019-01-29 03:02:33 -08:00
Avi Deitcher
087a2884b3
Add information about linking CN= <nodeName> and kubelet hostname ( #12336 )
2019-01-28 17:40:43 -08:00
James Ward
2ad6e9f124
Linux command to check CPU virtualization support ( #12376 )
2019-01-28 17:25:03 -08:00
Anuj Sharma
3907af5a1b
'removed rktlet from cri installation docs ( #12408 )
2019-01-28 17:23:10 -08:00
joao brito junior
eab93ae932
Update deployment.md ( #12301 )
...
All resources must be specified before image changes: deployment.apps/nginx-deployment . So I reorganised the command order.
2019-01-28 16:57:22 -08:00
Dr Luke Angel
134a391407
Minor type ( #11966 )
...
Removed an & that was not needed and would break on windows
2019-01-28 16:40:34 -08:00
Dan Kohn
935e50da22
Update interactive landscape URLs ( #12414 )
...
We're modifying the API to show the landscape by default rather than card mode,
but this change does not change behavior any.
2019-01-28 14:53:19 -08:00
Suraj Deshmukh
a0cf7ebf13
Update systemctl en/disable to start/stop service ( #12100 )
...
If there is a combination of `systemctl` commands where in one you are
enabling it and in another you are starting it, that can be done in one
single command with an additional flag called `--now`. This commit
changes those two command steps in docs to one command.
The help of systemctl shows the following explanation of `--now`:
```
Start or stop unit in addition to enabling or disabling it
```
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2019-01-28 12:48:36 -08:00
craigbox
5b2d835ea9
Copy edits to Federation blog ( #11789 )
...
* Copy edits to Federation blog
* fix title, as Hugo doesn't like colons
* rename title back to keep URL the same
* formatting changes
* fix typo
2019-01-28 12:33:27 -08:00
Suraj Deshmukh
ea471fc63f
PodPreset: Add minikube specific instructions ( #12129 )
...
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2019-01-28 12:30:18 -08:00
azarnyx
e05a3c7e32
Update coarse-parallel-processing-work-queue.md ( #12402 )
...
the file needs to have permission to be executed with the command:
CMD /usr/bin/amqp-consume --url=$BROKER_URL -q $QUEUE -c 1 /worker.py
from Dockerfile https://kubernetes.io/examples/application/job/rabbitmq/Dockerfile
2019-01-28 12:25:39 -08:00
azarnyx
6e557559fe
Update worker.py ( #12403 )
...
Fix an error reproduced with python3.6.8, python3.5.2, python2.7.12:
$ echo "Hi!"| ./worker.py
Traceback (most recent call last):
File "./worker.py", line 6, in <module>
print("Processing " + sys.stdin.lines())
AttributeError: '_io.TextIOWrapper' object has no attribute 'lines'
2019-01-28 11:44:01 -08:00
chenrui
ca4f474235
Add `jsonpath` approach for apiserver query ( #12350 )
...
* Add `jsonpath` approach for apiserver query
* Refine the wording with the approach description
* Refine the command log
* Move the itemized number back
2019-01-27 22:18:54 -08:00
Kendrick Coleman
26e9b314f2
Update 'Picking the Right Solution' with information from VMware/Pivotal ( #11844 )
...
Added VMware Cloud PKS and Cloud Foundry Container Runtime to places within the document that are correctly represented for Cloud and on-primises offerings and tooling. I also properly alphabetized the list.
Signed-off-by: Kendrick Coleman <kendrickc@vmware.com>
2019-01-27 17:23:01 -08:00
Seokho
6519ff99aa
Fix broken links in files in reference/setup-tools/kubefed/ ( #12208 )
2019-01-25 12:41:31 -08:00
Jintao Zhang
9d483862bd
Update glog to klog ( #11820 )
...
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
2019-01-25 12:39:43 -08:00
David Dooling
7b15bdd2a2
Add nodeName to pod node selection ( #12194 )
...
The "Assigning Pods to Nodes" page did not mention nodeName, which, if
specified, takes priority over the methods discussed in the page. Add
description of nodeName and an example using it.
Address reviewer comments from @bsalamat and @liggitt, thanks!
2019-01-24 05:22:28 -08:00
makocchi
a254339aa2
remove command prompts and separate commands from output ( #12337 )
2019-01-23 22:32:09 -08:00
Andrew Chen
b3ed053c82
Refactor home page ( #10795 )
...
* Fix docs home subnav link name
* change linkTitle to Home
* accept fix from master
* refactor docs home template
* bump
* test
* switch layout to basic
* swap in cards
* test card css
* add launch-cards and launch-card classes
* swap in content
* use different layout name to not affect user journeys
* revert file naming
* revert docsportal.html
* remove main, add kubeadm link
* documentation -> docs
* change kubeadm link
2019-01-23 18:36:23 -08:00
Banjot S Chanana
e5a31f8c67
Updated pick-right-solution.md with Docker Enterprise ( #12220 )
...
* Updated pick-right-solution.md with Docker Enterprise
Added Docker commercial and community products to the list of solutions for running Kubernetes including Docker Desktop and Docker Enterprise.
* Fix Docker Desktop entry in pick-right-solution.md
The words "Docker Desktop" was duplicated in the description under locally-hosted solutions.
* Updated pick-right-solution.md with Docker solutions
Added line wraps at 80 characters and changed containerizing to "deploying in containers" to make it more new-user friendly.
* Updated pick-right-solution.md
modified wrapping of first line to not break hyphenated word.
2019-01-23 16:16:22 -08:00
lj8930
e37e01fbc7
update alibaba-cloud.md ( #11940 )
...
update original Chinese page link to English version.
2019-01-23 10:03:14 -08:00
Chiradeep Vittal
35723889a8
Link to Citrix NetScaler ingress controller. ( #12221 )
...
* Link to Citrix NetScaler ingress controller.
* Add missing punctuation
2019-01-23 09:41:38 -08:00
Christian Posta
1eae4bfb3e
Added Gloo as an example of an ingress controller ( #12218 )
...
* Added Gloo as an example of an ingress controller
* put in alphabetical order
2019-01-23 09:39:59 -08:00
Rafik Harabi
04a53ed05e
Fix Kubernetes first stable release date ( #12173 )
2019-01-23 09:38:20 -08:00
suratwant
4d802774a1
Update network-policies.md ( #12181 )
2019-01-23 09:35:07 -08:00
Simon Vallebro
b797204423
Fixed broken link to github issues. ( #12292 )
...
Found a broken link and fixed it.
2019-01-23 09:27:23 -08:00
Viktors Garkavijs
2dfa520355
Update minikube.md - add hyperv to list of drivers ( #12226 )
...
* Update minikube.md - add hyperv to list of drivers
* Arranged driver list to match driver documentation
2019-01-23 09:25:49 -08:00
phillipsio
c8a60fd9b6
Update pick-right-solution.md ( #12253 )
...
Add Mirantis Cloud Platform to On-Premises turnkey cloud solutions and Table of Solutions
2019-01-23 09:15:06 -08:00
Rachael Graham
db1007a73c
Update configure-cloud-provider-firewall.md ( #12304 )
2019-01-23 08:55:05 -08:00
Bill Mulligan
bb28f4f07b
fix broken link ( #12346 )
...
#fix-it doesn't lead anywhere so I changed it to link to improving content
2019-01-23 08:53:25 -08:00
makocchi
5cf48aaaf2
remove command prompts and separate commands from output ( #12338 )
2019-01-23 01:06:28 -08:00
Anvith KS
7730c1540b
Official documentation on Poseidon/Firmament, a new multi-scheduler support for K8S ( #12069 )
...
* Official documentation on Poseidon/Firmament, a new multi-scheduler support for K8S. (#11752 )
* Added documentation about Poseidon-Firmament scheduler
* Fixed some style issues.
* Udpated the document as per the review comments.
* Fixed some typos and updated the document
* Updated the document as per the review comments.
* Updated the document as per review comments. Added config details.
* Updated the document as per the latest review comments. Fixed nits
* Made changes as per latest suggestions.
* Some more changes added.
* Updated as per suggestions.
* Changed the release process section.
* SIG Docs edits
Small edits to match style guidelines.
* add plus to feature state
* capitalization
* revert feature state shortcode
since this is a Kubernetes extension, not a direct feature, it shouldn't use the regular feature state tagging.
2019-01-22 14:43:08 -08:00
Maaryaams
9ee0c8bf4b
Update pick-right-solution.md ( #12249 )
2019-01-21 13:33:05 -08:00
Naoki Oketani
a0ba90d196
added missing EOF ( #12265 )
2019-01-21 13:14:25 -08:00
Aleksandr Vinokurov
076efdf364
Fix service's port in Hello Minikube tutorial ( #12229 )
...
Port `8080` is the internal port of container and to follow the tutorial, user must use exposed one.
2019-01-20 19:14:47 -08:00
Jordan Liggitt
777e085a97
Update swagger/openapi descriptions ( #12279 )
2019-01-19 02:49:49 -08:00
Marco Palladino
3a4379d995
docs(ingress) updating Kong Ingress links ( #12236 )
2019-01-18 21:07:13 -08:00
Joe Searcy
57436d374a
Added taint and toleration glossary entries ( #12162 )
...
* Added taint and toleration glossary entries
* Fixed syntax for tooltip references
* Fixed the last syntax error for tooltip references
2019-01-18 13:25:35 -08:00
Kaitlyn Barnard
32aa50359a
Adding volume snapshot post ( #12271 )
2019-01-18 08:50:06 -08:00
Misty Linville
6ca1563931
Add helpful queries for PR wranglers ( #12231 )
...
* Add helpful queries for PR wranglers
* Fix typo
Co-Authored-By: mistyhacks <mistyhacks@google.com>
2019-01-17 09:48:36 -08:00
Takeaki Matsumoto
96f2bfa9b0
Update the hyperlinks of Admission Controllers ( #12241 )
2019-01-17 07:46:29 -08:00
shibataka000
65ca8e69f2
Replace NO-BREAK SPACE to SPACE. ( #10878 )
2019-01-17 03:20:28 -08:00
Nick Veitch
87f0a72dda
Add correct styling for MicroK8s in docs ( #12248 )
2019-01-16 17:27:45 -08:00
Kaitlyn Barnard
52daf4d171
Adding CSI blog post ( #12232 )
2019-01-16 08:59:08 -08:00
houjun
0f6457d5df
Fix the version state of BlockVolume ( #12237 )
2019-01-16 01:16:04 -08:00
Namhoon Lee
2ebcf10831
Update dns-pod-service.md ( #10788 )
...
Fix pod's DNS address
2019-01-15 17:45:07 -08:00
Yaoyang
d3497844cb
line 77, ',' -> ',' ( #12103 )
...
',' is a fullwidth character which is not usually used in English language but in Chinese/Japanese etc.
2019-01-15 17:37:27 -08:00
Babak "Bobby" Salamat
9c1248e467
add Priority to the list of recommended admission controllers ( #12180 )
2019-01-14 23:23:52 -08:00
Robin Dupret
9b55294ae4
Fix a broken anchor ( #12215 )
...
The title of this section has been changed so since the anchor is
automatically computed, links were broken.
Stems from da9722af
.
2019-01-14 17:28:04 -08:00
Antoine Pelisse
778497b102
Create apiserver-dry-run-and-kubectl-diff ( #12135 )
...
* Create apiserver-dry-run-and-kubectl-diff
* Update apiserver-dry-run-and-kubectl-diff
* Update apiserver-dry-run-and-kubectl-diff
* Rename apiserver-dry-run-and-kubectl-diff to apiserver-dry-run-and-kubectl-diff.md
* Update apiserver-dry-run-and-kubectl-diff.md
2019-01-14 10:10:01 -08:00
Anh Le (Andy)
ab2918bf31
Access Cluster: failed to grep on MacOS ( #12200 )
...
The related issue is here: https://github.com/kubernetes/website/issues/12199
2019-01-13 18:39:47 -08:00
Mathias Petermann
b31c0039f9
Update bootstrap-token feature state on authentication page ( #12197 )
...
According to `content/en/docs/reference/access-authn-authz/bootstrap-tokens.md` bootstrap tokens are in state `beta` but here it's still listed as `alpha`
2019-01-13 18:29:44 -08:00
Roy Lenferink
aa0da8f34a
Improved openshift, docker, ansible references ( #12201 )
...
* Fixed Openshift -> OpenShift
* Fixed ansible -> Ansible
* Fixed docker -> Docker
2019-01-13 18:26:49 -08:00
Roy Lenferink
1bc0d7c385
Improvements for markdown formatting ( #12193 )
...
* Fixed markdown formatting
* Resolved usage of 'shell' instead of 'yaml'
* Removed unknown 'log' keyword
2019-01-13 18:14:44 -08:00
tuanvcw
10a75e3d72
Fix issue with k8s.io/docs/reference/kubectl/cheatsheet/ ( #12143 )
2019-01-13 18:13:14 -08:00
Seokho
968f874f6a
Fix broken links in reference/setup-tools/kubefed/kubefed.md ( #12178 )
2019-01-13 02:33:29 -08:00
zero
bd3bc61115
Update assign-pod-node.md ( #12159 )
...
* Update assign-pod-node.md
Use `kubectl get nodes --show-labels` to show the labels will not show the compelte labels like this:
```
root@master:/home# kubectl get nodes --show-labels
NAME STATUS ROLES AGE VERSION LABELS
master Ready master 41h v1.13.1 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=master,node-role.kubernetes.io/master=
server01 Ready <none> 41h v1.13.1 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,func=database,kubernetes.io/hostname=moon-server01
```
and the command `kubectl describe node "nodename" ` will show all labels the node have.
* Update assign-pod-node.md
* Update assign-pod-node.md
add a space before the new sentence
2019-01-13 00:52:46 -08:00
yanghaichao12
6b90b6c6fc
Fix some typos ( #12183 )
2019-01-13 00:51:11 -08:00
Vaibhav Paralikar
3dd9a44cd3
Patch 1 ( #12189 )
...
* Fixing broken link
Fixing broken link of 'The HA upgrade documentation'.
* Fixing broken link
Fixing broken link
2019-01-13 00:48:11 -08:00
Roy Lenferink
ab1a8e8767
Fixed broken link ( #12191 )
2019-01-13 00:46:41 -08:00
Nikhita Raghunath
1b90aecda2
Update status of CRD-related feature gates ( #12155 )
2019-01-11 01:12:05 -08:00
tuanvcw
fc2968d876
Fix issue with k8s.io/docs/concepts/workloads/controllers/replicaset/ ( #12147 )
2019-01-09 19:01:01 -08:00
sashaPM
42c57bded9
Update daemonset.md ( #12154 )
...
Added link to AppDynamics agent implementation as a Daemon set to the list of existing APM providers
2019-01-09 18:56:40 -08:00
Sasoki
23fb1b3ff2
Correction on command ( #12107 )
2019-01-09 18:35:09 -08:00
Dan Kelly
417981f38b
Add Containership to pick-right-solution.md ( #11836 )
...
* Add Containership to pick-right-solution.md
I would like to add Containership to Hosted and Turnkey solutions
* Update pick-right-solution.md
2019-01-09 18:33:39 -08:00
Lubomir I. Ivanov
4ff6bbbfff
kubeadm-upgrade-1.13: add workaround for join control-plane ( #12145 )
2019-01-09 17:48:39 -08:00
Alan
ff564dc7a3
fix a typo ( #11957 )
...
* fix a typo
fix a typo
* better describe
better describe
* better describe
better describe
* fix format error
fix format error
2019-01-09 07:34:03 -08:00
Jim Angel
396a1a6b8b
adding feature state snip ( #12134 )
...
* adding feature state snip
Adding in the feature state to indicate when this feature was introduced.
* adding in "stable"
Didn't know it defaulted to alpha.
2019-01-08 19:30:13 -08:00
tuanvcw
a0975dae25
Update for fixing broken download URL in k8s.io/docs/tasks/tools/install-minikube ( #12137 )
2019-01-08 19:08:14 -08:00
tuanvcw
ee2f708b0b
Fix broken download url in k8s.io/docs/tasks/tools/install-minikube ( #12124 )
2019-01-08 18:00:53 -08:00
Qiming
a4ddd33889
Move sample YAML files to the correct place ( #12123 )
...
This PR is also an attempt to fix #12117 .
Closes : #12117
2019-01-09 09:16:10 +08:00
Prashanth Rajaram
771b789399
chore(doc): Add DigitalOcean to list ( #11979 )
...
Add DigitalOcean Kubernetes service to the list of hosted solutions - https://www.digitalocean.com/products/kubernetes/
2019-01-08 05:11:45 -08:00
j-u-e-f
6bf50a4e9a
fix a typo ( #11923 )
2019-01-08 05:08:23 -08:00
Sebass van Boxel
0a0655c646
Removed colon and made description consistent ( #11984 )
2019-01-08 05:06:39 -08:00
shavidissa
9e9eb8108f
Updated a link ( #12027 )
...
* Updated a link
The section was directing to Kubernetes Objects for more information about the Kubernetes APIs. I updated the link so it directs to the Kubernetes API page.
* Added a missing / to the link.
* Updated as per the comment.
2019-01-08 04:28:29 -08:00
Steven E. Harris
ef3c9ec370
Correct ResourceQuota PriorityClass config example ( #12055 )
...
The LimitedResource type has the field "MatchScopes" as a sibling to
the field "Resource," but the YAML document in the example showed the
"MatchScopes" field as a child of the top-level Configuration
type. Correct the example to match the actual schema.
While we're here, swap the order of the "scopeName" and "operator"
fields used in the YAML, to make it clearer in infix style that the
operator binds the scope name to a (possibly empty) set of values.
2019-01-08 04:21:44 -08:00
Maciej Szulik
610418b261
Fix CronJob's timezone information ( #12073 )
2019-01-08 04:18:21 -08:00
Fladrif
5e96f9ad77
Fix mismatched hostnames in documentation ( #12026 )
...
Match hostnames in description to example. `service2` in the description matches `second.foo.com` in the example.
2019-01-08 04:10:02 -08:00
Jason Hu
4f189afac1
Update dns-debugging-resolution.md ( #12012 )
...
There is a document error in the subsection named "Check for Errors in the DNS pod" , where the pod selector should coredns but not kube-dns.
2019-01-08 04:08:18 -08:00
tallaxes
a14ce37044
Update kubeadm-certs.md - remove prow link ( #12119 )
...
Left in by accident?
2019-01-08 03:55:02 -08:00
Rajakavitha1
043b0ccaf3
Update storage-classes.md ( #11855 )
...
* Update storage-classes.md
Fixed the formatting issues that were incorrectly showing the variables as hyperlink texts that resulted in 404 errors
* Update storage-classes.md
Incorporated the changes
* Update storage-classes.md
removed the </strong tag that was not required.
* Update storage-classes.md
replaced <em> with `.
2019-01-08 03:53:18 -08:00
Karen Bradshaw
e0e71eded2
format cmd in prereq section ( #12057 )
2019-01-07 23:31:15 -08:00
yanghaichao12
fb914af4b2
Fix a typos in persistent-volumes.md ( #12084 )
2019-01-07 23:11:23 -08:00
Suraj Deshmukh
9b66c1acc1
Use staticPodPath in KubeletConfiguration ( #11916 )
...
Alongwith the kubelet flag you can also use the `KubeletConfiguration`'s
`staticPodPath` to specify the path to pick up the static pod configs.
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2019-01-07 09:29:47 -08:00
bitbucket90
c13587f997
Updating pick-right-solution.md with Nirmata ( #12080 )
...
Added Nirmata to both Hosted and On-Prem to display both our offerings
2019-01-07 09:22:26 -08:00
shavidissa
6c96f7c100
Removed a redundant sentence. ( #12096 )
...
* Removed redundant sentence.
The intro line was repeated twice. Therefore, removed the one under the Synopsis section.
Updated the command from " " to ` ` based on the style guide.
* Updated master to control plane.
2019-01-07 07:34:48 -08:00
wangyamei
7416c427b8
fix spelling mistake ( #12113 )
2019-01-07 07:31:44 -08:00
xiaotuanyu120
ea9e5ef7eb
Add base64 encoded data configuration ( #11793 )
...
for the issue [11774](https://github.com/kubernetes/website/issues/11774 )
2019-01-07 01:56:11 -08:00
AdamDang
2953a2366d
Typo fix: 'kubadm init'->'kubeadm init' ( #12049 )
...
Typo fix: 'kubadm init'->'kubeadm init'
2019-01-07 01:46:53 -08:00
MengZeLee
2317f4c82b
patch-reset ( #11978 )
...
* patch-reset
We should reset IPVS tables do so manually when reset kubernetes cluster by kubeadm.
* Modify reset ipvs description
* Update create-cluster-kubeadm.md
2019-01-07 01:09:14 -08:00
Suraj Deshmukh
b03912667f
Remove `--experimental-server-print` flag docs ( #11917 )
...
This flag does not exists anymore so remove this from the docs.
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2019-01-06 23:12:32 -08:00
Becca Powell
3478ef2a01
add cni-ipvlan-vpc-k8s ( #11929 )
...
* add cni-ipvlan-vpc-k8s
* Update networking.md
2019-01-03 10:08:42 -08:00
Baptiste Gauduchon
8f00655971
Update proposal for configure-liveness-readiness-probes.md ( #11613 )
...
* Update proposal for configure-liveness-readiness-probes.md
Proposal regarding [issue 11587](https://github.com/kubernetes/website/issues/11587 )
* ✏️ corrected typo
* ✏️ corrected sentence
* Update configure-liveness-readiness-probes.md
2019-01-03 07:10:35 -08:00
Lubomir I. Ivanov
ffa36a9251
kubeadm: fix some issues in the upgrade-1.13 doc ( #11629 )
...
- use "control plane" instead of "master".
- upgrade a kubelet on the CP node only after the CP was upgraded.
- also instruct the user to update to the latest patch version of 1.13.
2019-01-02 16:59:47 -08:00
Becca Powell
1e736d9555
Clarify preStop hooks in Termination of Pods ( #11821 )
...
* Update pod.md
* capitalize Pod
2019-01-02 15:52:48 -08:00
DrmagicE
1576c12e70
Fix #11982 ( #11983 )
...
* Update deployment.md
* Update nginx-deployment.yaml
2019-01-02 13:21:36 -08:00
Raul Gonzales
578b006360
docs: uses mostly kubectl to demonstrate ( #11699 )
...
Simplify to run `kubectl` to obtain the desired values from resources
Changes: access-cluster-api.md
2019-01-02 11:19:21 -08:00
Luc Perkins
bcaef52219
Update Minikube installation docs ( #11417 )
...
* Add Minikube latest version shortcode and update installation doc
* Rework Minikube install instructions and remove unnecessary shortcode
* Re-add the --ignoreCache flag to make serve
2019-01-02 05:50:11 -08:00
Suraj Deshmukh
4eb78ea11a
Update nodes to show the system reserved resources ( #11908 )
...
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2018-12-28 07:57:05 -08:00
Brad Jones
69521bd355
Remove devstub/kubernetes-api-php-client
...
This project looks to be abandoned. See https://github.com/devstub/kubernetes-api-php-client/issues/1
2018-12-27 14:28:15 -07:00
Dan Kohn
fb7f32dd8d
Fix Interactive Landscape references ( #11905 )
2018-12-26 16:12:27 -08:00
David Lovitch
c8838cda7d
Fix typo privelages->privileges ( #11887 )
2018-12-25 21:38:47 -08:00
Rajakavitha1
6b083d5339
Update cri.md ( #11853 )
...
I removed the instruction regarding the installation of docker (1.13.1) as listed in #11779 and updated the instructions for Docker CE (1.18.1) because the official Docker documents only have instructions for Docker CE and Docker EE as listed in https://github.com/docker/docker.github.io/blob/master/install/linux/docker-ce/ubuntu.md . It may not be a good idea to have instructions for Docker 1.13 in our documents considering that the Official Docker Install guide recommends uninstalling older versions.
2018-12-25 01:32:20 -08:00
makocchi
a33ae0f00c
remove command prompts and separate commands from output ( #11847 )
2018-12-22 17:20:33 -08:00
makocchi
950bcbef2b
remove command prompts and separate commands from output ( #11848 )
2018-12-22 17:18:36 -08:00
makocchi
a52dfece47
use warning shortcodes ( #11849 )
2018-12-22 17:07:48 -08:00
makocchi
7fa4ff6310
Remove command prompts and separate commands from output [Authenticating] ( #11851 )
...
* remove command prompts and separate commands from output
* tweak comment
2018-12-22 17:05:56 -08:00
nuistzyw
0af727ef4f
link ( #11808 )
...
Signed-off-by: Zhao Yuwei <zhaoyw-fnst@cn.fujitsu.com>
2018-12-21 17:44:38 -08:00
Paulo
caabac594c
Update web-ui-dashboard.md ( #11833 )
...
wrong
```sh
$ kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml
error: unable to read URL "https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml ", server reported 404 Not Found, status code=404
```
right
```sh
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml
```
github page
```sh
https://github.com/kubernetes/dashboard/blob/master/aio/deploy/recommended/kubernetes-dashboard.yaml
```
2018-12-20 21:50:42 -08:00
Philip Brown
6285545a24
Add note about need for lxd init ( #11822 )
...
* Add note about need for lxd init
As a first time user, I got a little lost, doing google searches for how to get lxd basically functional on my box.
There were a lot of hand edits and tweaks suggested on various pages, until I discovered that all I had to do is run "lxd init" and follow the prompts.
* Update local.md
2018-12-21 13:46:01 +08:00
Jordan Liggitt
0e7b66a8f8
Fix `--runtime-config` syntax ( #11835 )
2018-12-20 17:30:23 -08:00
Jim Angel
885aaa4af3
removing non-supported versions ( #11834 )
2018-12-20 17:28:26 -08:00
Jintao Zhang
0838faec0a
Fix cosConfigureHelper script address. ( #11819 )
...
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
2018-12-20 02:08:29 -08:00
Tim Hockin
701ebb2474
Update docs on labels and annotations ( #11719 )
...
Be clearer about character set and a couple minor tweaks on words.
2018-12-19 22:39:39 -08:00
Karen Bradshaw
8378cab0eb
Clean up extra Note text ( #11805 )
2018-12-19 18:17:40 -08:00
Rajakavitha1
18e2376fcc
Update cloud-providers.md ( #11815 )
...
Update the definition of monitor-delay and monitor-timeout as a fix for: https://github.com/kubernetes/website/issues/11217
2018-12-19 18:03:25 -08:00
kohei
acbac5661a
fix link to flexvolume ( #11800 )
2018-12-18 17:26:44 -08:00
Michael Vorburger ⛑️
e10ae8de4d
add OCP also to On-Premises VMs and Bare Metal on pick-right-solution.md ( #11772 )
2018-12-18 05:04:55 -08:00
James Peach
1d1ccd974d
Minor grammar fix to agent OOM handling description. ( #11797 )
2018-12-17 21:55:37 -08:00
Ian Chakeres
c79b4728ae
Include Kubernetes abbreviation k8s ( #11794 )
...
I was at Kubecon last week, and a few times I encountered people who did not know that k8s == Kubernetes. Therefore, we should mention this abbreviation on the front page.
2018-12-17 16:57:53 -08:00
Niko Pen
8f6f6731c5
ExternalName cleanup ( #11326 )
...
* Remove old kube-dns note
* ExternalName IP clarification
* Add minor edits for clarity
* corrections
Co-Authored-By: nikopen <42466421+nikopen@users.noreply.github.com>
2018-12-17 11:03:04 -08:00
WanLinghao
3ccbb12585
cAdvisor web UI port has been deprecated since v1.10. This patch updates the description about it. ( #11426 )
...
* cAdvisor web UI port has been deprecated since v1.10. This patch update the description about it.
* Update resource-usage-monitoring.md
* Update resource-usage-monitoring.md
2018-12-16 21:28:43 -08:00
Allan Sun
ff3d1b2024
Added new PHP client libr ( #11465 )
2018-12-16 21:16:30 -08:00
Karen Bradshaw
854ee5779c
clean-up yaml variables surrounded by <> ( #11490 )
2018-12-16 21:09:09 -08:00
WanLinghao
7269c416ca
Add description about local http proxy setting's effect on liveness probe ( #11567 )
...
* Add description about local http proxy setting's effect on liveness probe
* Update configure-liveness-readiness-probes.md
2018-12-16 21:07:12 -08:00
Chao Wang
fe3032c56e
Improve explanation of feature-gates/component relationship and usage ( #11562 )
2018-12-16 20:54:54 -08:00
Srinivas R Kulkarni
7ecf764f34
Use latest image for ubuntu ( #11592 )
...
14.04 does not work anymore. Gives socket error when connecting with rabbitmq
2018-12-16 20:49:43 -08:00
WanLinghao
a213182b10
Add description about BoundServiceAccountTokenVolume feature in serviceaccount admission controller ( #11643 )
...
* Add description about BoundServiceAccountTokenVolume feature in serviceaccount admission controller
* Update service-accounts-admin.md
* Update service-accounts-admin.md
2018-12-16 20:42:45 -08:00
shavidissa
5f7300c5fe
Removed the TOC added into the MD ( #11669 )
...
Removed the TOC that was added manually as the TOC is generated by default now (else, there are two levels of the TOC on the page).
2018-12-16 19:43:34 -08:00
Eric Briand
c1e07bcb96
Fix formatting of schedule part ( #11665 )
...
* Fix formatting of schedule part
* Update automated-tasks-with-cron-jobs.md
2018-12-16 19:41:46 -08:00
Lentil Sun
8b264e3fcc
Fix: API version of 1.11.x to v1alpha2 and 1.12.x to v1alpha3 ( #11662 )
2018-12-16 19:39:58 -08:00
¯\_(ツ)_/¯
9962142993
Add Rust client ( #11657 )
2018-12-16 19:38:15 -08:00
Dustin Decker
125927e87c
remove reference to non-existent documentation ( #11655 )
2018-12-16 19:36:22 -08:00
Jim Angel
e4994dc47c
Ui dashboard docs refresh ( #11653 )
...
* updating docs for Dashboard
* removing old images
2018-12-16 19:34:39 -08:00
Hiroki tktk
ea03ca2a0b
update --kubeconfig description ( #11704 )
2018-12-16 19:03:49 -08:00
Naoki Oketani
074a3cdad2
GCE: cluster/kube-up.sh creates 3 nodes by default ( #11694 )
2018-12-16 19:02:06 -08:00
Zach Corleissen
475ffbdd6c
Clarify language for concept templates ( #11737 )
...
Clearer intro line
More edits
2018-12-16 19:00:13 -08:00
Joseph Irving
7f9e1d59fc
clarify Job behaviour once active deadline seconds is exceeded ( #11745 )
2018-12-16 18:33:00 -08:00
Karen Bradshaw
6202a635bd
fix kubeadm-init, extra caution text ( #11762 )
2018-12-16 18:00:18 -08:00
William Chia
55a483022c
move port flag to expose ( #11778 )
...
moved `--port=8080` from `kubectl create` to `kubectl expose`
2018-12-16 17:34:16 -08:00
Michael Vorburger ⛑️
b04c6f58dd
add minishift to pick-right-solution.md ( #11770 )
2018-12-16 04:45:04 -08:00
Michael Vorburger ⛑️
a115b10aff
add OpenShift Container Platform (OCP) to pick-right-solution.md ( #11771 )
2018-12-16 03:28:34 -08:00
MengZeLee
a2919a91a8
update kubeadm reset ( #11734 )
...
* update kubeadm reset
The reset process does not clean up iptables rules , we should do so manually.
* add empty line and end with :
2018-12-15 00:06:27 -08:00
Alex Contini
11a52d31c3
updates to kubecon banners ( #11760 )
...
* updates
* updates
* Update list.html
2018-12-14 09:36:49 -08:00
Pingan
e8b9a4eace
fix link in reconfigure-kubelet ( #11736 )
2018-12-13 03:09:04 -08:00
Zefool
5fdf928a6e
Add flexVolume to list and add anchor. ( #11614 )
...
* Add flexVolume to list and add anchor.
* Update, typo fix
2018-12-13 02:15:22 -08:00
Irfan Ur Rehman
445deb5cd9
Blog post for federation v2 ( #11620 )
2018-12-12 14:27:58 -08:00
Lubomir I. Ivanov
5b480a8ccb
kubeadm-ha: fix variables under "initial-cluster" ( #11700 )
2018-12-11 21:35:28 -08:00
AdamDang
f1c752ae51
Typo fix: federation control plan->federation control plane ( #11679 )
...
* Typo fix: federation control plan->federation control plane
Typo fix: federation control plan->federation control plane
* Update secret.md
2018-12-11 17:35:19 -08:00
lIuDuI
7021514755
Fix Wrong document ( #11697 )
2018-12-11 17:31:57 -08:00
JoeWrightss
95acd44db7
Fix some typos: ips -> IPs ( #11456 )
2018-12-11 16:26:37 -08:00
VM Brasseur
e151dab4b0
OpenContrail -> Tungsten Fabric ( #11436 )
...
* OpenContrail -> Tungsten Fabric
OpenContrail has joined the Linux Foundation Networking Fund and rebranded as Tungsten Fabric to better reflect its open community engagement separate from its Juniper Network roots.
This edit updates the doc to reflect the name change and that Tungsten Fabric is a separate entity from Juniper's Contrail product.
* Include TF in the header
To further reinforce that Contrail and TF are different things.
2018-12-11 16:15:58 -08:00
Naoki Oketani
2e1219d1fa
modified confusion of cert and key. ( #11630 )
2018-12-11 16:12:54 -08:00
Chao Wang
5e05d127e2
fix the command for checking dns pod ( #11603 )
2018-12-11 16:11:19 -08:00
lIuDuI
9833da206e
Update the version in the example ( #11598 )
2018-12-11 16:09:45 -08:00
Chao Wang
41d8a76c3c
fix audit backends decription ( #11535 )
2018-12-11 16:00:58 -08:00
JoeWrightss
1ed4d92bce
Typo fixed: Kuberentes -> Kubernetes ( #11451 )
2018-12-11 15:58:03 -08:00
hongkunyoo
f7cb097db4
Remove duplicated content. ( #11447 )
...
In distribute-credentials-secure.md,
It seems it has duplicated content with line from #82 to #85 .
2018-12-11 15:55:07 -08:00
Joseph Heck
938881ea87
suggesting the path that works more reliably first ( #10954 )
...
Signed-off-by: Joe Heck <heckj@mac.com>
2018-12-11 14:27:13 -08:00
Gyuho Lee
bcbf0c9451
blog: add etcd post for December 11, 2018 ( #11524 )
...
* blog: add etcd post for December 11, 2018
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
* Update 2018-12-11-current-status-and-future-roadmap.md
2018-12-11 09:48:18 -08:00
Gagandeep S. Chhabra
a0b1017b82
Typo: repeated words ( #11640 )
2018-12-11 09:41:28 -08:00
lIuDuI
9381759a14
update multiple-zones.md ( #11600 )
2018-12-11 06:27:58 -08:00
Harshvardhan Karn
74f4f48545
fix typo in high-availabilty ( #11678 )
...
Signed-off-by: harshvkarn <harshvkarn54@gmail.com>
2018-12-10 23:34:30 -08:00
yanghaichao12
b6db60aff1
Fix typos in add-entries-to-pod-etc-hosts-with-host-aliases ( #11639 )
2018-12-10 23:12:09 -08:00
Jordan Liggitt
75ed07f716
Add information on supported version skew and upgrade order ( #11060 )
...
* Add information on supported version skew and upgrade order
* address comments
* added cloud-controller-manager
* format headers
2018-12-07 16:06:31 -08:00
Babak "Bobby" Salamat
6eeb305bbe
Update docs for taints and their version promotions ( #11494 )
2018-12-07 11:11:10 -08:00
Louis
f54578208d
Update storage-classes.md ( #11604 )
2018-12-06 22:58:27 -08:00
Andrew Chen
2fc30aab67
Remove distracting, superfluous links from Learn Kubernetes Basics ( #11593 )
2018-12-06 18:36:02 -08:00
Yang Li
838ba5c01d
Blog NCW Shanghai: image captions and copyediting ( #11590 )
...
* Use Hugo figure shortcodes to display image captions
* Along with copyediting fixes
2018-12-06 08:02:26 -08:00
mdshoaib707
b9140c7500
Updated the word from "you" to "your" ( #11475 )
...
Edited the grammatical mistake from "you" to "your"
2018-12-05 21:47:30 -08:00
Yuexiao Wang
05e7c7ea72
fixe the example for dns-pod-service ( #11516 )
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2018-12-05 21:37:27 -08:00
Duffie Cooley
c4f888efac
fixed typo and clarified mitigation steps. ( #11556 )
2018-12-05 17:55:50 -08:00
Carolyn Van Slyck
d0861dc7ab
Fix link to k8s CoCC ( #11548 )
...
* Fix link to k8s CoCC
* Wordsmithing
* fiddle with mailto link
2018-12-05 15:35:21 -08:00
Lubomir I. Ivanov
1b5415d36a
kubeadm-ts-guide: add entry about centos and docker 1.13.87 ( #11534 )
...
* kubeadm-ts-guide: add entry about centos and docker 1.13.87
* Copyedit for clarity
2018-12-05 14:36:15 -08:00
Josh Berkus
783226a86f
Shanghai ncw post ( #11550 )
...
* Blog post about Shanghai NCW. Submitting for website.
* Update 2018-12-05-new-contributor-shanghai.md
* Update 2018-12-05-new-contributor-shanghai.md
* Added required image credit to NCW Shanghai blog post, since image info doesn't display in the actual blog.
2018-12-05 12:56:53 -08:00
oneoneonepig
91622abbfe
Update kubelet-tls-bootstrapping.md ( #11547 )
...
* Update kubelet-tls-bootstrapping.md
Typo
* Update kubelet-tls-bootstrapping.md
Capitalize K in Kubernetes
2018-12-05 10:18:50 -08:00
Josh Berkus
dc39c23e0e
Blog post about Shanghai NCW. Submitting for website. ( #11441 )
...
* Blog post about Shanghai NCW. Submitting for website.
* Update 2018-12-05-new-contributor-shanghai.md
* Update 2018-12-05-new-contributor-shanghai.md
2018-12-05 10:00:14 -08:00
Kaitlyn Barnard
77c39e41df
adding grpc post ( #11549 )
2018-12-05 09:35:24 -08:00
Yuexiao Wang
eef6919e3d
Minor improvements on upgrade for kubeadm ( #11540 )
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2018-12-05 08:42:00 -08:00
Nikhita Raghunath
6cab82306e
kube-apiserver: remove merge conflict marker ( #11543 )
2018-12-05 08:33:41 -08:00
Nikhita Raghunath
cd04d3ff71
Fix references to patchMergeKey and patchStrategy in types.go ( #11546 )
2018-12-05 08:19:26 -08:00
Jintao Zhang
1a43f78b63
add default enabled plugin PersistentVolumeClaimResize ( #11527 )
...
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
2018-12-05 06:20:33 -08:00