Commit Graph

3997 Commits (04476c833def606cf51f206d218951c22080ee07)

Author SHA1 Message Date
drfish f3fd15f042 Fix angle brackets issue for pod-topology-spread-constraints.md 2020-05-11 23:07:54 +08:00
Kubernetes Prow Robot 4d5ddc5586
Merge pull request #20855 from povsister/patch-1
Update kubelet command line reference
2020-05-11 04:59:50 -07:00
Kubernetes Prow Robot a0f8b298e0
Merge pull request #20858 from gujingit/master
Add content about the Alibaba cloud provider
2020-05-11 00:31:51 -07:00
povsister c0238b04cf Update kubelet command line reference
Add hint for inconsistent default values
2020-05-11 10:03:26 +08:00
Jerry Park 19d45c8dd0 Fix issue with k8s.io/docs/contribute/advanced/ 2020-05-11 06:42:03 +09:00
gujingit 03aa645e8c add load balancer info for alibaba cloud provider 2020-05-10 09:52:47 +08:00
jqmichael 691f8667c6
Clarify node affinity in ScheduleDaemonSetPods
> If node affinity of the DaemonSet pod already exists, it is replaced.

The original statement made it sound like the original node affinity was ignored when selecting the target node. Added clarification it is not the case. 

For reference, the DaemonSet controller behavior. 
https://github.com/kubernetes/kubernetes/blob/master/pkg/controller/daemon/daemon_controller.go#L1194
2020-05-09 18:40:18 -07:00
Kubernetes Prow Robot 2139b50702
Merge pull request #20793 from JayBeale/patch-3
Documenting read-only rootfs for issue 17927
2020-05-09 15:19:51 -07:00
Kubernetes Prow Robot 89982e33f8
Merge pull request #20798 from inaitgaj/patch-1
logs command to check etc/hosts file corrected
2020-05-09 15:15:50 -07:00
Kubernetes Prow Robot 83aa3bbbfb
Merge pull request #20648 from viniciusbds/issue-20614
Update content/en/docs/reference/kubectl/overview.md
2020-05-09 15:11:50 -07:00
Kubernetes Prow Robot 8584dc7bbc
Merge pull request #20863 from brandondoran/fix-typo-nodelocaldns
Fix small typo NodeLocal DNSCache doc
2020-05-09 14:43:51 -07:00
Brandon Doran 5f844149d4 Fix small typo NodeLocal DNSCache doc 2020-05-09 11:07:39 -07:00
Kubernetes Prow Robot edba6ff1a2
Merge pull request #20622 from davivcgarcia/feature-15123
Clarify minimum cluster resource requirement for tasks
2020-05-09 09:53:51 -07:00
Vinicius Barbosa d77e95a8e8 Update overview.md: remove a depreciated flag 2020-05-09 13:35:14 -03:00
Kubernetes Prow Robot 78ab651c9e
Merge pull request #18342 from sftim/20191227_tidy_pod_preset_pages
Tidy pages for PodPreset
2020-05-09 09:01:53 -07:00
Kubernetes Prow Robot 2da45fa3a6
Merge pull request #17509 from sftim/20191109_node_concept_improvements
Improve Node, Taints, and Tolerations concepts
2020-05-09 08:59:51 -07:00
Kubernetes Prow Robot 024cbb184b
Merge pull request #20859 from sharet-adl/patch-2
pipe char escape, flag --server-print, labels sample, exec extra --, config NL
2020-05-09 08:11:51 -07:00
Kubernetes Prow Robot 7000da5cfb
Merge pull request #20861 from viniciusbds/patch-1
Update k8s.io/docs/tasks/access-application-cluster/connecting-frontend-backend/
2020-05-09 08:07:51 -07:00
Kubernetes Prow Robot 07fa80f443
Merge pull request #20856 from willise/docs/affinity
docs: reorganize topologyKey constraints
2020-05-09 07:51:50 -07:00
Kubernetes Prow Robot 4e34fd1e2c
Merge pull request #20854 from willise/docs/initContainer
docs: Add all probe explanation of init contaners
2020-05-09 07:43:50 -07:00
viniciusbds 471840944c Add cleanup topic 2020-05-09 10:23:26 -03:00
sharet-adl a3690b62a2
Fix couple of issues - display issue for pipe char, output for flag --server-print, labels sample, exec extra --, config sample missing newline
Proposing fixes for some issues in the page:

1. Handle display issue for the 'kubectl run' command, where pipe character ('|') is not properly escaped, so the text gets trimmed.  
Currently the text is rendered like this: "run	`kubectl run NAME --image=image [--env=“key=value”] [--port=port] [--replicas=replicas] [--dry-run=server".

The correct text will be displayed like:  
"kubectl run NAME --image=image [--env="key=value"] [--port=port] [--replicas=replicas] [--dry-run=server|client|none] [--overrides=inline-json] [flags]".  
Also, the description column would be displayed properly.

2. Fixing output of 'get pods' command, when flag --server-print is set to false.  
The only displayed columns would be NAME and AGE.  

3. Fixing description and sample command for delete pods (kubectl delete pods,service ..), where 'label-name' text is ambiguously used as the label's value. Labels are key-value pairs.  
Suggested way of writting it:  
"# Delete all the pods and services that have the label '<label-key>=<label-value>'.  
kubectl delete pods,services -l <label-key>=<label-value>"

Another way to write it could be:  
"# Delete all the pods and services that have the label 'name=<label-value>'.  
kubectl delete pods,services -l name=<label-value>"

4. Updating the syntax for three 'kubectl exec' commands, to include the '--' before the user's command, to be inline with current way of working and to avoid deprecation message.  

5. Enhance sample for 'kubectl config' command, where the newline was not handled properly.  
Before:  
[user@wstation ~]$ kubectl config view --template='{{ range .contexts }}{{ if eq .name "'$(kubectl config current-context)'" }}Current user: {{ .context.user }}{{ end }}{{ end }}'  
Current user: kubernetes-admin[user@wstation ~]$

After:  
[user@wstation ~]$ kubectl config view --template='{{ range .contexts }}{{ if eq .name "'$(kubectl config current-context)'" }}Current user: {{ printf "%s\n" .context.user }}{{ end }}{{ end }}'  
Current user: kubernetes-admin  
[user@wstation ~]$
2020-05-09 12:54:02 +03:00
willise fd16ff5529 docs: reorganize topologyKey constraints
Signed-off-by: willise <sunshuai@cmss.chinamobile.com>
2020-05-09 14:44:25 +08:00
willise 6e64f84983 docs: Add all probe explanation of init contaners
Signed-off-by: willise <sunshuai@cmss.chinamobile.com>
2020-05-09 11:03:47 +08:00
gujingit c349c7dfd2 Add content about the Alibaba cloud provider 2020-05-09 10:49:19 +08:00
Kubernetes Prow Robot 22d2069bc0
Merge pull request #20417 from viniciusbds/issue-20414
Remove the --generator deprecated flag of a tutorial
2020-05-08 19:45:52 -07:00
Kubernetes Prow Robot 650845a4bf
Merge pull request #20747 from prasadkatti/patch-1
[kubeadm] warn if kernel/docker/etcd version(s) are older than the min required version(s)
2020-05-08 19:43:52 -07:00
Kubernetes Prow Robot ba1e890aaa
Merge pull request #20720 from afmsavage/patch-1
Fixed configure-access-multiple-clusters.md
2020-05-08 19:41:52 -07:00
Kubernetes Prow Robot 421caff2b5
Merge pull request #20741 from jqmichael/patch-2
Made autoscale command more explicit
2020-05-08 19:39:52 -07:00
Kubernetes Prow Robot eef6edfb93
Merge pull request #20738 from fml2/feature/Document-char-encoding-in-mapped-volumes
Document char encoding in mapped volumes
2020-05-08 19:37:51 -07:00
Kubernetes Prow Robot 0b9d33cbb0
Merge pull request #20800 from sftim/20200506_signpost_blog_contributors_to_help
Signpost blog contributors to “Write a blog post”
2020-05-08 19:35:51 -07:00
Kubernetes Prow Robot 29268394e6
Merge pull request #20761 from sftim/20200504_drop_endpointslice_feature_callout
Don't mention EndpointSlice resource on front page
2020-05-08 19:33:52 -07:00
jkld11 b96863ac5f
Add case study: Booking.com (#20783)
* Create index.html

* add logos

* fix logo file name

* add booking.com images

* remove Nav from featured

* add booz allen featured logo

* make Booz Allen featured

* remove spotify from featured

* fix booz allen front matter

* add correct logo

* add correct booz allen logo
2020-05-08 19:29:53 -07:00
iaoiui af50366896
Some docs incorrect v1.18 kubectl run command (#20784)
* use "kubectl create deploy" instead of "kubectl run"

* omit whitspace fix

* omit whitspace fix

* avoid shorthand
2020-05-08 19:27:52 -07:00
Kubernetes Prow Robot 9c8e3c5130
Merge pull request #20819 from rkamudhan/patch-8
adding OVN4NFV-K8S-Plugin in addons
2020-05-08 19:19:51 -07:00
Kubernetes Prow Robot 3c676d5e73
Merge pull request #20812 from prasadkatti/patch-2
Update feature state for APIListChunking
2020-05-08 19:17:52 -07:00
Kubernetes Prow Robot 2d03fb3cf4
Merge pull request #20815 from wawa0210/change-en-os-label
[Trival] beta.kubernetes.io/os deprecated since v1.14, are targeted for removal in v1.18
2020-05-08 19:15:52 -07:00
Kubernetes Prow Robot 68283c7717
Merge pull request #20816 from rkamudhan/patch-7
Adding OVN4NFV-K8S-Plugin in networking.md
2020-05-08 19:13:52 -07:00
Kubernetes Prow Robot 7b8a28bd26
Merge pull request #20840 from GauravJain98/master
fixed ingress minikube 2nd deployment commands
2020-05-08 19:11:53 -07:00
Kubernetes Prow Robot b92cd32196
Merge pull request #20833 from prasadkatti/pdb_feature_state
Add feature state for PodDisruptionBudget
2020-05-08 19:09:52 -07:00
Kubernetes Prow Robot 4466ffb148
Merge pull request #20843 from alexcontini/contini-remove-old-case-studies
remove old case studies and one that link to external sites
2020-05-08 18:55:51 -07:00
Alex Contini c34b02f2d8 Delete babylon-featured.svg 2020-05-08 12:43:48 -04:00
Alex Contini dfa9229e63 update 2020-05-08 12:42:22 -04:00
Prasad Katti 8b7205183d
Add PodDisruptionBudget to feature gates reference 2020-05-08 08:35:47 -07:00
Alex Contini bb29474501 remove old case studies and one that link to external sites 2020-05-08 11:04:35 -04:00
Gaurav Jain b683006914 fixed ingress minikube 2nd deployment commands 2020-05-08 16:02:27 +05:30
Kubernetes Prow Robot 21d910d5a8
Merge pull request #20788 from nikitakalyanov/tinyfix-helloworld-1
Remove reference to deprecated image
2020-05-08 01:59:42 -07:00
Kubernetes Prow Robot d41aaf877e
Merge pull request #20824 from juampynr/patch-1
Fix syntax error
2020-05-08 01:55:42 -07:00
Kubernetes Prow Robot 82ca68492e
Merge pull request #20830 from prasadkatti/fix_pdb_example
Fix cluster state in example on Disruptions concept page
2020-05-08 01:49:43 -07:00
Kubernetes Prow Robot 1e48ec3ef7
Merge pull request #20790 from DanRoscigno/patch-1
Update step deploying `kube-state-metrics` in "Example: Adding logging and metrics..."
2020-05-07 22:21:43 -07:00
Prasad Katti d1952bf98c Add feature state for PodDisruptionBudget 2020-05-07 16:09:18 -07:00
fml2 d1ff4e7c12 Document that UTF-8 is used when exposing configMaps as files 2020-05-07 23:45:43 +02:00
Prasad Katti 4b1a41b1ca Fix cluster state in example on Disruptions concept page 2020-05-07 14:25:29 -07:00
Kubernetes Prow Robot a6c6be1f27
Merge pull request #20805 from boskoop/deployment-recreate-edge-case
Pod lifecycle edge-cases for Recreate strategy
2020-05-07 14:07:42 -07:00
Kubernetes Prow Robot 20392aedad
Merge pull request #20605 from aapeliv/master
Fix typo in content/en/docs/concepts/services-networking/service.md
2020-05-07 10:45:10 -07:00
Kubernetes Prow Robot 4f7477c844
Merge pull request #20778 from prasadkatti/kubelet_integration_doc
Update kubeadm-kubelet integration doc
2020-05-07 08:35:09 -07:00
Jai Govindani e381dc787a
docs: tweak grammar, tenses, punctuation 2020-05-07 20:55:09 +07:00
Juampy NR 98a90113bc
Fix syntax error 2020-05-07 10:18:06 +02:00
wawa0210 13aee8fe47
beta.kubernetes.io/os deprecated since v1.14, are targeted for removal in v1.18 2020-05-07 11:52:30 +08:00
Kuralamudhan Ramakrishnan 1a04e1471d
adding OVN4NFV-K8S-Plugin in addons 2020-05-06 20:52:14 -07:00
Kuralamudhan Ramakrishnan d8172b6aab
Update networking.md 2020-05-06 20:39:53 -07:00
Kubernetes Prow Robot f3891c9baf
Merge pull request #20715 from bridgetkromhout/cluster-cidr-clarification
Clarification of formatting for IPv4/IPv6 CIDRs
2020-05-06 18:25:08 -07:00
Prasad Katti 237551019f
Update feature state for APIListChunking
APIListChunking is beta since v1.9
2020-05-06 18:03:06 -07:00
Nikita Kalyanov 236c65c18e Remove reference to deprecated image
The #20553 changed the deprecated hello-node image to echoserver image. However, there is a reference to the old image later in the text. Point 5 implies that there will be a 'Hello World' message. This probably was true for the hello-node image but the echoserver does not print this (it echoes back the request with all of its params). This may be misleading, so change the text to a generic 'app's response'/'sample app'. Unused JS sources of the old image are removed.
2020-05-07 00:54:27 +03:00
zacharysarah ea7aad4a2c Remove duplicate content 2020-05-06 14:34:47 -07:00
Christian Bürgi cf2d2b7970
Pod lifecycle edge-cases for Recreate strategy
Document Pod lifecycle behavior edge-case when using a Recreate strategy. This should document the "unexpected" behavior discussed in kubernetes/kubernetes#58814
2020-05-06 19:58:58 +02:00
Tim Bannister 7607ff4623 Signpost blog contributors to help
(add a comment to the blog section index with advice on how to
find the contributor guide)
2020-05-06 15:33:20 +01:00
Nikhil Jagtiani 14c07ede73
logs command to check etc/hosts file corrected
hosts file can be viewed using exec command.
2020-05-06 14:38:59 +05:30
Jay Beale 78de298fa5
Documenting read-only rootfs for issue 17927
Issue 17927 (https://github.com/kubernetes/website/issues/17927) asks for a change to this task-focused doc on security-context. It notes that this doesn't mention read-only root filesystem, while it's documented in the PSP page. This adds a bullet for read-only rootfs, clarifies that the bulleted list isn't comprehensive, and tells someone reading the list where to find more. The link is copied from the existing What's Next link list.
2020-05-05 22:38:37 -07:00
DanRoscigno 00ad32d542 correct scaling instructions 2020-05-05 23:57:03 -04:00
Dan Roscigno 8576da2d9e
Update guestbook-logs-metrics-with-elk.md
Fix path for `kube-state-metrics`
2020-05-05 23:31:46 -04:00
Kubernetes Prow Robot 93e2ae3e96
Merge pull request #20766 from prasadkatti/patch-2
Set feature state version for kubelet config task
2020-05-05 13:51:09 -07:00
Kubernetes Prow Robot 45537f7e0b
Merge pull request #20770 from prasadkatti/patch-5
Update the text for a link to match page title
2020-05-05 11:11:09 -07:00
Kubernetes Prow Robot dfb4115f2c
Merge pull request #20659 from zacharysarah/update-kccnc-dates
Revise KCCNC EU dates and location to virtual
2020-05-05 11:03:09 -07:00
Kubernetes Prow Robot 5f09fa4814
Merge pull request #20602 from Huang-Wei/Introducing-PodTopologySpread
Blog introducing PodTopologySpread
2020-05-05 10:33:09 -07:00
Prasad Katti f11fec502f Update the text for a link to match page title 2020-05-05 08:44:35 -07:00
Kubernetes Prow Robot 88cc210b1b
Merge pull request #20723 from viniciusbds/patch-2
Update content/en/docs/tasks/manage-kubernetes-objects/declarative-config.md
2020-05-05 01:49:08 -07:00
Prasad Katti 20187db4bb Update kubeadm-kubelet integration doc 2020-05-05 00:08:31 -07:00
Kubernetes Prow Robot 2f06ef3c3d
Merge pull request #20660 from zacharysarah/3rd-party-content
How K8s docs handle third party and dual sourced content
2020-05-04 21:29:08 -07:00
zacharysarah 755b5384a8 How K8s docs handle third party and dual sourced content
Revise first draft

Update content/en/blog/_posts/2020-05-xx-third-party-dual-sourced-content.md

Co-Authored-By: Christoph Blecker <admin@toph.ca>

Consistent use of 'third party'
2020-05-04 21:09:02 -07:00
viniciusbds e119d7a905 Remove the --generator deprecated flag of Horizontal Pod Autoscaler Walkthrough tutorial. 2020-05-04 23:57:08 -03:00
viniciusbds 21d8c30897 How to update objects 2020-05-04 23:43:06 -03:00
Prasad Katti 12562732ab Set feature state version for kubelet config task 2020-05-04 18:46:27 -07:00
Wei Huang bd85794f04
Blog introducing PodTopologySpread 2020-05-04 20:17:31 -04:00
Kubernetes Prow Robot 0890487d52
Merge pull request #20764 from jkld11/master
Add case study: Babylon
2020-05-04 15:51:08 -07:00
jkld11 25a83a21a5
fix location 2020-05-04 17:17:07 -04:00
jkld11 1f73da3a7a
small fixes 2020-05-04 17:00:17 -04:00
Kubernetes Prow Robot 2d1401a4ac
Merge pull request #20689 from alexcontini/contini-add-booz-allen-case-study
Add case study: Booz Allen
2020-05-04 13:53:09 -07:00
jkld11 c92a0958b8
add logos 2020-05-04 16:48:07 -04:00
jkld11 d3d2e0432c
remove China Unicom from featured case studies 2020-05-04 16:23:23 -04:00
jkld11 d4a1ba70f7
change logo 2020-05-04 16:13:50 -04:00
jkld11 47fddce0ef
fix frontmatter 2020-05-04 15:57:34 -04:00
jkld11 1bf77c7935
add weight and quote in frontmatter 2020-05-04 15:41:00 -04:00
jkld11 8d5b6ae8c7
add logo 2020-05-04 15:18:10 -04:00
Bridget Kromhout 1c7dcfc6de
Clarify IPv4 and IPv6
Signed-off-by: Bridget Kromhout <bridget@kromhout.org>
2020-05-04 14:03:31 -05:00
jkld11 ab99403986
Create index.html 2020-05-04 15:02:33 -04:00
Tim Bannister 63550c9e88 Don't mention EndpointSlice resource on front page
EndpointSlice is a nice idea, but it's not front-page-of-site nice.

Remove it.
2020-05-04 17:22:19 +01:00
Prasad Katti 8dbb2b19cf [kubeadm] warn if kernel/docker/etcd version(s) are older than the minimum required version(s) 2020-05-04 09:03:58 -07:00
Bahman Nikkhahan aff675634f
Remove extra text
Remove additional "Networking" text
2020-05-04 22:57:48 +10:00
jqmichael 5f18998e73
Made autoscale command more explicit 2020-05-03 12:02:23 -07:00
Kubernetes Prow Robot f64d9ae916
Merge pull request #20696 from pjhwa/fix-20695
Fix issue with k8s.io/docs/concepts/cluster-administration/cloud-prov…
2020-05-03 07:02:26 -07:00
Kubernetes Prow Robot 3dd78ecc2c
Merge pull request #20721 from ShivamGoyal1899/patch-1
Add the missing double quote (")
2020-05-02 14:44:26 -07:00
Kubernetes Prow Robot 45166beb88
Merge pull request #20525 from TrishaChetani/patch-4
Added podman as experimental driver
2020-05-02 13:44:26 -07:00
Shivam Goyal 1a1028ac76
Add the missing double quote (")
missing double quote (") after the word services in the last table
2020-05-02 13:22:13 +05:30
Antonio Savage d13ae7a5da
Fixed configure-access-multiple-clusters.md
I fixed a Powershell command that you had provided in this document.  Attempting to run the command with the format you supplied resulted in errors due to some conflict between using backwards slash for pathnames inside of parentheses.
2020-05-01 21:19:41 -05:00
Alex Contini b144d84f40 fix text 2020-05-01 12:48:30 -04:00
Kubernetes Prow Robot d67998a8dc
Merge pull request #20422 from nikhil-zadoo/patch-1
Updated hyperlink to raw-block-volume-support
2020-05-01 06:50:29 -07:00
Jerry Park ee9f3db6cf Fix issue with k8s.io/docs/concepts/cluster-administration/cloud-providers/ 2020-05-01 08:06:54 +09:00
Lachlan Evenson b17628152b
Remove IPVS prerequisites
Remove caution and replace with updated default
Add kube-apiserver feature-gates

Signed-off-by: Lachlan Evenson <lachlan.evenson@microsoft.com>
2020-04-30 15:46:44 -07:00
Kubernetes Prow Robot bed6714e3d
Merge pull request #20532 from laurenhughes/patch-1
Fix broken link
2020-04-30 15:11:37 -07:00
Kubernetes Prow Robot 37ff0aeca4
Merge pull request #20690 from Joelbear5/patch-1
Documented setting optional key name in secret.md for --from-file.
2020-04-30 15:07:38 -07:00
Kubernetes Prow Robot 5fbcd30139
Merge pull request #20691 from alculquicondor/fix-2nd-scheduler
Add missing ClusterRoleBinding and leases permissions for running 2nd scheduler
2020-04-30 15:05:37 -07:00
Aldo Culquicondor ade52dec1e Add missing ClusterRoleBinding and leases permissions for running 2nd scheduler
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2020-04-30 17:57:28 -04:00
Joel 524e6c275a
Added optional key name for --from-file. 2020-04-30 11:42:56 -07:00
Alex Contini 5e947eccfb Update index.html 2020-04-30 13:21:33 -04:00
Alex Contini 17fe96b710 Update index.html 2020-04-30 13:20:15 -04:00
Alex Contini 5a0bd8d479 add Booz Allen 2020-04-30 13:05:24 -04:00
ViBiOh 71f95e719a
fix: Metadata name of ConfigMap must be lower case 2020-04-30 11:32:30 +02:00
Kubernetes Prow Robot 912d42c29c
Merge pull request #20651 from dsbos/patch-7
Fixed Markdown syntax error in list
2020-04-30 01:46:17 -07:00
Kubernetes Prow Robot c76ea7f239
Merge pull request #20653 from squat/fixflagtypo
authentication.md: fix OIDC flag typo in table
2020-04-29 14:58:18 -07:00
zacharysarah ccdb25f58a Revise KCCNC EU dates and location to virtual 2020-04-29 14:21:54 -07:00
Kubernetes Prow Robot af23b1ebc1
Merge pull request #20650 from dsbos/patch-6
Fixed a punctuation error.
2020-04-29 14:20:17 -07:00
Kubernetes Prow Robot db4f95a37b
Merge pull request #20645 from cristobal/patch-2
Update secret.md
2020-04-29 14:18:17 -07:00
Cristobal Dabed 4b46f0028d
Update secret.md
Update all references of the escaped example password from `S!B\*d$zDsb` to `S!B\*d$zDsb=`
2020-04-29 22:03:21 +02:00
Johannes M. Scheuermann 496a4ff800 Use sudo for setting sysctl config 2020-04-29 19:29:54 +02:00
Lucas Servén Marín 7fe458bb58
authentication.md: fix OIDC flag typo in table
This commit corrects an flag in the table of OIDC flag descriptions.

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
2020-04-29 17:17:16 +02:00
Daniel Barclay 1563cf64c9
Fixed Markdow syntax error.
Can someone verify that my correction is correct? (I don't know how to view the rendered form of the Markdown.)(
2020-04-29 10:59:03 -04:00
Daniel Barclay 37172dd1bf
Fixed a puncutation error. 2020-04-29 10:02:50 -04:00
Cristobal Dabed 49c056370f
Update secret.md
Also apply the character `=` to the example.
2020-04-29 15:02:14 +02:00
Cristobal Dabed 8910e837c0
Update secret.md
We had to escape a password that ended with `=` to make the secret work with our pod.
2020-04-29 13:02:11 +02:00
Giovanni Geraci b06e2af913
Replaced [REQUIRED VERSION] with {{< skew latestVersion >}} 2020-04-29 12:40:16 +02:00
TrishaChetani 93fadf57f0 Change the caps 2020-04-29 11:10:00 +02:00
Davi Garcia 2c9a9a64ec Clarify minimum cluster resource requirement for tasks
Signed-off-by: Davi Garcia <dvercill@redhat.com>
2020-04-28 20:23:56 -03:00
Kubernetes Prow Robot 277831f168
Merge pull request #20513 from prasadkatti/patch-4
Remove 'kubeadm alpha kubelet config download'
2020-04-28 16:10:25 -07:00
Kubernetes Prow Robot 717a65084b
Merge pull request #20609 from SataQiu/update-kubeadm-cgroup-docs-20200428
kubeadm: update docs about configuring cgroup driver used by kubelet on control-plane node
2020-04-28 15:56:24 -07:00
Tim Bannister c5abd7704a Improve Node, Taints, and Tolerations concepts
- Use glossary shortcodes in Node concept
  Add glossary tooltips to help new readers take in unfamiliar concepts.
- Move minion hint to glossary
  The page about Node need not mention the former name (minion): it has
  been many releases since the name change.
  Instead, add a hint to the full glossary definition.
- Use note shortcodes where appropriate
- Order node management section first in concept page
- Drop list of components that act on Nodes
  With Operators and CustomResourceDefinitions now common, plus the
  cluster API, it's less easy to give a definitive list of components that
  interacr with Node objects.
- Tidy old mentions of GA features for Node
- Give node tainting by condition its own section
- Introduce toleration concept before using it
- Mention version in TopologyManager feature state
- Other rewording
- Tidy Node condition table
- Explain SchedulingDisabled synthesized condition
- Drop details of supported versions for NodeRestriction
  Assume that cluster version is v1.13 or later
2020-04-28 23:30:05 +01:00
Kubernetes Prow Robot a940d3158f
Merge pull request #20484 from KnotGud/master
Fix rendering error in k8s.io/docs/tasks/administer-cluster/kubeadm/adding-windows-nodes/
2020-04-28 11:45:38 -07:00
Kubernetes Prow Robot 426962e0a2
Merge pull request #20591 from jmvbxx/patch-1
Remove deprecated --generator=run-pod/v1
2020-04-28 07:16:08 -07:00
SataQiu f150906094 kubeadm: update docs about configuring cgroup driver used by kubelet on control-plane node 2020-04-28 21:41:43 +08:00
Aapeli c44e025d8d
Fix typo in content/en/docs/concepts/services-networking/service.md 2020-04-28 08:53:40 +10:00
Kubernetes Prow Robot 4d33f0282c
Merge pull request #20522 from Colstuwjx/fix/doc-node-affinity-nodeSelectorTerms-matchExpressions
doc: correct the description for nodeSelectorTerms,matchExpressions.
2020-04-27 13:22:05 -07:00
Kubernetes Prow Robot b508743c95
Merge pull request #20529 from neolit123/1.19-fix-create-cluster-ip-host
kubeadm: fix typo in control-plane-ip
2020-04-27 11:57:26 -07:00
Kubernetes Prow Robot cf2fe36353
Merge pull request #20533 from prasadkatti/patch-1
Update default pause image in kubelet reference
2020-04-27 11:51:22 -07:00
Chris Friesen f768f14567 Remove stale docs about disabling the PodPriority feature.
As of 1.18 the PodPriority feature cannot be disabled, so update
the docs to reflect this.
2020-04-27 11:47:50 -06:00
Kubernetes Prow Robot 33f472c285
Merge pull request #20547 from dsbos/patch-5
Tiny who/whom grammar fix.
2020-04-27 09:23:30 -07:00
Jason Bornhoft f7ec0ce675
Remove deprecated --generator=run-pod/v1
`--generator=run-pod/v1` has since been deprecated and is no longer required in v1.18 to create pods. This is now the automatic behaviour.
2020-04-27 11:21:10 -05:00
Kubernetes Prow Robot ab908ac77a
Merge pull request #20553 from medyagh/patch-1
update deprecated image in hello minikube
2020-04-27 08:19:29 -07:00
Kubernetes Prow Robot 213769bc72
Merge pull request #20576 from pjhwa/fix-20575
Fix issue with k8s.io/docs/concepts/configuration/manage-resources-co…
2020-04-27 07:49:30 -07:00
Kubernetes Prow Robot 61aeaca844
Merge pull request #20561 from dmitrytokarev/dashboard-v2.0.0
Updated dashboard installation command to use v2.0.0
2020-04-27 07:41:30 -07:00
Jerry Park 1b52e40232 Fix issue with k8s.io/docs/concepts/configuration/manage-resources-containers/ 2020-04-27 23:37:13 +09:00