update the markdown file in the glossary directory.

This commit is contained in:
jialaijun
2020-11-25 18:29:43 +08:00
parent bd59f5578a
commit 7260dbf1c6
38 changed files with 799 additions and 586 deletions
@@ -1,5 +1,23 @@
<!--
---
title: 准入控制器
title: Admission Controller
id: admission-controller
date: 2019-06-28
full_link: /docs/reference/access-authn-authz/admission-controllers/
short_description: >
A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object.
aka:
tags:
- extension
- security
---
-->
---
title: Admission Controller(准入控制器)
id: admission-controller
date: 2019-06-28
full_link: /zh/docs/reference/access-authn-authz/admission-controllers/
@@ -12,24 +30,12 @@ tags:
---
<!--
---
title: Admission Controller
id: admission-controller
date: 2019-06-28
full_link: /zh/docs/reference/access-authn-authz/admission-controllers/
short_description: >
A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object.
aka:
tags:
- extension
- security
---
A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object.
-->
在对象持久化之前拦截 Kubernetes Api 服务器请求的一段代码
<!--more-->
<!--
Admission controllers are configurable for the Kubernetes API server and may be “validating”, “mutating”, or
both. Any admission controller may reject the request. Mutating controllers may modify the objects they admit;
@@ -41,4 +47,4 @@ validating controllers may not.
准入控制器可针对 Kubernetes Api 服务器进行配置,可以执行验证,变更或两者都执行。任何准入控制器都可以拒绝访问请求。
变更(mutating)控制器可以修改其允许的对象,验证(validating)控制器则不可以。
* [Kubernetes 文档中的准入控制器](/docs/reference/access-authn-authz/admission-controllers/)
* [Kubernetes 文档中的准入控制器](/zh/docs/reference/access-authn-authz/admission-controllers/)