From 905b149c299666aa0f267b6fd83a0cfa5fdb999e Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 26 Nov 2018 18:29:55 +0800 Subject: [PATCH] zh-trans: add broken references for netlify preview --- .../zh/docs/reference/glossary/contributor.md | 18 ++++++++++++++++ .../docs/reference/glossary/kube-apiserver.md | 19 +++++++++++++++++ content/zh/docs/reference/glossary/label.md | 18 ++++++++++++++++ .../reference/glossary/managed-service.md | 17 +++++++++++++++ content/zh/docs/reference/glossary/node.md | 18 ++++++++++++++++ .../docs/reference/glossary/service-broker.md | 17 +++++++++++++++ content/zh/docs/reference/glossary/sig.md | 21 +++++++++++++++++++ content/zh/docs/reference/glossary/volume.md | 19 +++++++++++++++++ 8 files changed, 147 insertions(+) create mode 100755 content/zh/docs/reference/glossary/contributor.md create mode 100755 content/zh/docs/reference/glossary/kube-apiserver.md create mode 100755 content/zh/docs/reference/glossary/label.md create mode 100755 content/zh/docs/reference/glossary/managed-service.md create mode 100755 content/zh/docs/reference/glossary/node.md create mode 100755 content/zh/docs/reference/glossary/service-broker.md create mode 100755 content/zh/docs/reference/glossary/sig.md create mode 100755 content/zh/docs/reference/glossary/volume.md diff --git a/content/zh/docs/reference/glossary/contributor.md b/content/zh/docs/reference/glossary/contributor.md new file mode 100755 index 0000000000..fb4628453b --- /dev/null +++ b/content/zh/docs/reference/glossary/contributor.md @@ -0,0 +1,18 @@ +--- +title: Contributor +id: contributor +date: 2018-04-12 +full_link: +short_description: > + Someone who donates code, documentation, or their time to help the Kubernetes project or community. + +aka: +tags: +- community +--- + Someone who donates code, documentation, or their time to help the Kubernetes project or community. + + + +Contributions include pull requests (PRs), issues, feedback, {{< glossary_tooltip text="special interest groups (SIG)" term_id="sig" >}} participation, or organizing community events. + diff --git a/content/zh/docs/reference/glossary/kube-apiserver.md b/content/zh/docs/reference/glossary/kube-apiserver.md new file mode 100755 index 0000000000..d6855edb38 --- /dev/null +++ b/content/zh/docs/reference/glossary/kube-apiserver.md @@ -0,0 +1,19 @@ +--- +title: kube-apiserver +id: kube-apiserver +date: 2018-04-12 +full_link: /docs/reference/generated/kube-apiserver/ +short_description: > + Component on the master that exposes the Kubernetes API. It is the front-end for the Kubernetes control plane. + +aka: +tags: +- architecture +- fundamental +--- + Component on the master that exposes the Kubernetes API. It is the front-end for the Kubernetes control plane. + + + +It is designed to scale horizontally -- that is, it scales by deploying more instances. See [Building High-Availability Clusters](/docs/admin/high-availability/). + diff --git a/content/zh/docs/reference/glossary/label.md b/content/zh/docs/reference/glossary/label.md new file mode 100755 index 0000000000..24a3aa95f4 --- /dev/null +++ b/content/zh/docs/reference/glossary/label.md @@ -0,0 +1,18 @@ +--- +title: Label +id: label +date: 2018-04-12 +full_link: /docs/concepts/overview/working-with-objects/labels +short_description: > + Tags objects with identifying attributes that are meaningful and relevant to users. + +aka: +tags: +- fundamental +--- + Tags objects with identifying attributes that are meaningful and relevant to users. + + + +Labels are key/value pairs that are attached to objects such as {{< glossary_tooltip text="Pods" term_id="pod" >}}. They are used to organize and to select subsets of objects. + diff --git a/content/zh/docs/reference/glossary/managed-service.md b/content/zh/docs/reference/glossary/managed-service.md new file mode 100755 index 0000000000..61ac76aabd --- /dev/null +++ b/content/zh/docs/reference/glossary/managed-service.md @@ -0,0 +1,17 @@ +--- +title: Managed Service +id: managed-service +date: 2018-04-12 +full_link: +short_description: > + A software offering maintained by a third-party provider. + +aka: +tags: +- extension +--- + A software offering maintained by a third-party provider. + + + +Some examples of Managed Services are AWS EC2, Azure SQL Database, and GCP Pub/Sub, but they can be any software offering that can be used by an application. [Service Catalog](/docs/concepts/service-catalog/) provides a way to list, provision, and bind with Managed Services offered by {{< glossary_tooltip text="Service Brokers" term_id="service-broker" >}}. diff --git a/content/zh/docs/reference/glossary/node.md b/content/zh/docs/reference/glossary/node.md new file mode 100755 index 0000000000..e87914fa31 --- /dev/null +++ b/content/zh/docs/reference/glossary/node.md @@ -0,0 +1,18 @@ +--- +title: Node +id: node +date: 2018-04-12 +full_link: /docs/concepts/architecture/nodes/ +short_description: > + A node is a worker machine in Kubernetes. + +aka: +tags: +- fundamental +--- + A node is a worker machine in Kubernetes. + + + +A worker machine may be a VM or physical machine, depending on the cluster. It has the {{< glossary_tooltip text="Services" term_id="service" >}} necessary to run {{< glossary_tooltip text="Pods" term_id="pod" >}} and is managed by the master components. The {{< glossary_tooltip text="Services" term_id="service" >}} on a node include Docker, kubelet and kube-proxy. + diff --git a/content/zh/docs/reference/glossary/service-broker.md b/content/zh/docs/reference/glossary/service-broker.md new file mode 100755 index 0000000000..84fc8367a1 --- /dev/null +++ b/content/zh/docs/reference/glossary/service-broker.md @@ -0,0 +1,17 @@ +--- +title: Service Broker +id: service-broker +date: 2018-04-12 +full_link: +short_description: > + An endpoint for a set of Managed Services offered and maintained by a third-party. + +aka: +tags: +- extension +--- + An endpoint for a set of {{< glossary_tooltip text="Managed Services" term_id="managed-service" >}} offered and maintained by a third-party. + + + +{{< glossary_tooltip text="Service Brokers" term_id="service-broker" >}} implement the [Open Service Broker API spec](https://github.com/openservicebrokerapi/servicebroker/blob/v2.13/spec.md) and provide a standard interface for applications to use their Managed Services. [Service Catalog](/docs/concepts/service-catalog/) provides a way to list, provision, and bind with Managed Services offered by Service Brokers. diff --git a/content/zh/docs/reference/glossary/sig.md b/content/zh/docs/reference/glossary/sig.md new file mode 100755 index 0000000000..b0a6af0acb --- /dev/null +++ b/content/zh/docs/reference/glossary/sig.md @@ -0,0 +1,21 @@ +--- +title: SIG (special interest group) +id: sig +date: 2018-04-12 +full_link: https://github.com/kubernetes/community/blob/master/sig-list.md#master-sig-list +short_description: > + Community members who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project. + +aka: +tags: +- community +--- + {{< glossary_tooltip text="Community members" term_id="member" >}} who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project. + + + +Members within a SIG have a shared interest in advancing a specific area, such as architecture, API machinery, or documentation. +SIGs must follow the [SIG Governance](https://github.com/kubernetes/community/blob/master/sig-governance.md) guidelines but can have their own contribution policy and channels of communication. + +For more information, see the [kubernetes/community](https://github.com/kubernetes/community) repo and the current list of [SIGs and Working Groups](https://github.com/kubernetes/community/blob/master/sig-list.md). + diff --git a/content/zh/docs/reference/glossary/volume.md b/content/zh/docs/reference/glossary/volume.md new file mode 100755 index 0000000000..f162ce0010 --- /dev/null +++ b/content/zh/docs/reference/glossary/volume.md @@ -0,0 +1,19 @@ +--- +title: Volume +id: volume +date: 2018-04-12 +full_link: /docs/concepts/storage/volumes/ +short_description: > + A directory containing data, accessible to the containers in a pod. + +aka: +tags: +- core-object +- fundamental +--- + A directory containing data, accessible to the containers in a {{< glossary_tooltip text="pod" term_id="pod" >}}. + + + +A Kubernetes volume lives as long as the {{< glossary_tooltip text="pod" term_id="pod" >}} that encloses it. Consequently, a volume outlives any {{< glossary_tooltip text="containers" term_id="container" >}} that run within the {{< glossary_tooltip text="pod" term_id="pod" >}}, and data is preserved across {{< glossary_tooltip text="container" term_id="container" >}} restarts. +