Commit Graph

13774 Commits

Author SHA1 Message Date
Kubernetes Prow Robot 0fdc9cc00a Merge pull request #26749 from richarddli/kubectl-annotate
add blog post on using kubectl annotate for human service discovery
2021-04-13 13:47:46 -07:00
Tim Bannister f94b9bf6b3 Update publication date 2021-04-13 21:43:26 +01:00
Xander Grzywinski 7c77d75a81 add 1.21 graceful node shutdown blog post (#27335)
* add 1.21 graceful node shutdown blog post

* Address initial feedback

* Address final feedback

Co-authored-by: David Porter <porterdavid@google.com>
2021-04-13 12:27:46 -07:00
Kubernetes Prow Robot fa42c3cd77 Merge pull request #27220 from xordspar0/patch-1
Document using generators in Deployments
2021-04-13 10:23:09 -07:00
HeGaoYuan 79f786664d Update assign-pod-node.md
typo
2021-04-13 22:53:04 +08:00
joostas 47691b509c [ko] Fix label selector in "kubectl for Docker Users"
Before:
```sh
kubectl get po -l run=nginx-app
No resources found in default namespace.
```
Because:
```sh
kubectl get po --show-labels
NAME                         READY   STATUS    RESTARTS   AGE   LABELS
nginx-app-58cfd4c468-jx6qp   1/1     Running   0          17m   app=nginx-app,pod-template-hash=58cfd4c468
```
After:
```sh
kubectl get po -l app=nginx-app
NAME                         READY   STATUS    RESTARTS   AGE
nginx-app-58cfd4c468-jx6qp   1/1     Running   0          18m
```
2021-04-13 17:47:15 +03:00
HeGaoYuan 6af095a263 Update assign-pod-node.md
翻译错误
translation error
2021-04-13 22:28:42 +08:00
Patrick Ohly 8f0424d057 blog: local storage features go beta (#27240)
* blog: local storage features go beta

* Apply link and wording fixes

Co-authored-by: Mike Petersen <mpetason@gmail.com>
Co-authored-by: Tim Bannister <tim@scalefactory.com>

Co-authored-by: Bob Killen <killen.bob@gmail.com>
Co-authored-by: Mike Petersen <mpetason@gmail.com>
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2021-04-13 06:20:50 -07:00
Rebecca f0d53f9f79 Update macOS installation instructions (#27512)
* Update macOS installation instructions

* Add tabs to example

* tabs render weird in infoboxes
2021-04-13 05:46:50 -07:00
Danni Setiawan af5a179182 Rename ID Docs "Scheduling: concept as "Scheduling and Eviction"
* Rename `docs/concepts/scheduling` to `docs/concepts/scheduling-eviction`
* Retitle concept header to "Penjadwalan dan Pengusiran"
* Update redirects
* Update internal links (id only)

Part of proposal #19081
2021-04-13 17:55:48 +07:00
Danni Setiawan 343269000d Move "Resource Bin Packing" into Scheduling & Eviction section
Move ID Docs "Resource Bin Packing" based on #23529
2021-04-13 17:17:02 +07:00
atline ac4c223422 Update content/zh/docs/tutorials/stateless-application/guestbook.md
Co-authored-by: Mike Petersen <mpetason@gmail.com>
2021-04-13 16:18:25 +08:00
Jihoon Seo 280496cd6d [ko] Translate generate-ref-docs (partial) 2021-04-13 13:42:51 +09:00
yahaa 9905824cc3 fix feature-gates-docs err 2021-04-13 10:30:57 +08:00
Kubernetes Prow Robot 1eddc8bfed Merge pull request #27485 from sftim/20210409_tidy_api_reference
Remove accidentally-included API reference files
2021-04-12 17:40:50 -07:00
Kubernetes Prow Robot 66e7ce1e03 Merge pull request #27518 from wangyysde/patch-3
Update container-runtimes.md
2021-04-12 14:42:15 -07:00
Kubernetes Prow Robot 9746343f95 Merge pull request #27311 from xing-yang/volume-health-blog
blog: Volume Health Monitoring Alpha Update
2021-04-12 13:08:15 -07:00
xing-yang f3ffc37352 blog: Volume Health Monitoring Alpha Update 2021-04-12 18:10:01 +00:00
Lili Cosic 991352090a 2021-04-13-kube-state-metrics-goes-v-2-0.md: Add kube-state-metrics v2.0 (#27324)
blog post announcement.
2021-04-12 10:13:38 -07:00
Aldo Culquicondor 120c02aa09 Blog: Introducing Indexed Jobs
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2021-04-12 10:19:46 -04:00
wangyysde 4f4716f42d Update container-runtimes.md
As if the correct url of tasks/administer-cluster/kubeadm/configure-cgroup-driver is docs/tasks/administer-cluster/kubeadm/configure-cgroup-driver
2021-04-12 21:58:45 +08:00
Kubernetes Prow Robot 419d6ce391 Merge pull request #27452 from tallclair/runtimeclass
Correct dockershim runtime handler support
2021-04-12 05:30:00 -07:00
Kubernetes Prow Robot 732d118ea4 Merge pull request #27417 from joostas/docker-cli-kubectl-zh
[zh] Fix label selector in "kubectl for Docker Users"
2021-04-12 04:37:59 -07:00
Kubernetes Prow Robot 3dcdd86486 Merge pull request #27022 from CKchen0726/kustomize_broken_link_26834
[en] update some links in Kustomize Feature List
2021-04-12 04:29:59 -07:00
Kubernetes Prow Robot 2e46f99d03 Merge pull request #27402 from ariscahyadi/id-update-learning-env-minikube
[ID] Updating learning environment minikube
2021-04-12 04:28:00 -07:00
Kubernetes Prow Robot 2ee8037261 Merge pull request #27411 from alessandroargentieri/issue/20959
#20959 Localize Images page to Italian
2021-04-12 03:34:00 -07:00
joostas 2c3ece825f [zh] Fix label selector in "kubectl for Docker Users"
Before:
```sh
kubectl get po -l run=nginx-app
No resources found in default namespace.
```
Because:
```sh
kubectl get po --show-labels
NAME                         READY   STATUS    RESTARTS   AGE   LABELS
nginx-app-58cfd4c468-jx6qp   1/1     Running   0          17m   app=nginx-app,pod-template-hash=58cfd4c468
```
After:
```sh
kubectl get po -l app=nginx-app
NAME                         READY   STATUS    RESTARTS   AGE
nginx-app-58cfd4c468-jx6qp   1/1     Running   0          18m
```
2021-04-12 12:43:52 +03:00
Kubernetes Prow Robot 436c37fd98 Merge pull request #27445 from tengqm/extend-cluster
Revise extending kubernetes
2021-04-11 20:19:59 -07:00
Kubernetes Prow Robot c4a3ec97ea Merge pull request #27501 from shuuji3/make-logo-image-background-transparent
Change the backgrounds of “Case studies” logos from gray to transparent
2021-04-11 13:27:59 -07:00
TAKAHASHI Shuuji f83f87fe57 Delete unnecessary two files: search.md and sitemap.md 2021-04-11 14:20:56 +00:00
TAKAHASHI Shuuji 3ca6bc04ce Add workload.md to the reference/glossary directory 2021-04-11 14:18:39 +00:00
TAKAHASHI Shuuji 2b2a89cf47 Update the Japanese translation of the concepts/workloads/ 2021-04-11 14:18:39 +00:00
George Gaál 02099e2dd3 Update konnectivity to 0.0.16 and update ZH docs accordingly 2021-04-11 14:24:40 +03:00
Rémy Léone 6e1b8d8b2d Fix 2021-04-11 12:27:16 +02:00
TAKAHASHI Shuuji 18bc5496fa Add k8s-ruby/k8s-ruby as a community-maintained client libraries 2021-04-11 16:30:04 +09:00
TAKAHASHI Shuuji b04d764a22 Change the backgrounds of logo iamges from gray to transparent 2021-04-11 06:11:55 +00:00
TAKAHASHI Shuuji 12883afcdf Update the anchor text 2021-04-11 14:21:50 +09:00
TAKAHASHI Shuuji de812122a6 Translate contribute/new-content/overview into Japanese 2021-04-11 03:29:04 +00:00
TAKAHASHI Shuuji 28d522427a Translate _index.md into Japanese 2021-04-11 03:28:25 +00:00
Kubernetes Prow Robot e277d032ef Merge pull request #26192 from flo-oss/pod_overview_german
Add content/de/docs/concepts/workloads/pods/_index.md
2021-04-10 14:35:10 -07:00
Kubernetes Prow Robot d5c73abd52 Merge pull request #27287 from CriaHu/hyq-2021032903
Fix line separation in concepts/architecture/nodes
2021-04-10 14:27:10 -07:00
Rémy Léone 049c832f33 Fix 2021-04-10 22:52:11 +02:00
Rémy Léone fb9823b9ec Fix 2021-04-10 17:23:40 +02:00
Rémy Léone 6725d2888d Fix 2021-04-10 17:04:21 +02:00
Rémy Léone 8aa8acf64e Add French configure-pod-configmap 2021-04-10 17:04:21 +02:00
TAKAHASHI Shuuji 1605036c40 Copy overview.md and _index.md for the translation 2021-04-10 10:40:25 +00:00
Qiming Teng a7175d4d35 Revise extending kubernetes
This PR fixes two problems. One was introduced by f265aed794
which folded the extend-cluster.md content into section index without
removing the original content. Another problem is that the PNG images
stored on google docs are not accessible by some people from the far end
of the planet.
2021-04-10 13:59:01 +08:00
Qiming Teng 370c659ddc Regenerate reference for kube-proxy configuration 2021-04-10 13:58:29 +08:00
Kubernetes Prow Robot c2f183b357 Merge pull request #27494 from SergeyKanzhelev/revert-25733-patch-1
Revert "update container-lifecycle-hooks.md for third hook handler i,.e. TCP"
2021-04-09 22:49:09 -07:00
Kubernetes Prow Robot 80508e60c7 Merge pull request #27479 from tengqm/comp-ref-121
Component reference for 1.21
2021-04-09 17:40:23 -07:00