From 412c6ab3a600050485e14fef394ec329ad290f95 Mon Sep 17 00:00:00 2001
From: Huy Nguyen
Date: Tue, 19 Nov 2019 15:11:28 +0700
Subject: [PATCH 001/128] Add new owner
Add huynguyennovem as an owner and reviewer for Vietnamese content
---
OWNERS_ALIASES | 2 ++
1 file changed, 2 insertions(+)
diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES
index 7959c066cdbff..cc5138315bd6f 100644
--- a/OWNERS_ALIASES
+++ b/OWNERS_ALIASES
@@ -180,9 +180,11 @@ aliases:
- jcjesus
- devlware
sig-docs-vi-owners: # Admins for Vietnamese content
+ - huynguyennovem
- ngtuna
- truongnh1992
sig-docs-vi-reviews: # PR reviews for Vietnamese content
+ - huynguyennovem
- ngtuna
- truongnh1992
sig-docs-ru-owners: # Admins for Russian content
From 83b3de7b0b9e9834283811ae1f005e4866caaf5e Mon Sep 17 00:00:00 2001
From: Nguyen Hai Truong
Date: Mon, 18 Nov 2019 11:44:53 -0800
Subject: [PATCH 002/128] Adding docs in Vietnamese
Signed-off-by: Nguyen Hai Truong
---
.../vi/docs/reference/kubectl/cheatsheet.md | 380 ++++++++++++++++++
1 file changed, 380 insertions(+)
create mode 100644 content/vi/docs/reference/kubectl/cheatsheet.md
diff --git a/content/vi/docs/reference/kubectl/cheatsheet.md b/content/vi/docs/reference/kubectl/cheatsheet.md
new file mode 100644
index 0000000000000..1455b0e892a1e
--- /dev/null
+++ b/content/vi/docs/reference/kubectl/cheatsheet.md
@@ -0,0 +1,380 @@
+---
+title: kubectl Cheat Sheet
+reviewers:
+- ngtuna
+content_template: templates/concept
+card:
+ name: reference
+ weight: 30
+---
+
+{{% capture overview %}}
+
+Xem thêm: [Kubectl Overview](/docs/reference/kubectl/overview/) và [JsonPath Guide](/docs/reference/kubectl/jsonpath).
+
+Trang này là trang tổng quan của lệnh `kubectl`.
+
+{{% /capture %}}
+
+{{% capture body %}}
+
+# kubectl - Cheat Sheet
+
+## Kubectl Autocomplete
+
+### BASH
+
+```bash
+source <(kubectl completion bash) # thiết lập autocomplete trong bash vào shell hiện tại, gói bash-completion nên được cài đặt trước tiên
+echo "source <(kubectl completion bash)" >> ~/.bashrc # thêm vĩnh viễn autocomplete vào trong bash shell
+```
+
+Bạn có thể dùng một alias cho `kubectl` cũng hoạt động với completion:
+
+```bash
+alias k=kubectl
+complete -F __start_kubectl k
+```
+
+### ZSH
+
+```bash
+source <(kubectl completion zsh) # thiết lập autocomplete trong zsh vào shell hiện tại
+echo "if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi" >> ~/.zshrc # thêm vĩnh viễn autocomplete vào trong zsh shell
+```
+
+## Ngữ cảnh và cấu hình kubectl
+
+Thiết lập cụm Kubernetes nào mà `kubectl` sẽ giao tiếp với và sửa đổi thông tin cấu hình.
+Xem tài liệu [Xác thực giữa các cụm với kubeconfig](/docs/tasks/access-application-cluster/configure-access-multiple-clusters/)
+để biết thông tin chi tiết của tệp cấu hình.
+
+```bash
+kubectl config view # Hiển thị các thiết lập kubeconfig đã được merged
+
+# sử dụng nhiều tệp kubeconfig cùng một lúc và xem cấu hình hợp nhất
+KUBECONFIG=~/.kube/config:~/.kube/kubconfig2
+
+kubectl config view
+
+# lấy mật khẩu cho người dùng e2e
+kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'
+
+kubectl config view -o jsonpath='{.users[].name}' # hiển thị người dùng đầu tiên
+kubectl config view -o jsonpath='{.users[*].name}' # lấy danh sách người dùng
+kubectl config get-contexts # hiển thị danh sách các ngữ cảnh
+kubectl config current-context # hiển thị ngữ cảnh hiện tại
+kubectl config use-context my-cluster-name # thiết lập ngữ cảnh mặc định cho my-cluster-name
+
+# thêm một cụm mới vào kubeconf hỗ trợ xác thực cơ bản
+kubectl config set-credentials kubeuser/foo.kubernetes.com --username=kubeuser --password=kubepassword
+
+# lưu vĩnh viễn namespace cho tất cả các lệnh kubectl tiếp theo trong ngữ cảnh đó
+kubectl config set-context --current --namespace=ggckad-s2
+
+# thiết lập ngữ cảnh sử dụng tên người dùng và namespace cụ thể
+kubectl config set-context gce --user=cluster-admin --namespace=foo \
+ && kubectl config use-context gce
+
+kubectl config unset users.foo # xóa người dùng foo
+```
+
+## Apply
+`apply` quản lý các ứng dụng thông qua các tệp định nghĩa tài nguyên Kubernetes. Nó tạo và cập nhật các tài nguyên trong một cụm thông qua việc chạy `kubectl apply`. Đây là cách được đề xuất để quản lý các ứng dụng Kubernetes trong thực tế. Xem thêm [Kubectl Book](https://kubectl.docs.kubernetes.io).
+
+## Tạo một đối tượng
+
+Kubernetes manifests có thể được định nghĩa trong tệp json hoặc yaml. Phần mở rộng `.yaml`,
+`.yml`, và `.json` có thể được dùng.
+
+```bash
+kubectl apply -f ./my-manifest.yaml # tạo tài nguyên
+kubectl apply -f ./my1.yaml -f ./my2.yaml # tạo từ nhiều tệp
+kubectl apply -f ./dir # tạo tài nguyên từ tất cả các tệp manifest trong thư mục dir
+kubectl apply -f https://git.io/vPieo # tạo tài nguyên từ url
+kubectl create deployment nginx --image=nginx # tạo một deployment nginx
+kubectl explain pods,svc # lấy thông tin pod và service manifest
+
+# Tạo nhiều đối tượng YAML từ stdin
+cat < pod.yaml
+
+kubectl attach my-pod -i # Đính kèm với container đang chạy
+kubectl port-forward my-pod 5000:6000 # Lắng nghe trên cổng 5000 của máy local và chuyển tiếp sang cổng 6000 trên pod my-pod
+kubectl exec my-pod -- ls / # Chạy lệnh trong một pod (trường hợp 1 container)
+kubectl exec my-pod -c my-container -- ls / # Chạy lệnh trong pod (trường hợp nhiều container)
+kubectl top pod POD_NAME --containers # Hiển thị số liệu của pod và container chạy trong nó
+```
+
+## Tương tác với các nodes và cụm
+
+```bash
+kubectl cordon my-node # Đánh dấu my-node là không thể lập lịch
+kubectl drain my-node # Gỡ my-node ra khỏi cụm để chuẩn bị cho việc bảo trì
+kubectl uncordon my-node # Đánh dấu my-node có thể lập lịch trở lại
+kubectl top node my-node # Hiển thị số liệu của node
+kubectl cluster-info # Hiển thị địa chỉ master và các services
+kubectl cluster-info dump # Kết xuất trạng thái hiện tại của cụm ra ngoài stdout
+kubectl cluster-info dump --output-directory=/path/to/cluster-state # Kết xuất trạng thái hiện tại của cụm vào /path/to/cluster-state
+
+kubectl taint nodes foo dedicated=special-user:NoSchedule
+```
+
+### Các loại tài nguyên
+
+Liệt kê tất cả các loại tài nguyên được hỗ trợ cùng với tên viết tắt của chúng, [API group](/docs/concepts/overview/kubernetes-api/#api-groups), cho dù chúng là [namespaced](/docs/concepts/overview/working-with-objects/namespaces), và [Kind](/docs/concepts/overview/working-with-objects/kubernetes-objects):
+
+```bash
+kubectl api-resources
+```
+
+Các hoạt động khác để khám phá các tài nguyên API:
+
+```bash
+kubectl api-resources --namespaced=true # Tất cả các tài nguyên được đặt tên
+kubectl api-resources --namespaced=false # Tất cả các tài nguyên không được đặt tên
+kubectl api-resources -o name # Tất cả các tài nguyên với đầu ra đơn giản (chỉ gồm tên tài nguyên)
+kubectl api-resources -o wide # Tất cả các tài nguyên với đầu ra mở rộng
+kubectl api-resources --verbs=list,get # Tất cả các tài nguyên hỗ trợ yêu cầu "list" và "get"
+kubectl api-resources --api-group=extensions # Tất cả tài nguyên trong nhóm API "tiện ích mở rộng"
+```
+
+### Định dạng đầu ra
+
+Để xuất thông tin chi tiết ra cửa sổ terminal của bạn theo một định dạng cụ thể, bạn có thể thêm các cờ `-o` hoặc `--output` vào lệnh `kubectl` được hỗ trợ.
+
+Định dạng đầu ra | Mô tả
+--------------| -----------
+`-o=custom-columns=` | In một bảng bằng danh sách, các cột tùy chỉnh được phân tách bằng dấu phẩy
+`-o=custom-columns-file=` | In một bảng bằng cách sử dụng mẫu cột tùy chỉnh trong tệp ``
+`-o=json` | Xuất ra một đối tượng API theo định dạng JSON
+`-o=jsonpath=` | In ra các trường được xác định trong [jsonpath](/docs/reference/kubectl/jsonpath)
+`-o=jsonpath-file=` |In ra các trường được xác định bởi [jsonpath](/docs/reference/kubectl/jsonpath) trong tệp ``
+`-o=name` | Chỉ in tên tài nguyên và không có gì khác
+`-o=wide` | Xuất ra ở định dạng văn bản thuần với bất kì thông tin bổ sung nào và đối với pods, cần phải thêm tên node
+`-o=yaml` | Xuất ra đối tượng API theo định dạng YAML
+
+### Kubectl output verbosity and debugging
+
+Kubectl verbosity được kiểm soát bởi cờ `-v` or `--v` theo sau là một số nguyên biểu thị mức log. Các quy ước ghi logs của Kubernetes và các mức logs liên quan được mô tả ở [đây](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md).
+
+Verbosity | Description
+--------------| -----------
+`--v=0` | Hữu ích cho việc hiển thị cho các người vận hành cụm.
+`--v=1` | Một mức log mặc định hợp lý nếu bạn không muốn lấy quá nhiều logs.
+`--v=2` | Thông tin trạng thái về services và các thông điệp logs quan trọng có thể tương quan với những thay đổi quan trọng trong hệ thống. Đây là mức ghi logs mặc định được khuyến nghị cho hầu hết các hệ thống.
+`--v=3` | Thông tin mở rộng về những thay đổi.
+`--v=4` | Debug level verbosity.
+`--v=6` | Hiển thị tài nguyên được yêu cầu.
+`--v=7` | Hiển thị HTTP request headers.
+`--v=8` | Hiển thị nội dung HTTP request.
+`--v=9` | Hiển thị nội dung HTTP request mà không cắt ngắn nội dung.
+
+{{% /capture %}}
+
+{{% capture whatsnext %}}
+
+* Đọc thêm về [Tổng quan kubectl](/docs/reference/kubectl/overview/).
+
+* Xem các tùy chọn [kubectl](/docs/reference/kubectl/kubectl/).
+
+* [kubectl Usage Conventions](/docs/reference/kubectl/conventions/) để hiểu làm thế nào để sử dụng `kubectl` trong các kịch bản có thể tái sử dụng.
+
+* Xem thêm bản cộng đồng [kubectl cheatsheets](https://github.com/dennyzhang/cheatsheet-kubernetes-A4).
+
+{{% /capture %}}
From df3da58819962fbd831b2202fc02ebe09ddf18d1 Mon Sep 17 00:00:00 2001
From: chentanjun <2799194073@qq.com>
Date: Wed, 20 Nov 2019 08:11:19 +0800
Subject: [PATCH 003/128] fix 404 url (#17626)
---
content/ko/case-studies/openAI/index.html | 2 +-
content/ko/case-studies/squarespace/index.html | 2 +-
content/ko/case-studies/ygrene/index.html | 2 +-
content/ko/docs/contribute/participating.md | 2 +-
content/ko/docs/reference/glossary/istio.md | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/content/ko/case-studies/openAI/index.html b/content/ko/case-studies/openAI/index.html
index 4814ce6fdbe9e..040f704efa952 100644
--- a/content/ko/case-studies/openAI/index.html
+++ b/content/ko/case-studies/openAI/index.html
@@ -93,7 +93,7 @@
From experiments in robotics to old-school video game play research, OpenAI
OpenAI is also benefiting from other technologies in the CNCF cloud-native ecosystem. gRPC is used by many of its systems for communications between different services, and Prometheus is in place "as a debugging tool if things go wrong," says Berner. "We actually haven’t had any real problems in our Kubernetes clusters recently, so I don’t think anyone has looked at our Prometheus monitoring in a while. If something breaks, it will be there."
- One of the things Berner continues to focus on is Kubernetes’ ability to scale, which is essential to deep learning experiments. OpenAI has been able to push one of its Kubernetes clusters on Azure up to more than 2,500 nodes. "I think we’ll probably hit the 5,000-machine number that Kubernetes has been tested at before too long," says Berner, adding, "We’re definitely hiring if you’re excited about working on these things!"
+ One of the things Berner continues to focus on is Kubernetes’ ability to scale, which is essential to deep learning experiments. OpenAI has been able to push one of its Kubernetes clusters on Azure up to more than 2,500 nodes. "I think we’ll probably hit the 5,000-machine number that Kubernetes has been tested at before too long," says Berner, adding, "We’re definitely hiring if you’re excited about working on these things!"
Since it was started in a dorm room in 2003, Squarespace has made it simple for millions of people to create their own websites.
Behind the scenes, though, the company’s monolithic Java application was making things not so simple for its developers to keep improving the platform. So in 2014, the company decided to "go down the microservices path," says Kevin Lynch, staff engineer on Squarespace’s Site Reliability team. "But we were always deploying our applications in vCenter VMware VMs [in our own data centers]. Microservices solved a problem on the development side, but it pushed that problem to the Infrastructure team. The infrastructure deployment process on our 5,000 VM hosts was slowing everyone down."
After experimenting with another container orchestration platform and "breaking it in very painful ways," Lynch says, the team began experimenting with Kubernetes in mid-2016 and found that it "answered all the questions that we had." Deploying it in the data center rather than the public cloud was their biggest challenge, and at the time, not a lot of other companies were doing that. "We had to figure out how to deploy this in our infrastructure for ourselves, and we had to integrate it with our other applications," says Lynch.
- At the same time, Squarespace’s Network Engineering team was modernizing its networking stack, switching from a traditional layer-two network to a layer-three spine-and-leaf network. "It mapped beautifully with what we wanted to do with Kubernetes," says Lynch. "It gives us the ability to have our servers communicate directly with the top-of-rack switches. We use Calico for CNI networking for Kubernetes, so we can announce all these individual Kubernetes pod IP addresses and have them integrate seamlessly with our other services that are still provisioned in the VMs."
+ At the same time, Squarespace’s Network Engineering team was modernizing its networking stack, switching from a traditional layer-two network to a layer-three spine-and-leaf network. "It mapped beautifully with what we wanted to do with Kubernetes," says Lynch. "It gives us the ability to have our servers communicate directly with the top-of-rack switches. We use Calico for CNI networking for Kubernetes, so we can announce all these individual Kubernetes pod IP addresses and have them integrate seamlessly with our other services that are still provisioned in the VMs."
+Cloud native also affected how Ygrene’s 50+ developers and contractors work. Adams and Arnold spent considerable time "teaching people to think distributed out of the box," says Arnold. "We ended up picking what we call the Four S’s of Shipping: safely, securely, stably, and speedily." (For more on the security piece of it, see their article on their "continuous hacking" strategy.) As for the engineers, says Adams, "they have been able to advance as their software has advanced. I think that at the end of the day, the developers feel better about what they’re doing, and they also feel more connected to the modern software development community."
Looking ahead, Adams is excited to explore more CNCF projects, including SPIFFE and SPIRE. "CNCF has been an amazing incubator for so many projects," he says. "Now we look at its webpage regularly to find out if there are any new, awesome, high-quality projects we can implement into our stack. It’s actually become a hub for us for knowing what software we need to be looking at to make our systems more secure or more scalable."
diff --git a/content/ko/docs/contribute/participating.md b/content/ko/docs/contribute/participating.md
index 93e5335c22aa4..887118a157a6e 100644
--- a/content/ko/docs/contribute/participating.md
+++ b/content/ko/docs/contribute/participating.md
@@ -260,7 +260,7 @@ PR 승인을 지원하기 위해서 자동화 시스템이 OWNERS 파일의 정
쿠버네티스 프로젝트는 GitHub 이슈와 풀 리퀘스트 자동화와 관련해서 prow라고 부르는 자동화 툴을 사용한다.
[쿠버네티스 웹사이트 리포지터리](https://github.com/kubernetes/website)는
-다음의 두개의 [prow 플러그인](https://github.com/kubernetes/test-infra/blob/master/prow/plugins.yaml#L210)을
+다음의 두개의 [prow 플러그인](https://github.com/kubernetes/test-infra/tree/master/prow/plugins)을
사용한다.
- blunderbuss
diff --git a/content/ko/docs/reference/glossary/istio.md b/content/ko/docs/reference/glossary/istio.md
index d55989456eb46..1734ebdc7fc3f 100755
--- a/content/ko/docs/reference/glossary/istio.md
+++ b/content/ko/docs/reference/glossary/istio.md
@@ -2,7 +2,7 @@
title: Istio
id: istio
date: 2018-04-12
-full_link: https://istio.io/docs/concepts/what-is-istio/overview.html
+full_link: https://istio.io/docs/concepts/what-is-istio/
short_description: >
마이크로서비스의 통합을 위한 통일된 방법을 제공하는 오픈 플랫폼(쿠버네티스에 특정적이지 않음)이며, 트래픽 흐름을 관리하고, 정책을 시행하고, 텔레메트리 데이터를 모은다.
From 55d80faab9bbed269ca50f717f7d27188fcad6d4 Mon Sep 17 00:00:00 2001
From: Gireesh Puthumana
Date: Wed, 20 Nov 2019 06:13:19 +0530
Subject: [PATCH 004/128] Issue-17562 default DNS cluster addon service's name
fix (#17563)
* Issue-17562 default DNS cluster addon service's name fix
* Clarified the cluster addon is CoreDNS with application name KubeDNS and corrected the links to enable CoreDNS instead of kube-dns. Also reverted the changes made in ID & ZH languages. Need help there
* Update content/en/docs/concepts/services-networking/connect-applications-service.md
Co-Authored-By: Tim Bannister
---
.../services-networking/connect-applications-service.md | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/content/en/docs/concepts/services-networking/connect-applications-service.md b/content/en/docs/concepts/services-networking/connect-applications-service.md
index 13a0352846e04..85d39f7adc1b0 100644
--- a/content/en/docs/concepts/services-networking/connect-applications-service.md
+++ b/content/en/docs/concepts/services-networking/connect-applications-service.md
@@ -201,11 +201,8 @@ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kube-dns ClusterIP 10.0.0.10 53/UDP,53/TCP 8m
```
-If it isn't running, you can [enable it](http://releases.k8s.io/{{< param "githubbranch" >}}/cluster/addons/dns/kube-dns/README.md#how-do-i-configure-it).
The rest of this section will assume you have a Service with a long lived IP
-(my-nginx), and a DNS server that has assigned a name to that IP (the CoreDNS
-cluster addon), so you can talk to the Service from any pod in your cluster using
-standard methods (e.g. gethostbyname). Let's run another curl application to test this:
+(my-nginx), and a DNS server that has assigned a name to that IP. Here we use the CoreDNS cluster addon (application name `kube-dns`), so you can talk to the Service from any pod in your cluster using standard methods (e.g. `gethostbyname()`). If CoreDNS isn't running, you can enable it referring to the [CoreDNS README](https://github.com/coredns/deployment/tree/master/kubernetes) or [Installing CoreDNS](/docs/tasks/administer-cluster/coredns/#installing-coredns). Let's run another curl application to test this:
```shell
kubectl run curl --image=radial/busyboxplus:curl -i --tty
From ea54939939b16ab8e10577d6ac3c8ab89a2b7aa2 Mon Sep 17 00:00:00 2001
From: Irvi Aini <7439590+irvifa@users.noreply.github.com>
Date: Tue, 19 Nov 2019 17:57:19 -0800
Subject: [PATCH 005/128] Make konfigurasi "konfigurasi dan Penerapan Konsep"
is uppercased in id localization. (#17641)
---
content/id/docs/concepts/configuration/overview.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/id/docs/concepts/configuration/overview.md b/content/id/docs/concepts/configuration/overview.md
index dea1082d8bba6..6d21fd5d60d1b 100644
--- a/content/id/docs/concepts/configuration/overview.md
+++ b/content/id/docs/concepts/configuration/overview.md
@@ -1,7 +1,7 @@
---
reviewers:
- mikedanese
-title: konfigurasi dan Penerapan Konsep
+title: Konfigurasi dan Penerapan Konsep
content_template: templates/concept
weight: 10
---
From b33c77f12d1291f1931c31f06e9ab94bf8d934f0 Mon Sep 17 00:00:00 2001
From: Oleg Butuzov
Date: Wed, 20 Nov 2019 10:59:19 +0200
Subject: [PATCH 006/128] lang-id: Broken Link (#17681)
This fix solve 404 page at next URLs
(See link with text "otorisasi Node")
https://kubernetes.io/id/docs/concepts/architecture/
https://kubernetes.io/id/docs/concepts/architecture/node/
---
content/id/docs/concepts/architecture/nodes.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/id/docs/concepts/architecture/nodes.md b/content/id/docs/concepts/architecture/nodes.md
index 2da2a20328257..8019d4ef2d70c 100644
--- a/content/id/docs/concepts/architecture/nodes.md
+++ b/content/id/docs/concepts/architecture/nodes.md
@@ -184,7 +184,7 @@ Kubelet memulai registrasi diri (self-registration) dengan opsi-opsi beri
- `--node-labels` - Label-label untuk ditambahkan saat melakukan registrasi untuk node di dalam kluster (lihat label yang dibatasi secara paksa oleh [NodeRestriction admission plugin](/docs/reference/access-authn-authz/admission-controllers/#noderestriction) untuk 1.13+).
- `--node-status-update-frequency` - Menentukan seberapa sering kubelet melaporkan status pada master.
-Ketika mode [otorisasi Node]((/docs/reference/access-authn-authz/node/)) dan [NodeRestriction admission plugin](/docs/reference/access-authn-authz/admission-controllers/#noderestriction) diaktifkan, semua kubelet hanya punya otoritas untuk membuat/modifikasi resource Node masing-masing.
+Ketika mode [otorisasi Node](/docs/reference/access-authn-authz/node/) dan [NodeRestriction admission plugin](/docs/reference/access-authn-authz/admission-controllers/#noderestriction) diaktifkan, semua kubelet hanya punya otoritas untuk membuat/modifikasi resource Node masing-masing.
#### Administrasi Node secara Manual
From 10abd2bcf5f4f41b8725ae308fe3bd2245bd49ac Mon Sep 17 00:00:00 2001
From: Oleg Butuzov
Date: Wed, 20 Nov 2019 11:19:20 +0200
Subject: [PATCH 007/128] lang-fr: Deadlink (due space in it) (#17683)
This fix solves 404 link that appears at "ingress" page in the
franch documentation (see link with "gestion des ressources" text).
https://kubernetes.io/fr/docs/concepts/services-networking/ingress/
---
content/fr/docs/concepts/services-networking/ingress.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/fr/docs/concepts/services-networking/ingress.md b/content/fr/docs/concepts/services-networking/ingress.md
index 497d89fed6b9f..250cd6f4684e8 100644
--- a/content/fr/docs/concepts/services-networking/ingress.md
+++ b/content/fr/docs/concepts/services-networking/ingress.md
@@ -89,7 +89,7 @@ spec:
```
Comme pour toutes les autres ressources Kubernetes, un ingress (une entrée) a besoin des champs `apiVersion`,` kind` et `metadata`.
- Pour des informations générales sur l'utilisation des fichiers de configuration, voir [déployer des applications](/docs/tasks/run-application/run-stateless-application-deployment/), [configurer des conteneurs](/docs/tasks/configure-pod-container/configure-pod-configmap/), [gestion des ressources](/docs/ concepts/cluster-administration/manage-deployment/).
+ Pour des informations générales sur l'utilisation des fichiers de configuration, voir [déployer des applications](/docs/tasks/run-application/run-stateless-application-deployment/), [configurer des conteneurs](/docs/tasks/configure-pod-container/configure-pod-configmap/), [gestion des ressources](/docs/concepts/cluster-administration/manage-deployment/).
Ingress utilise fréquemment des annotations pour configurer certaines options en fonction du contrôleur Ingress, dont un exemple
est l'annotation [rewrite-target](https://github.com/kubernetes/ingress-nginx/blob/master/docs/examples/rewrite/README.md).
Différents [Ingress controller](/docs/concepts/services-networking/ingress-controllers) prennent en charge différentes annotations. Consultez la documentation de votre choix de contrôleur Ingress pour savoir quelles annotations sont prises en charge.
From 6697f5d5d8a805805dbdd32c225d82120fe67a97 Mon Sep 17 00:00:00 2001
From: tiendc
Date: Wed, 20 Nov 2019 16:27:19 +0700
Subject: [PATCH 008/128] Adding vi-document for create-cluster (#17684)
Signed-off-by: Dao Cong Tien
---
.../create-cluster/_index.md | 4 ++
.../create-cluster/cluster-interactive.html | 37 +++++++++++++++++++
2 files changed, 41 insertions(+)
create mode 100644 content/vi/docs/tutorials/kubernetes-basics/create-cluster/_index.md
create mode 100644 content/vi/docs/tutorials/kubernetes-basics/create-cluster/cluster-interactive.html
diff --git a/content/vi/docs/tutorials/kubernetes-basics/create-cluster/_index.md b/content/vi/docs/tutorials/kubernetes-basics/create-cluster/_index.md
new file mode 100644
index 0000000000000..a9617fd68bc33
--- /dev/null
+++ b/content/vi/docs/tutorials/kubernetes-basics/create-cluster/_index.md
@@ -0,0 +1,4 @@
+---
+title: Tạo một Cluster
+weight: 10
+---
diff --git a/content/vi/docs/tutorials/kubernetes-basics/create-cluster/cluster-interactive.html b/content/vi/docs/tutorials/kubernetes-basics/create-cluster/cluster-interactive.html
new file mode 100644
index 0000000000000..b9adf950b8f37
--- /dev/null
+++ b/content/vi/docs/tutorials/kubernetes-basics/create-cluster/cluster-interactive.html
@@ -0,0 +1,37 @@
+---
+title: Hướng dẫn tương tác - Tạo một Cluster
+weight: 20
+---
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Để tương tác với Terminal, hãy dùng phiên bản dành cho desktop/tablet
+
+
+
+
From fb96c07fc4821e17574195ca9e07c94a19dc111c Mon Sep 17 00:00:00 2001
From: Oleg Butuzov
Date: Wed, 20 Nov 2019 11:31:20 +0200
Subject: [PATCH 009/128] This fix solves 2 404 deadlinks at next pages
(#17685)
* see link "tahap" @
https://kubernetes.io/id/docs/concepts/containers/runtime-class/
* see link "VolumeSnapshotClass" @
https://kubernetes.io/id/docs/concepts/storage/volume-snapshots/
---
content/id/docs/concepts/containers/runtime-class.md | 2 +-
content/id/docs/concepts/storage/volume-snapshots.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/id/docs/concepts/containers/runtime-class.md b/content/id/docs/concepts/containers/runtime-class.md
index 9fdcfbaf31626..4379c1c497390 100644
--- a/content/id/docs/concepts/containers/runtime-class.md
+++ b/content/id/docs/concepts/containers/runtime-class.md
@@ -91,7 +91,7 @@ spec:
Kubelet akan mendapat instruksi untuk menggunakan RuntimeClass dengan nama yang sudah ditentukan tersebut
untuk menjalankan Pod ini. Jika RuntimeClass dengan nama tersebut tidak ditemukan, atau CRI tidak dapat
-menjalankan _handler_ yang terkait, maka Pod akan memasuki [tahap]((/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)) `Failed`.
+menjalankan _handler_ yang terkait, maka Pod akan memasuki [tahap](/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase) `Failed`.
Lihat [_event_](/docs/tasks/debug-application-cluster/debug-application-introspection/) untuk mengetahui pesan error yang terkait.
Jika tidak ada `runtimeClassName` yang ditentukan di dalam Pod, maka RuntimeHandler yang _default_ akan digunakan.
diff --git a/content/id/docs/concepts/storage/volume-snapshots.md b/content/id/docs/concepts/storage/volume-snapshots.md
index 30697bdfd41c9..119342b19d85b 100644
--- a/content/id/docs/concepts/storage/volume-snapshots.md
+++ b/content/id/docs/concepts/storage/volume-snapshots.md
@@ -48,7 +48,7 @@ Seorang adminstrator kluster membuat beberapa VolumeSnapshotContent, yang masing
#### Dinamis
Ketika VolumeSnapshotContent yang dibuat oleh administrator tidak ada yang sesuai dengan VolumeSnapshot yang dibuat pengguna, kluster bisa saja
mencoba untuk menyediakan sebuah VolumeSnapshot secara dinamis, khususnya untuk objek VolumeSnapshot.
-Proses penyediaan ini berdasarkan VolumeSnapshotClasses: VolumeSnapshot harus meminta sebuah [VolumeSnapshotClass]((/docs/concepts/storage/volume-snapshot-classes/))
+Proses penyediaan ini berdasarkan VolumeSnapshotClasses: VolumeSnapshot harus meminta sebuah [VolumeSnapshotClass](/docs/concepts/storage/volume-snapshot-classes/)
dan administrator harus membuat serta mengatur _class_ tersebut supaya penyediaan dinamis bisa terjadi.
### Ikatan (_Binding_)
From 9a562ec7808cccb37f5aa2499447f32f565d81c3 Mon Sep 17 00:00:00 2001
From: Nguyen Hai Truong
Date: Wed, 20 Nov 2019 16:37:20 +0700
Subject: [PATCH 010/128] Adding docs/home for Vietnamese localization (#17647)
Signed-off-by: Nguyen Hai Truong
---
content/vi/docs/home/_index.md | 57 +++++++++++++++++++
.../vi/docs/home/supported-doc-versions.md | 27 +++++++++
2 files changed, 84 insertions(+)
create mode 100644 content/vi/docs/home/_index.md
create mode 100644 content/vi/docs/home/supported-doc-versions.md
diff --git a/content/vi/docs/home/_index.md b/content/vi/docs/home/_index.md
new file mode 100644
index 0000000000000..97417e27b66ba
--- /dev/null
+++ b/content/vi/docs/home/_index.md
@@ -0,0 +1,57 @@
+---
+title: Tài liệu Kubernetes
+noedit: true
+cid: docsHome
+layout: docsportal_home
+class: gridPage
+linkTitle: "Home"
+main_menu: true
+weight: 10
+hide_feedback: true
+menu:
+ main:
+ title: "Tài liệu tham khảo"
+ weight: 20
+ post: >
+
Tìm hiểu cách sử dụng Kubernetes với mức khái niệm, các hướng dẫn và tài liệu tham khảo. Bạn thậm chí có thể đóng góp cho các tài liệu!
+overview: >
+ Kubernetes là một công cụ điều phối container mã nguồn mở giúp tự động hóa triển khai, nhân rộng và quản lý các ứng dụng containerization. Dự án mã nguồn mở được host bởi Cloud Native Computing Foundation (CNCF).
+cards:
+- name: concepts
+ title: "Hiểu rõ những căn bản"
+ description: "Tìm hiểu về Kubernetes và các khái niệm cơ bản của nó."
+ button: "Học các khái niệm"
+ button_path: "/docs/concepts"
+- name: tutorials
+ title: "Dùng thử Kubernetes"
+ description: "Thực hiện theo các hướng dẫn để tìm hiểu cách triển khai các ứng dụng trong Kubernetes."
+ button: "Xem hướng dẫn"
+ button_path: "/docs/tutorials"
+- name: setup
+ title: "Cài đặt một cluster"
+ description: "Kubernetes chạy dựa trên tài nguyên và nhu cầu của bạn."
+ button: "Cài đặt Kubernetes"
+ button_path: "/docs/setup"
+- name: tasks
+ title: "Tìm hiểu cách sử dụng Kubernetes"
+ description: "Tra cứu các tác vụ phổ biến và cách thực hiện chúng theo các bước."
+ button: "Xem tác vụ"
+ button_path: "/docs/tasks"
+- name: reference
+ title: "Tra cứu thông tin tham khảo"
+ description: "Duyệt qua thuật ngữ, cú pháp dòng lệnh, loại tài nguyên API và tài liệu công cụ cài đặt."
+ button: "Xem tài liệu tham khảo"
+ button_path: /docs/reference
+- name: contribute
+ title: "Đóng góp cho tài liệu"
+ description: "Bất cứ ai cũng có thể đóng góp, cho dù bạn là người mới tham gia dự án này hay bạn đã có thời gian làm việc lâu dài với Kubernetes."
+ button: "Đóng góp cho tài liệu"
+ button_path: /docs/contribute
+- name: download
+ title: "Tải xuống Kubernetes"
+ description: "Nếu bạn đang cài đặt Kubernetes hoặc nâng cấp lên phiên bản mới nhất, hãy tham khảo các ghi chú phát hành hiện tại."
+- name: about
+ title: "Về tài liệu"
+ description: "Website này lưu tài liệu của phiên bản hiện tại và 4 phiên bản trước đây của Kubernetes."
+---
+
diff --git a/content/vi/docs/home/supported-doc-versions.md b/content/vi/docs/home/supported-doc-versions.md
new file mode 100644
index 0000000000000..4743b426220b1
--- /dev/null
+++ b/content/vi/docs/home/supported-doc-versions.md
@@ -0,0 +1,27 @@
+---
+title: Các phiên bản được hỗ trợ của tài liệu Kubernetes
+content_template: templates/concept
+card:
+ name: about
+ weight: 10
+ title: Các phiên bản được hỗ trợ của tài liệu Kubernetes
+---
+
+{{% capture overview %}}
+
+Trang web này lưu tài liệu của phiên bản hiện tại và bốn phiên bản trước của Kubernetes.
+
+{{% /capture %}}
+
+{{% capture body %}}
+
+## Phiên bản hiện tại
+
+Phiên bản hiện tại là
+[{{< param "version" >}}](/).
+
+## Các phiên bản trước
+
+{{< versions-other >}}
+
+{{% /capture %}}
From 8c88039129287bdf07dadd884143ee2ef10b26fa Mon Sep 17 00:00:00 2001
From: inductor
Date: Wed, 20 Nov 2019 14:11:20 -0800
Subject: [PATCH 011/128] update config for Japanese following the latest
(#17643)
---
i18n/ja.toml | 194 ++++++++++++++++++++++++++++++++-------------------
1 file changed, 121 insertions(+), 73 deletions(-)
diff --git a/i18n/ja.toml b/i18n/ja.toml
index 24aa1426009e7..dfcc87fdd1b92 100644
--- a/i18n/ja.toml
+++ b/i18n/ja.toml
@@ -1,4 +1,29 @@
# i18n strings for the English (main) site.
+# NOTE: Please keep the entries in alphabetical order when editing
+
+[caution]
+other = "注意:"
+
+[cleanup_heading]
+other = "クリーンアップ"
+
+[community_events_calendar]
+other = "イベントカレンダー"
+
+[community_forum_name]
+other = "フォーラム"
+
+[community_github_name]
+other = "GitHub"
+
+[community_slack_name]
+other = "Slack"
+
+[community_stack_overflow_name]
+other = "Stack Overflow"
+
+[community_twitter_name]
+other = "Twitter"
[deprecation_warning]
other = " のドキュメントは積極的にメンテナンスされていません。現在表示されているバージョンはスナップショットです。最新のドキュメントはこちらです: "
@@ -6,76 +31,114 @@ other = " のドキュメントは積極的にメンテナンスされていま
[deprecation_file_warning]
other = "廃止予定"
-[objectives_heading]
-other = "目標"
+[docs_label_browse]
+other = "ドキュメントの参照"
-[cleanup_heading]
-other = "クリーンアップ"
+[docs_label_contributors]
+other = "コントリビューター"
-[prerequisites_heading]
-other = "始める前に"
+[docs_label_i_am]
+other = "私は..."
-[whatsnext_heading]
-other = "次の項目"
+[docs_label_users]
+other = "ユーザー"
[feedback_heading]
other = "フィードバック"
+[feedback_no]
+other = "いいえ"
+
[feedback_question]
other = "このページは役に立ちましたか?"
[feedback_yes]
other = "はい"
-[feedback_no]
-other = "いいえ"
-
[latest_version]
other = "最新バージョン"
-[version_check_mustbe]
-other = "作業するKubernetesサーバーは次のバージョンである必要があります: "
+[layouts_blog_pager_prev]
+other = "<< 前"
-[version_check_mustbeorlater]
-other = "作業するKubernetesサーバーは次のバージョン以降のものである必要があります: "
+[layouts_blog_pager_next]
+other = "次 >>"
-[version_check_tocheck]
-other = "バージョンを確認するには次のコマンドを実行してください: "
+[layouts_case_studies_list_tell]
+other = "あなたの話を聞かせてください"
-[caution]
-other = "注意:"
+[layouts_docs_glossary_aka]
+other = "またの名を"
-[note]
-other = "備考:"
+[layouts_docs_glossary_description]
+other = "この用語集は、Kubernetesの用語の包括的で標準化されたリストを対象としています。これには、Kubernetesに固有で有用なコンテキストを提供しつつも、より一般的な技術用語が含まれています。"
-[warning]
-other = "警告:"
+[layouts_docs_glossary_deselect_all]
+other = "すべての選択を解除"
-[main_read_about]
-other = "Read about"
-#other = "について参照する"
+[layouts_docs_glossary_click_details_after]
+other = "特定の用語の詳細な説明を取得するには、以下のインジケータを使用します。"
-[main_read_more]
-other = "続きを読む"
+[layouts_docs_glossary_click_details_before]
+other = "Click on the" # TODO: Translate me
+
+[layouts_docs_glossary_filter]
+other = "タグに従って用語をフィルタ"
+
+[layouts_docs_glossary_select_all]
+other = "すべてを選択"
+
+[layouts_docs_partials_feedback_improvement]
+other = "改善を提案"
+
+[layouts_docs_partials_feedback_issue]
+other = "Open an issue in the GitHub repo if you want to " # TODO: Translate me
+
+[layouts_docs_partials_feedback_or]
+other = "or" # TODO: Translate me
+
+[layouts_docs_partials_feedback_problem]
+other = "問題を報告する"
+
+[layouts_docs_partials_feedback_thanks]
+other = "Thanks for the feedback. If you have a specific, answerable question about how to use Kubernetes, ask it on" # TODO: Translate me
+
+[layouts_docs_search_fetching]
+other = "結果を取得しています..."
+
+[main_by]
+other = "by"
+
+[main_cncf_project]
+other = """私達はCNCF graduated プロジェクトです
"""
+
+[main_community_explore]
+other = "コミュニティを探す"
+
+[main_contribute]
+other = "コントリビュート"
+
+[main_copyright_notice]
+other = """The Linux Foundation ®. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our Trademark Usage page"""
+
+[main_documentation_license]
+other = """The Kubernetes Authors | Documentation Distributed under CC BY 4.0"""
+
+[main_edit_this_page]
+other = "ページ編集"
[main_github_invite]
other = "Kubernetesのコードを編集することに興味がありますか?"
-[main_github_view_on]
-other = "GitHubで参照する"
-
[main_github_create_an_issue]
other = "Issue作成"
-[main_community_explore]
-other = "コミュニティを探す"
+[main_github_view_on]
+other = "GitHubで参照する"
[main_kubernetes_features]
other = "Kubernetesの機能"
-[main_cncf_project]
-other = """私達はCNCF graduated プロジェクトです"""
-
[main_kubeweekly_baseline]
other = "最新のkubernetesのニュースを受け取りたいですか? KubeWeeklyにサインアップしてください。"
@@ -85,56 +148,41 @@ other = "過去のニュースレターを見る"
[main_kubeweekly_signup]
other = "登録"
-[main_contribute]
-other = "コントリビュート"
-
-[main_edit_this_page]
-other = "ページ編集"
-
[main_page_history]
other ="ページ履歴"
[main_page_last_modified_on]
other = "ページの最終更新"
-[main_by]
-other = "by"
+[main_read_about]
+other = "Read about" #other = "について参照する" TODO: Translate me
-[main_documentation_license]
-other = """The Kubernetes Authors | Documentation Distributed under CC BY 4.0"""
+[main_read_more]
+other = "続きを読む"
-[main_copyright_notice]
-other = """The Linux Foundation ®. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our Trademark Usage page"""
+[note]
+other = "備考:"
-# Labels for the docs portal home page.
-[docs_label_browse]
-other = "ドキュメントの参照"
+[objectives_heading]
+other = "目標"
-[docs_label_contributors]
-other = "コントリビューター"
+[prerequisites_heading]
+other = "始める前に"
-[docs_label_users]
-other = "ユーザー"
+[ui_search_placeholder]
+other = "検索"
-[docs_label_i_am]
-other = "私は..."
+[version_check_mustbe]
+other = "作業するKubernetesサーバーは次のバージョンである必要があります: "
+[version_check_mustbeorlater]
+other = "作業するKubernetesサーバーは次のバージョン以降のものである必要があります: "
+[version_check_tocheck]
+other = "バージョンを確認するには次のコマンドを実行してください: "
-# Community links
-[community_twitter_name]
-other = "Twitter"
-[community_github_name]
-other = "GitHub"
-[community_slack_name]
-other = "Slack"
-[community_stack_overflow_name]
-other = "Stack Overflow"
-[community_forum_name]
-other = "フォーラム"
-[community_events_calendar]
-other = "イベントカレンダー"
+[whatsnext_heading]
+other = "次の項目"
-# UI elements
-[ui_search_placeholder]
-other = "検索"
+[warning]
+other = "警告:"
From 4532bd2bdb4419de4783be084195f18be516ee53 Mon Sep 17 00:00:00 2001
From: inductor
Date: Wed, 20 Nov 2019 14:25:19 -0800
Subject: [PATCH 012/128] First Japanese l10n work for release-1.15. (#17693)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* traslate /docs/concepts/architecture/_index.md into Japanese (#15456)
* tranaslated (#15458)
* translate /ja/docs/reference/_index.md (#15624)
* translate /ja/docs/reference/_index.md
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* patch reviews
* Follow the dir structure of en in setup (#15590)
* follow the dir structure of en in setup
* delete unrelated files
* wip removing ja
* removeg ja
* remove ja
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* review
* numbered list
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* Translate /docs/setup/turnkey/aws.md in Japanese (#15640)
* Translate content/ja/docs/setup/turnkey/aws.md
partially
* Update content/ja/docs/setup/turnkey/aws.md
... Kubernetes cluster on AWS: AWS上でKubernetesクラスターを...
https://github.com/kubernetes/website/pull/15640/files#r310338415
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (Kubernetes Operations)
- replace English commas with Japanese one (、)
- Management: 管理
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (kube-aws)
- replace English commas
- insert a Japanese comma
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (kubectl)
- 断定でなく選択を与えるニュアンス
Co-Authored-By: Kohei Ota
* Translate content/ja/docs/setup/turnkey/aws.md
completely
Signed-off-by: Takuma Hashimoto
* fix translation
https://github.com/kubernetes/website/pull/15640#discussion_r310418805
自身がsupportするのでなく、Kubernetes Operationsがsupportしている、というニュアンス
Signed-off-by: Takuma Hashimoto
* fix mistranslation
https://github.com/kubernetes/website/pull/15640#discussion_r310419122
ここでのwithはusingに近い意味合いで
Signed-off-by: Takuma Hashimoto
* fix translation
https://github.com/kubernetes/website/pull/15640#discussion_r310568505
ここでのthroughは通過や媒介という意味合いよりも、手段を表すと捉える
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/setup/turnkey/aws.md
Co-Authored-By: nasa9084
* Update content/ja/docs/setup/production-environment/turnkey/aws.md
Co-Authored-By: Tim Bannister
* Translate docs/tutorials/stateless-application/expose-external-ip-address.md in Japanese (#15672)
* Copy from content/ja/docs/tutorials/stateless-application/
Signed-off-by: Takuma Hashimoto
* update link to Japanese document
Signed-off-by: Takuma Hashimoto
* Translate expose-external-ip-address in Japanese
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
やや不自然だった
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
s/ロードバランサ/ロードバランサー/
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
s/サーバ/サーバー/
Co-Authored-By: nasa9084
* Revert "update link to Japanese document"
This reverts commit 9237f63402b0e642600d1ea24c6b410f877c165e.
https://github.com/kubernetes/website/pull/15672#discussion_r311327200
* remove a new line
段落としては同じ
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
https://github.com/kubernetes/website/pull/15672#discussion_r312317653
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Translate concepts/architecture/nodes.md into Japanese (#15625)
* Translate concepts/architecture/nodes.md into Japanese
* update translation
* fix translation
* eviction
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: makocchi
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: makocchi
* plural
* review
* node
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* healthy
* review
* namespace
* Translate tasks/run-application/force-delete-stateful-set-pod/ in Japanese (#15835)
* ja-trans: tasks/run-application/force-delete-stateful-set-pod/
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
* Translate concepts/architecture/master-node-communication.md into Japanese (#15638)
* translate master node communication
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* deprecated
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Translate /docs/tasks/tools/install-kubectl.md in Japanese (#15678)
* Copy from content/en/docs/tasks/tools/install-kubectl.md
Signed-off-by: Takuma Hashimoto
* fix link to install-kubectl
Signed-off-by: Takuma Hashimoto
* Translate Headings and Subheadings
Signed-off-by: Takuma Hashimoto
* translate text of install-kubectl in Japanese
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/tasks/tools/install-kubectl.md
s/ユーザ/ユーザー/
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/tools/install-kubectl.md
Co-Authored-By: nasa9084
* Update install-kubectl.md
s/する:/してください:/g
* Translate /docs/tutorials/configuration/configure-redis-using-configmap.md in Japanese (#15639)
* translate redis example
* add index
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* review
* Translate docs/concepts/configuration/overview.md in Japanese (#15627)
* Translate docs/concepts/configuration/overview.md in Japanese
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: Tim Bannister
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Fix terminology in Japanese translation (#15889)
* cluster
* cluster
* node
* cluster
* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
Co-Authored-By: Takuya Tokuda
* sitemap and search (#15927)
* Translate tasks/debug-application-cluster/debug-pod-replication-contr… (#15883)
* Translate tasks/debug-application-cluster/debug-pod-replication-controller/ in Japanese
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* fix missing parenthesis (#16044)
```
Error: Error building site: "/src/content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md:106:10": unrecognized character in shortcode action: U+003E '>'. Note: Parameters with non-alphanumeric args must be quoted
```
* Translate tasks/configure-pod-container/configure-volume-storage/ in Japanese (#16058)
* Translate tasks/configure-pod-container/configure-volume-storage/ in Japanese
* Update content/ja/docs/tasks/configure-pod-container/configure-volume-storage.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/configure-pod-container/configure-volume-storage.md
Co-Authored-By: inductor
* Translate text of docs/setup/release/version-skew-policy.md in Japanese (#15903)
* translate content/ja/docs/setup/release/version-skew-policy.md in Japanese
* translate "version skew"
https://github.com/kubernetes/website/pull/15903#issuecomment-524518826
バージョン間の差異 となる
タイトルは原文どおりに用語として残し、初回の文でskew=差異であることを明示する
以降はskewを翻訳する
* fix translation
- 格助詞漏れ
- more than 1...は1を含まないそれ以上の値であり、実質「2以上」となるので、そのように訳したほうが自然
* delete unnecessary sentences
* update translation
cf. 422f5b0e6a0c52f844cfae66cde01f47fca4cf4e
* update translation
componentsが当該バージョンをサポートするのでなく、kube-apiserverのバージョンの結果ほかのcomponentsが当該バージョンをサポート**される**イメージ
* Translate concepts/architecture/cloud-controller/ into Japanese (#16099)
* Translate concepts/architecture/cloud-controller/ into Japanese
* Revise sentences based on suggestion by reviewers
* Revise a sentence based on suggestion by a reviewer
* Fix wording to distinguish Kubernetes related resources from others
* fix a typo (#16121)
* fix some wording on home (#16127)
* Translate contribute / _index.md to Japanese (#16050)
* translate contribute index into Japanese
* modify some terms
* modify according to style guide
* use same terminology about contribute
* Update content/ja/docs/contribute/_index.md
Co-Authored-By: Takuya Tokuda
* Translate concepts/overview/components and related glossaries in Japanase (#16034)
* Translate concepts/overview/components and related glossaries in Japanese
* Revise sentences based on suggestion by reviewers
* Translate tasks/configure-pod-container/assign-memory-resource/ in Japanese (#16055)
* copy from content/en/docs/tasks/configure-pod-container/assign-memory-resource to ja directory
* translate tasks/configure-pod-container/assign-memory-resource/ in Japanese
* Update content/ja/docs/tasks/configure-pod-container/_index.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/configure-pod-container/_index.md
Co-Authored-By: inductor
* fix translation
%s/メモリ/メモリー/g
* Translate tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/ in Japanese (#16183)
* Translate concepts/configuration/assign-pod-node/ in Japanese (#16221)
* issue 15552
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* modification after a review
* Translate docs/tasks/administer-cluster/developing-cloud-controller-manager in ja (#16088)
* Translate docs/tasks/administer-cluster/developing-cloud-controller-manager/ in Japanese
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Remove reviewers section
* Modified wording to unified
* Remove unnecessary brackets
* Translate concepts/overview/working-with-objects/object-management/ into Japanese (#16400)
* Translate concepts/overview/working-with-objects/object-management/ into Japanese
* Refine some words based on review comments
* Add a word to refine a sentence based on a review comment
* Translate content/ja/docs/concepts/cluster-administration/controller-… (#16351)
* Translate content/ja/docs/concepts/cluster-administration/controller-metrics in ja
* Improved to format a text
* Fix inconsistent spellings
* Update content/ja/docs/concepts/cluster-administration/controller-metrics.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/cluster-administration/controller-metrics.md
Co-Authored-By: Naoki Oketani
* Translate concepts/extend-kubernetes/extend-cluster/ and related glossaries into Japanese (#16636)
* Translate concepts/extend-kubernetes/extend-cluster/ and related glossaries into Japanese
* Apply suggestions from code review by inductor
Co-Authored-By: inductor
* Update a translation for extension point
* Apply suggestions from code review by sftim
Co-Authored-By: Tim Bannister
* Apply suggestions from code review by sftim
* Fix the translation for document
* Apply a suggestion from code review by nasa9084
* Apply suggestions from code review by inductor and nasa9084
* fix: s/kubernetes/Kubernetes/ (#16057)
* Translate reference/command-line-tools-reference/feature-gates in Japanese (#16554)
* Translate docs/reference/command-line-tools-reference/feature-gates in ja
* Fix inconsistent spellings
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* ポッド -> Pod
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* ポッドreadinessゲート -> Pod readiness gate
* ポッド -> pod
* Pods -> Pod
* Fix typo: Kunbernetes -> Kubernetes
* 機能ゲート -> フィーチャーゲート
* リポジトリ -> リポジトリー
* キー=値 -> key=value
* Translate concepts/storage/volume-pvc-datasource in Japanese (#16775)
* Translate concepts/storage/volume-pvc-datasource in Japanese
* Remove original English contents(forgot to remove)
* Container Storage Interface -> コンテナストレージインターフェイス
* フューチャーゲート -> フィーチャーゲート
* Improved a translate to more natural expression
* Update content/ja/docs/reference/glossary/csi.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Improved a translate to more natural expression
* Remove an unnecessary line break
* Improved some translate words to natural sentence
* Improved translate
* Fix translate
* Translate docs/reference/glossary/selector.md in Japanese (#17375)
* Translate docs/reference/glossary/selector.md in Japanese
* Translate title into Japanese
Co-Authored-By: bells17
* Translate tasks/configure-pod-container/share-process-namespace/ into Japanese (#16220)
* Translate tasks/configure-pod-container/share-process-namespace/ into Japanese
* reflect review
* Translate tasks/access-application-cluster/connecting-frontend-backend/ into Japanese (#16270)
* Translate tasks/access-application-cluster/connecting-frontend-backend/ into Japanese
* reflect review
* translate tooltip text
Co-Authored-By: bells17
* Translate concepts/extend-kubernetes/operator/ into Japanese (#16455)
* Translate concepts/extend-kubernetes/operator/ into Japanese
* Update the word operator into Japanese
* Apply suggestions by inductor and oke-py from code review
Co-Authored-By: inductor
Co-Authored-By: Naoki Oketani
* Apply suggestions by inductor from code review
Co-Authored-By: inductor
* Refine sentences under bullet points
* Refine sentences in response to the review by makocchi-git
* Translate concepts/extend-kubernetes/api-extension/apiserver-aggregation/ into Japanese (#16662)
* Translate concepts/extend-kubernetes/api-extension/apiserver-aggregation/ into Japanese
* Apply suggestions from code review by inductor
Co-Authored-By: inductor
* Apply suggestions from review by MasayaAoyama
* Apply a suggestion from review by MasayaAoyama
* assign inductor as sig-docs-ja approver (#17412) (#17517)
* traslate /docs/concepts/architecture/_index.md into Japanese (#15456)
* tranaslated (#15458)
* translate /ja/docs/reference/_index.md (#15624)
* translate /ja/docs/reference/_index.md
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/_index.md
Co-Authored-By: nasa9084
* patch reviews
* Follow the dir structure of en in setup (#15590)
* follow the dir structure of en in setup
* delete unrelated files
* wip removing ja
* removeg ja
* remove ja
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* review
* numbered list
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* Update content/ja/docs/setup/_index.md
Co-Authored-By: nasa9084
* Translate /docs/setup/turnkey/aws.md in Japanese (#15640)
* Translate content/ja/docs/setup/turnkey/aws.md
partially
* Update content/ja/docs/setup/turnkey/aws.md
... Kubernetes cluster on AWS: AWS上でKubernetesクラスターを...
https://github.com/kubernetes/website/pull/15640/files#r310338415
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (Kubernetes Operations)
- replace English commas with Japanese one (、)
- Management: 管理
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (kube-aws)
- replace English commas
- insert a Japanese comma
Co-Authored-By: Kohei Ota
* Update content/ja/docs/setup/turnkey/aws.md (kubectl)
- 断定でなく選択を与えるニュアンス
Co-Authored-By: Kohei Ota
* Translate content/ja/docs/setup/turnkey/aws.md
completely
Signed-off-by: Takuma Hashimoto
* fix translation
https://github.com/kubernetes/website/pull/15640#discussion_r310418805
自身がsupportするのでなく、Kubernetes Operationsがsupportしている、というニュアンス
Signed-off-by: Takuma Hashimoto
* fix mistranslation
https://github.com/kubernetes/website/pull/15640#discussion_r310419122
ここでのwithはusingに近い意味合いで
Signed-off-by: Takuma Hashimoto
* fix translation
https://github.com/kubernetes/website/pull/15640#discussion_r310568505
ここでのthroughは通過や媒介という意味合いよりも、手段を表すと捉える
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/setup/turnkey/aws.md
Co-Authored-By: nasa9084
* Update content/ja/docs/setup/production-environment/turnkey/aws.md
Co-Authored-By: Tim Bannister
* Translate docs/tutorials/stateless-application/expose-external-ip-address.md in Japanese (#15672)
* Copy from content/ja/docs/tutorials/stateless-application/
Signed-off-by: Takuma Hashimoto
* update link to Japanese document
Signed-off-by: Takuma Hashimoto
* Translate expose-external-ip-address in Japanese
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
やや不自然だった
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
s/ロードバランサ/ロードバランサー/
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
s/サーバ/サーバー/
Co-Authored-By: nasa9084
* Revert "update link to Japanese document"
This reverts commit 9237f63402b0e642600d1ea24c6b410f877c165e.
https://github.com/kubernetes/website/pull/15672#discussion_r311327200
* remove a new line
段落としては同じ
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
https://github.com/kubernetes/website/pull/15672#discussion_r312317653
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md
Co-Authored-By: nasa9084
* Translate concepts/architecture/nodes.md into Japanese (#15625)
* Translate concepts/architecture/nodes.md into Japanese
* update translation
* fix translation
* eviction
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: makocchi
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: makocchi
* plural
* review
* node
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/nodes.md
Co-Authored-By: nasa9084
* healthy
* review
* namespace
* Translate tasks/run-application/force-delete-stateful-set-pod/ in Japanese (#15835)
* ja-trans: tasks/run-application/force-delete-stateful-set-pod/
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
* Update content/ja/docs/tasks/run-application/force-delete-stateful-set-pod.md
* Translate concepts/architecture/master-node-communication.md into Japanese (#15638)
* translate master node communication
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* deprecated
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Update content/ja/docs/concepts/architecture/master-node-communication.md
Co-Authored-By: Takuya Tokuda
* Translate /docs/tasks/tools/install-kubectl.md in Japanese (#15678)
* Copy from content/en/docs/tasks/tools/install-kubectl.md
Signed-off-by: Takuma Hashimoto
* fix link to install-kubectl
Signed-off-by: Takuma Hashimoto
* Translate Headings and Subheadings
Signed-off-by: Takuma Hashimoto
* translate text of install-kubectl in Japanese
Signed-off-by: Takuma Hashimoto
* Update content/ja/docs/tasks/tools/install-kubectl.md
s/ユーザ/ユーザー/
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/tools/install-kubectl.md
Co-Authored-By: nasa9084
* Update install-kubectl.md
s/する:/してください:/g
* Translate /docs/tutorials/configuration/configure-redis-using-configmap.md in Japanese (#15639)
* translate redis example
* add index
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tutorials/configuration/configure-redis-using-configmap.md
Co-Authored-By: nasa9084
* review
* Translate docs/concepts/configuration/overview.md in Japanese (#15627)
* Translate docs/concepts/configuration/overview.md in Japanese
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: Tim Bannister
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/overview.md
Co-Authored-By: nasa9084
* Fix terminology in Japanese translation (#15889)
* cluster
* cluster
* node
* cluster
* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
Co-Authored-By: Takuya Tokuda
* sitemap and search (#15927)
* Translate tasks/debug-application-cluster/debug-pod-replication-contr… (#15883)
* Translate tasks/debug-application-cluster/debug-pod-replication-controller/ in Japanese
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* Update content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md
Co-Authored-By: nasa9084
* fix missing parenthesis (#16044)
```
Error: Error building site: "/src/content/ja/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md:106:10": unrecognized character in shortcode action: U+003E '>'. Note: Parameters with non-alphanumeric args must be quoted
```
* Translate tasks/configure-pod-container/configure-volume-storage/ in Japanese (#16058)
* Translate tasks/configure-pod-container/configure-volume-storage/ in Japanese
* Update content/ja/docs/tasks/configure-pod-container/configure-volume-storage.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/configure-pod-container/configure-volume-storage.md
Co-Authored-By: inductor
* Translate text of docs/setup/release/version-skew-policy.md in Japanese (#15903)
* translate content/ja/docs/setup/release/version-skew-policy.md in Japanese
* translate "version skew"
https://github.com/kubernetes/website/pull/15903#issuecomment-524518826
バージョン間の差異 となる
タイトルは原文どおりに用語として残し、初回の文でskew=差異であることを明示する
以降はskewを翻訳する
* fix translation
- 格助詞漏れ
- more than 1...は1を含まないそれ以上の値であり、実質「2以上」となるので、そのように訳したほうが自然
* delete unnecessary sentences
* update translation
cf. 422f5b0e6a0c52f844cfae66cde01f47fca4cf4e
* update translation
componentsが当該バージョンをサポートするのでなく、kube-apiserverのバージョンの結果ほかのcomponentsが当該バージョンをサポート**される**イメージ
* Translate concepts/architecture/cloud-controller/ into Japanese (#16099)
* Translate concepts/architecture/cloud-controller/ into Japanese
* Revise sentences based on suggestion by reviewers
* Revise a sentence based on suggestion by a reviewer
* Fix wording to distinguish Kubernetes related resources from others
* fix a typo (#16121)
* fix some wording on home (#16127)
* Translate contribute / _index.md to Japanese (#16050)
* translate contribute index into Japanese
* modify some terms
* modify according to style guide
* use same terminology about contribute
* Update content/ja/docs/contribute/_index.md
Co-Authored-By: Takuya Tokuda
* Translate concepts/overview/components and related glossaries in Japanase (#16034)
* Translate concepts/overview/components and related glossaries in Japanese
* Revise sentences based on suggestion by reviewers
* Translate tasks/configure-pod-container/assign-memory-resource/ in Japanese (#16055)
* copy from content/en/docs/tasks/configure-pod-container/assign-memory-resource to ja directory
* translate tasks/configure-pod-container/assign-memory-resource/ in Japanese
* Update content/ja/docs/tasks/configure-pod-container/_index.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/configure-pod-container/_index.md
Co-Authored-By: inductor
* fix translation
%s/メモリ/メモリー/g
* Translate tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/ in Japanese (#16183)
* Translate concepts/configuration/assign-pod-node/ in Japanese (#16221)
* issue 15552
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: nasa9084
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/configuration/assign-pod-node.md
Co-Authored-By: Naoki Oketani
* modification after a review
* Translate docs/tasks/administer-cluster/developing-cloud-controller-manager in ja (#16088)
* Translate docs/tasks/administer-cluster/developing-cloud-controller-manager/ in Japanese
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Update content/ja/docs/tasks/administer-cluster/developing-cloud-controller-manager.md
Co-Authored-By: inductor
* Remove reviewers section
* Modified wording to unified
* Remove unnecessary brackets
* Translate concepts/overview/working-with-objects/object-management/ into Japanese (#16400)
* Translate concepts/overview/working-with-objects/object-management/ into Japanese
* Refine some words based on review comments
* Add a word to refine a sentence based on a review comment
* Translate content/ja/docs/concepts/cluster-administration/controller-… (#16351)
* Translate content/ja/docs/concepts/cluster-administration/controller-metrics in ja
* Improved to format a text
* Fix inconsistent spellings
* Update content/ja/docs/concepts/cluster-administration/controller-metrics.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/concepts/cluster-administration/controller-metrics.md
Co-Authored-By: Naoki Oketani
* Translate concepts/extend-kubernetes/extend-cluster/ and related glossaries into Japanese (#16636)
* Translate concepts/extend-kubernetes/extend-cluster/ and related glossaries into Japanese
* Apply suggestions from code review by inductor
Co-Authored-By: inductor
* Update a translation for extension point
* Apply suggestions from code review by sftim
Co-Authored-By: Tim Bannister
* Apply suggestions from code review by sftim
* Fix the translation for document
* Apply a suggestion from code review by nasa9084
* Apply suggestions from code review by inductor and nasa9084
* fix: s/kubernetes/Kubernetes/ (#16057)
* Translate reference/command-line-tools-reference/feature-gates in Japanese (#16554)
* Translate docs/reference/command-line-tools-reference/feature-gates in ja
* Fix inconsistent spellings
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: nasa9084
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* ポッド -> Pod
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* Update content/ja/docs/reference/command-line-tools-reference/feature-gates.md
Co-Authored-By: Naoki Oketani
* ポッドreadinessゲート -> Pod readiness gate
* ポッド -> pod
* Pods -> Pod
* Fix typo: Kunbernetes -> Kubernetes
* 機能ゲート -> フィーチャーゲート
* リポジトリ -> リポジトリー
* キー=値 -> key=value
* Translate concepts/storage/volume-pvc-datasource in Japanese (#16775)
* Translate concepts/storage/volume-pvc-datasource in Japanese
* Remove original English contents(forgot to remove)
* Container Storage Interface -> コンテナストレージインターフェイス
* フューチャーゲート -> フィーチャーゲート
* Improved a translate to more natural expression
* Update content/ja/docs/reference/glossary/csi.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Update content/ja/docs/reference/glossary/storage-class.md
Co-Authored-By: inductor
* Improved a translate to more natural expression
* Remove an unnecessary line break
* Improved some translate words to natural sentence
* Improved translate
* Fix translate
* Translate docs/reference/glossary/selector.md in Japanese (#17375)
* Translate docs/reference/glossary/selector.md in Japanese
* Translate title into Japanese
Co-Authored-By: bells17
* Translate tasks/configure-pod-container/share-process-namespace/ into Japanese (#16220)
* Translate tasks/configure-pod-container/share-process-namespace/ into Japanese
* reflect review
* Translate tasks/access-application-cluster/connecting-frontend-backend/ into Japanese (#16270)
* Translate tasks/access-application-cluster/connecting-frontend-backend/ into Japanese
* reflect review
* translate tooltip text
Co-Authored-By: bells17
* Translate concepts/extend-kubernetes/operator/ into Japanese (#16455)
* Translate concepts/extend-kubernetes/operator/ into Japanese
* Update the word operator into Japanese
* Apply suggestions by inductor and oke-py from code review
Co-Authored-By: inductor
Co-Authored-By: Naoki Oketani
* Apply suggestions by inductor from code review
Co-Authored-By: inductor
* Refine sentences under bullet points
* Refine sentences in response to the review by makocchi-git
* Translate concepts/extend-kubernetes/api-extension/apiserver-aggregation/ into Japanese (#16662)
* Translate concepts/extend-kubernetes/api-extension/apiserver-aggregation/ into Japanese
* Apply suggestions from code review by inductor
Co-Authored-By: inductor
* Apply suggestions from review by MasayaAoyama
* Apply a suggestion from review by MasayaAoyama
* ja-trans: content/ja/case-studies/sos (#17338)
* Add case-studies for SOS International(JP)
* Add logo file
* fixup! Add case-studies for SOS International(JP)
* Update content/ja/case-studies/sos/index.html
Co-Authored-By: inductor
* Update content/ja/case-studies/sos/index.html
Co-Authored-By: inductor
* Update content/ja/case-studies/sos/index.html
Co-Authored-By: inductor
* Update content/ja/case-studies/sos/index.html
Co-Authored-By: inductor
* ja-trans:Translate concepts/services-networking/service/ into Japanese (#14917) (#16319)
* ja-trans:Translate concepts/services-networking/service/ into Japanese (#14917)
* ja-trans: Improve Japanese translation in concepts/services-networking/service/ (#14917)
* ja-trans: Improve Japanese translation in concepts/services-networking/service/ (#14917)
* ja-trans: Improve Japanese translation in concepts/services-networking/_index.md (#14917)
* ja-trans: Improve Japanese translation in reference/glossary/namespace.md (#14917)
* ja-trans: Improve Japanese translation in concepts/services-networking/service/ (#14917)
* ja-trans: Improve Japanese translation in concepts/services-networking/service/ (#14917)
* ja-trans: content/ja/case-studies/nordstrom (#16953)
* Add case-studies for Nordstrom(JP)
* fixup! Add case-studies for Nordstrom(JP)
* Update content/ja/case-studies/nordstrom/index.html
line 25
eコマースサイト->ECサイト
技術運用->技術的な運用
探して->模索して
Co-Authored-By: inductor