Namespace
apiVersion: v1
import "k8s.io/api/core/v1"
Namespace
命名空间为名称提供了一个作用域。使用多个命名空间是可选的。
apiVersion: v1
kind: Namespace
metadata (ObjectMeta)
标准的对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (NamespaceSpec)
Spec 定义了命名空间的行为。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
status (NamespaceStatus)
Status 描述了命名空间的当前状态。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
NamespaceSpec
NamespaceSpec 描述了命名空间的属性。
finalizers ([]string)
原子性:在合并期间将被替换
Finalizers 是一个不透明的值列表,该列表必须为空才能永久从存储中删除对象。更多信息:https://kubernetes.top/docs/tasks/administer-cluster/namespaces/
NamespaceStatus
NamespaceStatus 是关于命名空间当前状态的信息。
conditions ([]NamespaceCondition)
Patch 策略:合并键
type
Map: 在合并期间将保留键 type 上的唯一值
表示命名空间当前状态的最新可用观察结果。
phase (string)
Phase 是命名空间的当前生命周期阶段。更多信息:https://kubernetes.top/docs/tasks/administer-cluster/namespaces/
NamespaceList
NamespaceList 是命名空间的列表。
apiVersion: v1
kind: NamespaceList
metadata (ListMeta)
标准列表元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
items ([]Namespace),必需
Items 是列表中命名空间对象的列表。更多信息:https://kubernetes.top/docs/concepts/overview/working-with-objects/namespaces/
操作
get
读取指定的命名空间
HTTP 请求
GET /api/v1/namespaces/{name}
参数
name (在路径中): string,必需
命名空间的名称
pretty (在查询中): string
响应
200 (Namespace): OK
401: 未授权
get
读取指定命名空间的状态
HTTP 请求
GET /api/v1/namespaces/{name}/status
参数
name (在路径中): string,必需
命名空间的名称
pretty (在查询中): string
响应
200 (Namespace): OK
401: 未授权
list
列出或监视命名空间类型的对象
HTTP 请求
GET /api/v1/namespaces
参数
allowWatchBookmarks (在查询中): boolean
continue (在查询中): string
fieldSelector (在查询中): string
labelSelector (在查询中): string
limit (在查询中): integer
pretty (在查询中): string
resourceVersion (在查询中): string
resourceVersionMatch (在查询中): string
sendInitialEvents (在查询中): boolean
timeoutSeconds (在查询中): integer
watch (在查询中): boolean
响应
200 (NamespaceList): OK
401: 未授权
create
创建一个命名空间
HTTP 请求
POST /api/v1/namespaces
参数
body: Namespace,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
202 (Namespace): 已接受
401: 未授权
update
替换指定的命名空间
HTTP 请求
PUT /api/v1/namespaces/{name}
参数
name (在路径中): string,必需
命名空间的名称
body: Namespace,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
401: 未授权
update
替换指定命名空间的终结器
HTTP 请求
PUT /api/v1/namespaces/{name}/finalize
参数
name (在路径中): string,必需
命名空间的名称
body: Namespace,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
401: 未授权
update
替换指定命名空间的状态
HTTP 请求
PUT /api/v1/namespaces/{name}/status
参数
name (在路径中): string,必需
命名空间的名称
body: Namespace,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
401: 未授权
patch
部分更新指定的命名空间
HTTP 请求
PATCH /api/v1/namespaces/{name}
参数
name (在路径中): string,必需
命名空间的名称
body: Patch,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
force (在查询中): boolean
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
401: 未授权
patch
部分更新指定命名空间的状态
HTTP 请求
PATCH /api/v1/namespaces/{name}/status
参数
name (在路径中): string,必需
命名空间的名称
body: Patch,必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
force (在查询中): boolean
pretty (在查询中): string
响应
200 (Namespace): OK
201 (Namespace): 已创建
401: 未授权
delete
删除一个命名空间
HTTP 请求
DELETE /api/v1/namespaces/{name}
参数
name (在路径中): string,必需
命名空间的名称
body: DeleteOptions
dryRun (在查询中): string
gracePeriodSeconds (在查询中): integer
pretty (在查询中): string
propagationPolicy (在查询中): string
响应
200 (Status): OK
202 (Status): 已接受
401: 未授权
此页面是自动生成的。
如果您计划报告此页面的问题,请在问题描述中说明该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他位置进行。