ReplicaSet

ReplicaSet 确保在任何给定时间运行指定数量的 Pod 副本。

apiVersion: apps/v1

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

ReplicaSet

ReplicaSet 确保在任何给定时间运行指定数量的 Pod 副本。


ReplicaSetSpec

ReplicaSetSpec 是 ReplicaSet 的规范。


ReplicaSetStatus

ReplicaSetStatus 表示 ReplicaSet 的当前状态。


  • replicas (int32), 必需

    Replicas 是最近观察到的副本数。更多信息:https://kubernetes.top/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

  • availableReplicas (int32)

    此副本集的可用副本数(至少准备好 minReadySeconds)。

  • readyReplicas (int32)

    readyReplicas 是此 ReplicaSet 具有就绪条件的 Pod 数。

  • fullyLabeledReplicas (int32)

    标签与副本集的 Pod 模板标签匹配的 Pod 数。

  • conditions ([]ReplicaSetCondition)

    补丁策略:在键 type 上合并

    映射:在合并期间将保留键类型上的唯一值

    表示副本集当前状态的最新可用观察值。

    ReplicaSetCondition 描述了副本集在某个时间点的状态。

    • conditions.status (string), 必需

      条件的状态,为 True、False 或 Unknown 中的一个。

    • conditions.type (string), 必需

      副本集条件的类型。

    • conditions.lastTransitionTime (Time)

      条件上次从一种状态转换为另一种状态的时间。

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

    • conditions.message (string)

      一条人类可读的消息,指示有关转换的详细信息。

    • conditions.reason (string)

      条件上次转换的原因。

  • observedGeneration (int64)

    ObservedGeneration 反映了最近观察到的 ReplicaSet 的世代。

ReplicaSetList

ReplicaSetList 是 ReplicaSet 的集合。


操作


get 读取指定的 ReplicaSet

HTTP 请求

GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

参数

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

    ReplicaSet 的名称

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

    命名空间

  • pretty (在查询中): string

    pretty

响应

200 (ReplicaSet): OK

401: 未授权

get 读取指定 ReplicaSet 的状态

HTTP 请求

GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

参数

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

    ReplicaSet 的名称

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

    命名空间

  • pretty (在查询中): string

    pretty

响应

200 (ReplicaSet): OK

401: 未授权

list 列出或监视 ReplicaSet 类型的对象

HTTP 请求

GET /apis/apps/v1/namespaces/{namespace}/replicasets

参数

响应

200 (ReplicaSetList): OK

401: 未授权

list 列出或监视 ReplicaSet 类型的对象

HTTP 请求

GET /apis/apps/v1/replicasets

参数

响应

200 (ReplicaSetList): OK

401: 未授权

create 创建一个 ReplicaSet

HTTP 请求

POST /apis/apps/v1/namespaces/{namespace}/replicasets

参数

响应

200 (ReplicaSet): OK

201 (ReplicaSet): 已创建

202 (ReplicaSet): 已接受

401: 未授权

update 替换指定的 ReplicaSet

HTTP 请求

PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

参数

响应

200 (ReplicaSet): OK

201 (ReplicaSet): 已创建

401: 未授权

update 替换指定 ReplicaSet 的状态

HTTP 请求

PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

参数

响应

200 (ReplicaSet): OK

201 (ReplicaSet): 已创建

401: 未授权

patch 部分更新指定的 ReplicaSet

HTTP 请求

PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

参数

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

    ReplicaSet 的名称

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

    命名空间

  • body: Patch,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • force (在查询中): 布尔值

    强制

  • pretty (在查询中): string

    pretty

响应

200 (ReplicaSet): OK

201 (ReplicaSet): 已创建

401: 未授权

patch 部分更新指定的 ReplicaSet 的状态

HTTP 请求

PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

参数

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

    ReplicaSet 的名称

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

    命名空间

  • body: Patch,必需

  • dryRun (在查询中): string

    dryRun

  • fieldManager (在查询中): string

    fieldManager

  • fieldValidation (在查询中): string

    fieldValidation

  • force (在查询中): 布尔值

    强制

  • pretty (在查询中): string

    pretty

响应

200 (ReplicaSet): OK

201 (ReplicaSet): 已创建

401: 未授权

delete 删除一个 ReplicaSet

HTTP 请求

DELETE /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

参数

响应

200 (Status): OK

202 (Status): 已接受

401: 未授权

deletecollection 删除 ReplicaSet 集合

HTTP 请求

DELETE /apis/apps/v1/namespaces/{namespace}/replicasets

参数

响应

200 (Status): OK

401: 未授权

此页面是自动生成的。

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

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