16373 Commits

Author SHA1 Message Date
Kubernetes Prow Robot 152082f1db Merge pull request #30454 from mayocream/patch-2
[zh] Sync changes in 使用 kubeadm API 定制组件
2021-11-12 05:24:27 -08:00
Kubernetes Prow Robot e0ffcf9342 Merge pull request #30374 from clarinette9/docs-bfe-ingress
add BFE-ingress-controller to the document ingress-controllers.md.
2021-11-12 05:22:28 -08:00
Kubernetes Prow Robot 4de6225385 Merge pull request #30350 from spiffxp/drop-kubernetes-e2e-test-images
replace dnsutils example image
2021-11-12 05:20:28 -08:00
wiggitywhitney 8716bb6e1e Fix to reveal more info when plus is clicked 2021-11-12 06:34:30 -06:00
Umair A. Shahid 53bf4f212a Kubelet accepts graceful node shutdown parameters in camel case while they are written in the document in pascal case 2021-11-12 12:29:34 +01:00
Patrick Ohly 65bceb1876 generic ephemeral volumes: document graduation to GA 2021-11-12 09:46:11 +01:00
Mayo Cream ae61db3ca5 Sync changes in content/zh/docs/setup/production-environment/tools/kubeadm/control-plane-flags.md 2021-11-12 16:39:27 +08:00
qlijin efbbe7f183 [zh]translate. fix issue #30217 (#30403)
* [zh]translate. fix issue #30217

* [zh-Hans] translate kubelet-in-userns.md. Update code after review
2021-11-11 21:52:28 -08:00
Guangwen Feng b658c945d0 [zh] Remove ^H character
Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
2021-11-12 13:11:23 +08:00
Kubernetes Prow Robot 6a237d0298 Merge pull request #30446 from Arhell/upd-link
[zh] update references in Finalizers
2021-11-11 19:34:29 -08:00
Akihiro Suda e2f17b7579 Fix typos,config paths in kubelet-in-userns.md. Add link to port forwarder implementation (#30410)
* kubelet-in-userns.md: fix typoes

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>

* kubelet-in-userns.md: fix unexpected config paths

Referring to `/etc/containerd/config.toml` makes sense only when the user has
read/write permissions to `/etc/containerd/config.toml` in the current mount
namespace, which is not always assumed in the context of this documentation.

The same applies to `/etc/crio/crio.conf`, too.

Partially revert PR 30020.

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>

* kubelet-in-userns.md: add back the link to example port forwarder implementation

Add back the link to `k3s/pkg/rootlessports/controller.go` removed in PR 30020.

As stated in `{{ <note> }}`, the corresponding section is written for developers
of Kubernetes distros, not for end users.
So we should retain the implementation details here.

Partially revert PR 30020.

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2021-11-11 18:02:28 -08:00
Kubernetes Prow Robot 1e36c7611f Merge pull request #30360 from qzdl/patch-2
update pod mapping to avoid deprecation notice
2021-11-11 17:44:28 -08:00
Arhell d012f0b4a2 [zh] update references in Finalizers 2021-11-12 01:19:48 +02:00
wiggitywhitney 89b1ee4032 Fix to reveal more info when plus is clicked 2021-11-11 12:09:05 -06:00
Kubernetes Prow Robot ed72287310 Merge pull request #30433 from SgtCoDFish/cert-manager-link-ko
[ko] update cert-manager docs link
2021-11-11 09:48:08 -08:00
Kubernetes Prow Robot 92e5d41881 Merge pull request #30439 from sysnet4admin/patch-4
Update apparmor.md
2021-11-11 09:46:08 -08:00
Harry Bagdi 4729b75ffb graduate IngressClassNamespacedParams to GA 2021-11-11 08:51:52 -08:00
Kubernetes Prow Robot 0a17c09a37 Merge pull request #30257 from aysabzevar/feature/add-sudo-redhat-es
[es] add sudo to Red Hat-based distributions
2021-11-11 08:08:08 -08:00
Kubernetes Prow Robot c58838a690 Merge pull request #30423 from alculquicondor/tracking-beta
Graduate JobTrackingWithFinalizers to beta
2021-11-11 06:29:50 -08:00
Kubernetes Prow Robot 297bb525fe Merge pull request #30383 from fenggw-fnst/work
[zh] Update create-cluster-kubeadm.md and fix invalid links
2021-11-11 02:55:51 -08:00
syxunion 8039754872 translate Reference/Glossary/Eviction (#30438)
* translate Reference/Glossary/Eviction

* modify full_link path
2021-11-11 02:53:50 -08:00
Kubernetes Prow Robot 3f0994baba Merge pull request #30434 from SgtCoDFish/cert-manager-link-zh
[zh] Update cert-manager docs link
2021-11-11 00:55:50 -08:00
Vaibhav f58c7705bb Remove the link as refereneced content is missing 2021-11-11 14:10:19 +05:30
Kubernetes Prow Robot 9dbee0dd47 Merge pull request #30351 from liggitt/podsecurity-beta
Podsecurity beta updates
2021-11-10 23:37:50 -08:00
Hoon Jo 9ac60ec13d Update apparmor.md
Due to exec command DEPRECATED. so please add `--` to avoid info message. 

`Current`
```
root@wk8s-m:~# kubectl exec hello-apparmor cat /proc/1/attr/current
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
k8s-apparmor-example-deny-write (enforce)
``` 

```
root@wk8s-m:~# kubectl exec hello-apparmor touch /tmp/test
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
touch: /tmp/test: Permission denied
command terminated with exit code 1
```

`Change`
```
root@wk8s-m:~# kubectl exec hello-apparmor -- cat /proc/1/attr/current
k8s-apparmor-example-deny-write (enforce)
```

```
root@wk8s-m:~# kubectl exec hello-apparmor -- touch /tmp/test
touch: /tmp/test: Permission denied
command terminated with exit code 1
```
2021-11-11 16:02:04 +09:00
Cheng Xing 1e0796c4e4 Delegate FSGroup to CSI beta 2021-11-10 17:02:51 -08:00
Arhell f5dea3bb90 [ja] removed Contiv.io 2021-11-11 00:35:47 +02:00
Jordan Liggitt 4b7784728a PodSecurity beta updates 2021-11-10 10:30:51 -05:00
Aldo Culquicondor 575b742e0a Graduate JobTrackingWithFinalizers to beta 2021-11-10 09:35:30 -05:00
Ashley Davis 5e4e284a71 [zh] update cert-manager docs link
Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2021-11-10 14:19:50 +00:00
Ashley Davis ed69e93716 [ko] update cert-manager docs link
Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2021-11-10 14:19:04 +00:00
Ashley Davis 8ae9faaed1 [en] update link to cert-manager docs
Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2021-11-10 14:18:23 +00:00
ahg-g 14a003cb3b add docs for JobMutableNodeSchedulingDirectives (#30390) 2021-11-10 04:43:27 -08:00
Kubernetes Prow Robot 53f7612552 Merge pull request #30186 from sandersaares/request-is-not-a-guarantee
A CPU request does not result in a guarantee
2021-11-09 23:15:26 -08:00
Kubernetes Prow Robot 8f52166ac8 Merge pull request #28887 from chenxuc/pause-resume2
clarify rollout behavior in deployment
2021-11-09 23:13:26 -08:00
Guangwen Feng a7d816000a [zh] Update create-cluster-kubeadm.md and fix invalid links
Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
2021-11-10 14:03:24 +08:00
Kubernetes Prow Robot dea1834fe9 Merge pull request #30396 from Arhell/typo-fix
[zh] fixed a typo
2021-11-09 19:21:25 -08:00
Kubernetes Prow Robot 23ab74022d Merge pull request #30402 from fenggw-fnst/work2
[zh] Fix typo
2021-11-09 19:19:26 -08:00
Kubernetes Prow Robot 8e846d1655 Merge pull request #30367 from steven-my/29329-translation-for-admin-4
translation for section admin4
2021-11-09 18:39:27 -08:00
Kubernetes Prow Robot c3318e0cd9 Merge pull request #30400 from RA489/ha
Improvement to create cluster using minikube
2021-11-09 18:35:26 -08:00
Kubernetes Prow Robot 5436d4af9d Merge pull request #30398 from jihoon-seo/211109_Make_redirection_for_highly-available-control-plane
Make redirection for highly-available-control-plane
2021-11-09 18:33:26 -08:00
Kubernetes Prow Robot 2245b59156 Merge pull request #30387 from kvaps/omit-api-audiences
ServiceAccountTokenVolumeProjection: api-audiences flag can be omitted
2021-11-09 18:31:27 -08:00
Kubernetes Prow Robot c4ce619f28 Merge pull request #30369 from vivek-koppuru/basic-auth-fix
Fix wording of basic auth secret doc to keep it consistent with validation
2021-11-09 17:15:26 -08:00
Luiz Guilherme Ribeiro 51802636f9 Update scale-intro.html (pt-br)
The doc version for brazilian portuguese scale-intro page seems to be generated by an AI powered engine, which is not quite right and/or specific as the original one.

This PR changes a few words and a bit of the structure of the phrase in the pt-br doc, using de original (en) version as source of information.
2021-11-09 21:21:46 -03:00
Kubernetes Prow Robot c15f89b549 Merge pull request #30411 from justaugustus/steering-2021
Update Steering membership following 2021 election
2021-11-09 13:21:48 -08:00
Wang 2d560fd4fb Update custom-resources.md 2021-11-10 05:07:02 +09:00
Josh Berkus 009e15655a Add Arnaud to the Thanks section.
Signed-off-by: Josh Berkus <josh@agliodbs.com>
2021-11-09 10:05:24 -08:00
Kubernetes Prow Robot b81dcba911 Merge pull request #30412 from kubernetes/dev-1.22-ko.2
[ko] 2nd Korean localization work for v1.22
2021-11-09 05:39:47 -08:00
Stephen Augustus 5cebb20920 blog: Lint warnings and username fixes in 2021 Steering post
Signed-off-by: Stephen Augustus <foo@auggie.dev>
2021-11-09 06:35:34 -05:00
Wang 324e4e07fa [en] update custom-resources
Make it clear that the main API server delegates requests to user created API server.
2021-11-09 18:31:31 +09:00