服务 CIDR v1beta1
apiVersion: networking.k8s.io/v1beta1
import "k8s.io/api/networking/v1beta1"
ServiceCIDR
ServiceCIDR 使用 CIDR 格式定义 IP 地址范围(例如 192.168.0.0/24 或 2001:db2::/64)。此范围用于为 Service 对象分配 ClusterIP。
apiVersion: networking.k8s.io/v1beta1
kind: ServiceCIDR
metadata (ObjectMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (ServiceCIDRSpec)
spec 是 ServiceCIDR 的期望状态。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
status (ServiceCIDRStatus)
status 表示 ServiceCIDR 的当前状态。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
ServiceCIDRSpec
ServiceCIDRSpec 定义用户希望用于为 Service 分配 ClusterIP 的 CIDR。
cidrs ([]string)
原子性:在合并期间将被替换
CIDR 定义 CIDR 表示法中的 IP 块(例如“192.168.0.0/24”或“2001:db8::/64”),从中分配服务集群 IP。最多允许两个 CIDR,每个 IP 家族一个。此字段是不可变的。
ServiceCIDRStatus
ServiceCIDRStatus 描述 ServiceCIDR 的当前状态。
conditions ([]Condition)
补丁策略:基于键 `type` 合并
映射:键类型上的唯一值将在合并期间保留
conditions 包含一个 metav1.Condition 数组,描述 ServiceCIDR 的状态。当前服务状态
Condition 包含此 API 资源当前状态的一个方面的详细信息。
conditions.lastTransitionTime (Time),必需
lastTransitionTime 是条件从一种状态转换到另一种状态的最后时间。这应该是底层条件发生变化的时间。如果不知道,则可以使用 API 字段更改的时间。
Time 是 time.Time 的包装器,支持正确的 YAML 和 JSON 编组。为 time 包提供的许多工厂方法提供了包装器。
conditions.message (string),必需
message 是一条人类可读的消息,指示有关转换的详细信息。这可以是空字符串。
conditions.reason (string),必需
reason 包含一个程序标识符,指示条件最后一次转换的原因。特定条件类型的生产者可以为此字段定义预期值和含义,以及这些值是否被视为有保证的 API。该值应为 CamelCase 字符串。此字段不能为空。
conditions.status (string),必需
条件的状态,值为 True、False 或 Unknown 之一。
conditions.type (string),必需
条件类型,采用 CamelCase 或 foo.example.com/CamelCase 格式。
conditions.observedGeneration (int64)
observedGeneration 表示设置条件所依据的 .metadata.generation。例如,如果 .metadata.generation 当前为 12,但 .status.conditions[x].observedGeneration 为 9,则条件相对于实例的当前状态已过期。
ServiceCIDRList
ServiceCIDRList 包含 ServiceCIDR 对象列表。
apiVersion: networking.k8s.io/v1beta1
kind: ServiceCIDRList
metadata (ListMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
items ([]ServiceCIDR),必需
items 是 ServiceCIDR 列表。
操作
get
读取指定的 ServiceCIDR
HTTP 请求
GET /apis/networking.k8s.io/v1beta1/servicecidrs/{name}
参数
name (路径参数):string,必需
ServiceCIDR 的名称
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
401: Unauthorized(未授权)
get
读取指定 ServiceCIDR 的状态
HTTP 请求
GET /apis/networking.k8s.io/v1beta1/servicecidrs/{name}/status
参数
name (路径参数):string,必需
ServiceCIDR 的名称
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
401: Unauthorized(未授权)
list
列出或监视 ServiceCIDR 类型的对象
HTTP 请求
GET /apis/networking.k8s.io/v1beta1/servicecidrs
参数
allowWatchBookmarks (*查询参数*):boolean
continue (*查询参数*):string
fieldSelector (*查询参数*):string
labelSelector (*查询参数*):string
limit (*查询参数*):integer
pretty (查询参数):string
resourceVersion (*查询参数*):string
resourceVersionMatch (*查询参数*):string
sendInitialEvents(*查询参数*):boolean
timeoutSeconds (*查询参数*):integer
watch (*查询参数*):boolean
响应
200 (ServiceCIDRList):OK
401: Unauthorized(未授权)
create
创建 ServiceCIDR
HTTP 请求
POST /apis/networking.k8s.io/v1beta1/servicecidrs
参数
body: ServiceCIDR,必需
dryRun (*查询参数*):string
fieldManager (*查询参数*):string
fieldValidation (*查询参数*):string
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
201 (ServiceCIDR):Created(已创建)
202 (ServiceCIDR):Accepted(已接受)
401: Unauthorized(未授权)
update
替换指定的 ServiceCIDR
HTTP 请求
PUT /apis/networking.k8s.io/v1beta1/servicecidrs/{name}
参数
name (路径参数):string,必需
ServiceCIDR 的名称
body: ServiceCIDR,必需
dryRun (*查询参数*):string
fieldManager (*查询参数*):string
fieldValidation (*查询参数*):string
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
201 (ServiceCIDR):Created(已创建)
401: Unauthorized(未授权)
update
替换指定 ServiceCIDR 的状态
HTTP 请求
PUT /apis/networking.k8s.io/v1beta1/servicecidrs/{name}/status
参数
name (路径参数):string,必需
ServiceCIDR 的名称
body: ServiceCIDR,必需
dryRun (*查询参数*):string
fieldManager (*查询参数*):string
fieldValidation (*查询参数*):string
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
201 (ServiceCIDR):Created(已创建)
401: Unauthorized(未授权)
patch
部分更新指定的 ServiceCIDR
HTTP 请求
PATCH /apis/networking.k8s.io/v1beta1/servicecidrs/{name}
参数
name (路径参数):string,必需
ServiceCIDR 的名称
body: Patch,必需
dryRun (*查询参数*):string
fieldManager (*查询参数*):string
fieldValidation (*查询参数*):string
force (*查询参数*):boolean
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
201 (ServiceCIDR):Created(已创建)
401: Unauthorized(未授权)
patch
部分更新指定 ServiceCIDR 的状态
HTTP 请求
PATCH /apis/networking.k8s.io/v1beta1/servicecidrs/{name}/status
参数
name (路径参数):string,必需
ServiceCIDR 的名称
body: Patch,必需
dryRun (*查询参数*):string
fieldManager (*查询参数*):string
fieldValidation (*查询参数*):string
force (*查询参数*):boolean
pretty (查询参数):string
响应
200 (ServiceCIDR):OK
201 (ServiceCIDR):Created(已创建)
401: Unauthorized(未授权)
delete
删除 ServiceCIDR
HTTP 请求
DELETE /apis/networking.k8s.io/v1beta1/servicecidrs/{name}
参数
name (路径参数):string,必需
ServiceCIDR 的名称
body: DeleteOptions
dryRun (*查询参数*):string
gracePeriodSeconds (*查询参数*):integer
pretty (查询参数):string
propagationPolicy (*查询参数*):string
响应
200 (Status): OK
202 (Status): Accepted(已接受)
401: Unauthorized(未授权)
deletecollection
删除 ServiceCIDR 集合
HTTP 请求
DELETE /apis/networking.k8s.io/v1beta1/servicecidrs
参数
body: DeleteOptions
continue (*查询参数*):string
dryRun (*查询参数*):string
fieldSelector (*查询参数*):string
gracePeriodSeconds (*查询参数*):integer
labelSelector (*查询参数*):string
limit (*查询参数*):integer
pretty (查询参数):string
propagationPolicy (*查询参数*):string
resourceVersion (*查询参数*):string
resourceVersionMatch (*查询参数*):string
sendInitialEvents(*查询参数*):boolean
timeoutSeconds (*查询参数*):integer
响应
200 (Status): OK
401: Unauthorized(未授权)
此页面自动生成。
如果您计划报告此页面的问题,请在问题描述中提及此页面是自动生成的。修复可能需要在 Kubernetes 项目的其他地方进行。