[zh] Update reference\glossary (9)

Signed-off-by: ydFu <ader.ydfu@gmail.com>
This commit is contained in:
ydFu 2022-09-04 10:50:48 +08:00
parent c52cf3ad27
commit 38000bc123
4 changed files with 13 additions and 27 deletions

View File

@ -1,5 +1,5 @@
---
title: 容器运行时接口CRI
title: 容器运行时接口Container Runtime InterfaceCRI
id: cri
date: 2019-03-07
full_link: /zh-cn/docs/concepts/overview/components/#container-runtime
@ -11,10 +11,7 @@ aka:
tags:
- fundamental
---
容器运行时接口 (CRI) 是一组与节点上 kubelet 集成的容器运行时 API
<!--
---
title: Container runtime interface (CRI)
id: cri
date: 2019-03-07
@ -26,15 +23,17 @@ short_description: >
aka:
tags:
- fundamental
---
-->
<!--
The container runtime interface (CRI) is an API for container runtimes
to integrate with kubelet on a node.
-->
容器运行时接口Container Runtime InterfaceCRI是一组与节点上 kubelet 集成的容器运行时 API。
<!--more-->
<!--
For more information, see the [CRI](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-node/container-runtime-interface.md) API and specifications.
-->
更多信息, 请参考 [容器运行时接口](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-node/container-runtime-interface.md) API 与规格。

View File

@ -11,9 +11,7 @@ tags:
- core-object
- workload
---
<!--
---
title: CronJob
id: cronjob
date: 2018-04-12
@ -25,19 +23,17 @@ aka:
tags:
- core-object
- workload
---
-->
<!--
Manages a [Job](/docs/concepts/workloads/controllers/job/) that runs on a periodic schedule.
-->
管理定期运行的 [任务](/zh-cn/docs/concepts/workloads/controllers/job/)。
管理定期运行的[任务](/zh-cn/docs/concepts/workloads/controllers/job/)。
<!--more-->
<!--
Similar to a line in a *crontab* file, a Cronjob object specifies a schedule using the [Cron](https://en.wikipedia.org/wiki/Cron) format.
Similar to a line in a *crontab* file, a CronJob object specifies a schedule using the [cron](https://en.wikipedia.org/wiki/Cron) format.
-->
Cronjob 对象类似 *crontab* 文件中的一行命令,它声明了一个遵循 [Cron](https://en.wikipedia.org/wiki/Cron) 格式的调度任务
**crontab** 文件中的一行命令类似周期调度任务CronJob对象使用
[cron](https://zh.wikipedia.org/wiki/Cron) 格式设置排期表

View File

@ -1,5 +1,5 @@
---
title: 容器存储接口Container Storage InterfaceCSI
title: 容器存储接口Container Storage InterfaceCSI
id: csi
date: 2018-06-25
full_link: /zh-cn/docs/concepts/storage/volumes/#csi
@ -11,9 +11,7 @@ aka:
tags:
- storage
---
<!--
---
title: Container Storage Interface (CSI)
id: csi
date: 2018-06-25
@ -25,13 +23,12 @@ short_description: >
aka:
tags:
- storage
---
-->
<!--
The Container Storage Interface (CSI) defines a standard interface to expose storage systems to containers.
-->
容器存储接口 CSI 定义了存储系统暴露给容器的标准接口。
容器存储接口Container Storage InterfaceCSI定义存储系统暴露给容器的标准接口。
<!--more-->
@ -41,7 +38,6 @@ CSI allows vendors to create custom storage plugins for Kubernetes without addin
* [CSI in the Kubernetes documentation](/docs/concepts/storage/volumes/#csi)
* [List of available CSI drivers](https://kubernetes-csi.github.io/docs/drivers.html)
-->
CSI 允许存储驱动提供商为 Kubernetes 创建定制化的存储插件,
而无需将这些插件的代码添加到 Kubernetes 代码仓库(外部插件)。
要使用某个存储提供商的 CSI 驱动,你首先要

View File

@ -12,13 +12,12 @@ tags:
- operation
- extension
---
<!--
---
title: CustomResourceDefinition
id: CustomResourceDefinition
date: 2018-04-12
full_link: /docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/
short_description: >
Custom code that defines a resource to add to your Kubernetes API server without building a complete custom server.
aka:
@ -26,13 +25,11 @@ tags:
- fundamental
- operation
- extension
---
-->
<!--
Custom code that defines a resource to add to your Kubernetes API server without building a complete custom server.
-->
通过定制化的代码给你的 Kubernetes API 服务器增加资源对象,而无需编译完整的定制 API 服务器。
<!--more-->
@ -40,7 +37,5 @@ tags:
<!--
Custom Resource Definitions let you extend the Kubernetes API for your environment if the publicly supported API resources can't meet your needs.
-->
当 Kubernetes 公开支持的 API 资源不能满足你的需要时,
定制资源对象Custom Resource Definitions让你可以在你的环境上扩展 Kubernetes API。