Namespace

命名空间为名称提供了一个作用域。

apiVersion: v1

import "k8s.io/api/core/v1"

Namespace

命名空间为名称提供了一个作用域。使用多个命名空间是可选的。


NamespaceSpec

NamespaceSpec 描述了命名空间的属性。


NamespaceStatus

NamespaceStatus 是关于命名空间当前状态的信息。


  • conditions ([]NamespaceCondition)

    Patch 策略:合并键 type

    Map: 在合并期间将保留键 type 上的唯一值

    表示命名空间当前状态的最新可用观察结果。

    NamespaceCondition 包含关于命名空间状态的详细信息。

    • conditions.status (string),必需

      条件状态,值为 True、False 或 Unknown 之一。

    • conditions.type (string),必需

      命名空间控制器条件的类型。

    • conditions.lastTransitionTime (Time)

      Time 是 time.Time 的包装器,支持正确地编组为 YAML 和 JSON。为 time 包提供的许多工厂方法提供了包装器。

    • conditions.message (string)

    • conditions.reason (string)

  • phase (string)

    Phase 是命名空间的当前生命周期阶段。更多信息:https://kubernetes.top/docs/tasks/administer-cluster/namespaces/

NamespaceList

NamespaceList 是命名空间的列表。


操作


get 读取指定的命名空间

HTTP 请求

GET /api/v1/namespaces/{name}

参数

  • name (在路径中): string,必需

    命名空间的名称

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

401: 未授权

get 读取指定命名空间的状态

HTTP 请求

GET /api/v1/namespaces/{name}/status

参数

  • name (在路径中): string,必需

    命名空间的名称

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

401: 未授权

list 列出或监视命名空间类型的对象

HTTP 请求

GET /api/v1/namespaces

参数

响应

200 (NamespaceList): OK

401: 未授权

create 创建一个命名空间

HTTP 请求

POST /api/v1/namespaces

参数

响应

200 (Namespace): OK

201 (Namespace): 已创建

202 (Namespace): 已接受

401: 未授权

update 替换指定的命名空间

HTTP 请求

PUT /api/v1/namespaces/{name}

参数

  • name (在路径中): string,必需

    命名空间的名称

  • body: Namespace,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

201 (Namespace): 已创建

401: 未授权

update 替换指定命名空间的终结器

HTTP 请求

PUT /api/v1/namespaces/{name}/finalize

参数

  • name (在路径中): string,必需

    命名空间的名称

  • body: Namespace,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

201 (Namespace): 已创建

401: 未授权

update 替换指定命名空间的状态

HTTP 请求

PUT /api/v1/namespaces/{name}/status

参数

  • name (在路径中): string,必需

    命名空间的名称

  • body: Namespace,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

201 (Namespace): 已创建

401: 未授权

patch 部分更新指定的命名空间

HTTP 请求

PATCH /api/v1/namespaces/{name}

参数

  • name (在路径中): string,必需

    命名空间的名称

  • body: Patch,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • force (在查询中): boolean

    force

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

201 (Namespace): 已创建

401: 未授权

patch 部分更新指定命名空间的状态

HTTP 请求

PATCH /api/v1/namespaces/{name}/status

参数

  • name (在路径中): string,必需

    命名空间的名称

  • body: Patch,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • force (在查询中): boolean

    force

  • pretty (在查询中): string

    pretty

响应

200 (Namespace): OK

201 (Namespace): 已创建

401: 未授权

delete 删除一个命名空间

HTTP 请求

DELETE /api/v1/namespaces/{name}

参数

响应

200 (Status): OK

202 (Status): 已接受

401: 未授权

此页面是自动生成的。

如果您计划报告此页面的问题,请在问题描述中说明该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他位置进行。

上次修改时间为 2024 年 8 月 28 日下午 6:01 PST: 更新 v1.31 的生成的 API 参考 (8ba98c79c1)