Commit Graph

4059 Commits

Author SHA1 Message Date
Kubernetes Prow Robot 06a06cb3f7
Merge pull request #41402 from pacoxu/container-runtime-cleanup
Container runtime cleanup
2023-06-05 01:36:44 -07:00
Kubernetes Prow Robot 1c1e5f21e4
Merge pull request #41424 from windsonsea/patchver
replace `currentVersion` with `currentPatchVersion` in concepts
2023-06-03 15:00:41 -07:00
Kubernetes Prow Robot 90c074940b
Merge pull request #41326 from tamilselvan1102/k8s-doc-web-20230525
Add glossary tooltip for kubelet
2023-06-02 10:18:53 -07:00
Michael 50bec1f123 replace currentVersion with currentPatchVersion in concepts 2023-06-02 18:56:23 +08:00
Kubernetes Prow Robot d703ea5c4c
Merge pull request #41406 from Ritikaa96/remove-redundant-selector-from-url
Removing redundant #selector in url and adding line-wrapping cleanup
2023-06-02 01:54:53 -07:00
Kubernetes Prow Robot 66edf52b6b
Merge pull request #41413 from windsonsea/ingressy
Tweak line wrappings in /services-networking/
2023-06-01 16:43:45 -07:00
Kubernetes Prow Robot 0246de63f5
Merge pull request #41412 from windsonsea/tweak
tweak line wrappings in concepts/storage/
2023-06-01 16:41:46 -07:00
Kubernetes Prow Robot 0debd148bf
Merge pull request #41286 from sairameshv/exec_probe
Add a caution regarding the `exec` probe mechanism
2023-06-01 09:29:46 -07:00
Kubernetes Prow Robot 5f352713b6
Merge pull request #41351 from JimBugwadia/update_policies_concepts
update policies concepts page
2023-06-01 08:41:46 -07:00
Michael 49135cefb8 Tweak line wrappings in /services-networking/ingress.md 2023-06-01 21:38:11 +08:00
Michael 2886944017 tweak line wrappings in storage/ 2023-06-01 21:20:18 +08:00
Paco Xu 0731e3877c sync status with https://github.com/kubernetes/kubernetes/pull/114017 2023-06-01 18:13:57 +08:00
Paco Xu ab4604aa4c remove 2023-06-01 18:13:57 +08:00
Ritikaa96 e67417a283 Removing redundant #elector in url and adding line-wrapping cleanup, without changing the text.
Signed-off-by: Ritikaa96 <ritika@india.nec.com>
2023-06-01 13:24:48 +05:30
Tamilselvan b189eebd48
wrapping in to <80 characters 2023-05-31 10:40:25 +05:30
Kubernetes Prow Robot 1d2727be56
Merge pull request #41330 from mrgiles/32048_document_kubelet_img_cred_prov_concept
Document kubelet image credential provider extension concept
2023-05-30 16:37:44 -07:00
Marcelo Giles 54bfa620f3
Use shortcode 2023-05-30 16:33:53 -07:00
Kubernetes Prow Robot c8773e546d
Merge pull request #41271 from mrgiles/31719_clarify_job_completionMode_rare_condition
Add note for when multiple pods are started for the same job index
2023-05-30 16:31:43 -07:00
Marcelo Giles f838c75164
Fix sentence 2023-05-30 16:20:10 -07:00
Marcelo Giles e0e2354a2d
Capitalize kubelet 2023-05-30 16:02:55 -07:00
Kubernetes Prow Robot 1a22d90894
Merge pull request #41232 from mrgiles/24627_cluster_add_ons_add_cni_ref
Add CNI plugin to list of Addons
2023-05-30 10:43:51 -07:00
Jim Bugwadia e5d5a3f5f9
Update content/en/docs/concepts/policy/_index.md
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2023-05-29 18:49:59 -07:00
James Williams 8dbe3483af
Fix typo in labels.md 2023-05-28 08:25:49 +01:00
Jim Bugwadia 9def456bca update policies concept
Signed-off-by: Jim Bugwadia <jim@nirmata.com>
2023-05-27 17:04:35 -07:00
tamilselvan1102 3cf47e9bb0 Add glossary tooltip for kubelet 2023-05-25 17:28:45 +05:30
Kubernetes Prow Robot e2fe34eabd
Merge pull request #41314 from mrgiles/32047_legacy_kubelet_img_pull_creds
Fix Kubernetes typo
2023-05-24 19:46:50 -07:00
Marcelo Giles b4a3763273
Fix Kubernetes typo 2023-05-24 18:34:15 -07:00
Kubernetes Prow Robot 4a46cec7b8
Merge pull request #41287 from mrgiles/32047_legacy_kubelet_img_pull_creds
Reinstate kubelet's pull credentials provider mechanism info
2023-05-24 17:24:49 -07:00
Marcelo Giles 873b01b097
Reinstate kubelets credential provider info
Add (GCR) to list item

Add missing acronyms to list

Rewrite kubelet legacy credential provider

Update section title header
2023-05-24 17:04:50 -07:00
Or Raz 79ce53d337
Update nodes.md
Redundant spaces results in a break of new line.
2023-05-24 14:33:22 +03:00
Sreeram Venkitesh 81fd15afe4
Added section on operators for `nodeAffinity` and `podAffinity` (#39742)
* Added section in the docs about the behaviour of operator in the node and pod affinity docs

* Fixes from review

* Fixed podAffinity and added note about non-integer values

* Fixes from review

* Fixed review comments

* Fixes from review
2023-05-24 01:18:50 -07:00
Michael f0e755caae
Fix step indentations in windows user guide (#41283) 2023-05-24 10:55:16 +08:00
Sai Ramesh Vanka 0ef0dedf3a Add a caution regarding the `exec` probe mechanism
Reference Issue: https://github.com/kubernetes/website/issues/41084
1. Exec probe's implementation involves the Kubelet making a gRPC call to the
underlying CRI which inturn involves in the creation of multiple processes that
require a good amount of cpu usage whenever the probe is executed.
2. Whereas the other probes namely `http/gRPC/tcp` involves the Kubelet alone making
a call to the container.
3. There might be a significant amount of cpu overhead in the cases of
higher pod densities, lower periodic intervals when the exec probe is configured.
4. Hence, it would be a good idea to alert the user to opt for the other available probes
in case of the above mentioned scenarios.

Signed-off-by: Sai Ramesh Vanka <svanka@redhat.com>
2023-05-23 21:54:18 +05:30
Kubernetes Prow Robot 0b82613e89
Merge pull request #41274 from erezyfntn/patch-5
Add FortiADC Ingress controller
2023-05-23 09:02:29 -07:00
lakshmi prasuna 589f10154f
Added more points to what's next section under deployment page (#38230)
* Added more points to what's next section under deployment page

* updated content as per review comment

* reworked on comments

* rebase and reworked

* fix format

* Update deployment.md

---------

Co-authored-by: Qiming Teng <tengqm@outlook.com>
2023-05-23 03:06:26 -07:00
erezyfntn 5568df7da2
Update ingress-controllers.md 2023-05-23 08:26:11 +03:00
Marcelo Giles ca366f73d8
Add note for multiple pods for same job index 2023-05-22 18:06:01 -07:00
Marcelo Giles a219b8c2b5
Add CNI to list of addons 2023-05-19 14:06:46 -07:00
Marcelo Giles a79dee21fb
Remove Docker volumes background reference 2023-05-19 11:22:25 -07:00
Kubernetes Prow Robot fcec68a2a9
Merge pull request #41183 from sbhrule15/clarify-default-mount-behavior-secret-configmap
Clarify documentation around default mount permissions for Secrets and ConfigMaps
2023-05-18 17:20:27 -07:00
Joshua Pare 74770e7025 default readonly mounting is not specified 2023-05-18 09:57:16 -05:00
Kubernetes Prow Robot 093971ab31
Merge pull request #41094 from mrgiles/39212_server_field_validation
Add server side field validation section
2023-05-17 05:40:33 -07:00
Marcelo Giles 921936d6a7
Update default kubectl validate statement 2023-05-16 11:34:32 -07:00
Marcelo Giles 071225cc4d
Update SSFV versions paragraph 2023-05-16 09:58:57 -07:00
Kubernetes Prow Robot d219572a20
Merge pull request #38563 from sftim/20221219_revise_service_concept_after_introduction_for_a_bit
Revise Service concept, part 13
2023-05-15 18:05:14 -07:00
Kubernetes Prow Robot 821ca22ac1
Merge pull request #40915 from mrgiles/37738_securing_cluster_checklist_align
Add links between Securing a Cluster and Security Checklist for alignment
2023-05-15 13:45:34 -07:00
Kubernetes Prow Robot 89b0888a81
Merge pull request #41091 from pran2711/FirstPR
Updated Internal Load Balancer annotation for GCP
2023-05-15 13:41:34 -07:00
Sergey Kanzhelev d22f3b970b
Clarify pod scheduling during node graceful termination (#41061)
* clarify the pods scheduling during graceful termination:

* Update content/en/docs/concepts/architecture/nodes.md

Co-authored-by: Qiming Teng <tengqm@outlook.com>

---------

Co-authored-by: Qiming Teng <tengqm@outlook.com>
2023-05-15 13:39:35 -07:00
Marcelo Giles 8afec0c061
Minor style edits from review 2023-05-15 11:52:08 -07:00
Marcelo Giles 83265768c2
Add namespaceSelector:matchLabels example (#41140)
* Add namespaceSelector:matchLabels example

* Change matchLabels for matchExpressions
2023-05-15 00:33:27 -07:00