IPAddress v1beta1
apiVersion: networking.k8s.io/v1beta1
import "k8s.io/api/networking/v1beta1"
IPAddress
IPAddress 表示单个 IP 系列的单个 IP。该对象旨在由操作 IP 地址的 API 使用。该对象由 Service 核心 API 用于分配 IP 地址。IP 地址可以用不同的格式表示,为了保证 IP 的唯一性,对象的名称是规范格式的 IP 地址,IPv4 为四个用点分隔的十进制数字,并省略前导零,IPv6 的表示形式由 RFC 5952 定义。有效:192.168.1.5 或 2001:db8::1 或 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 无效:10.01.2.3 或 2001:db8:0:0:0::1
apiVersion: networking.k8s.io/v1beta1
kind: IPAddress
metadata (ObjectMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (IPAddressSpec)
spec 是 IPAddress 的期望状态。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
IPAddressSpec
IPAddressSpec 描述 IP 地址中的属性。
parentRef (ParentReference),必需
ParentRef 引用 IPAddress 所附加的资源。IPAddress 必须引用父对象。
parentRef.name (字符串),必需
Name 是被引用对象的名称。
parentRef.resource (字符串),必需
Resource 是被引用对象的资源。
parentRef.group (字符串)
Group 是被引用对象的分组。
parentRef.namespace (字符串)
Namespace 是被引用对象的命名空间。
IPAddressList
IPAddressList 包含 IPAddress 的列表。
apiVersion: networking.k8s.io/v1beta1
kind: IPAddressList
metadata (ListMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
items ([]IPAddress),必需
items 是 IPAddress 的列表。
操作
get
读取指定的 IPAddress
HTTP 请求
GET /apis/networking.k8s.io/v1beta1/ipaddresses/{name}
参数
name (在路径中): 字符串,必需
IPAddress 的名称
pretty (在查询中): 字符串
响应
200 (IPAddress): OK
401: 未授权
list
列出或监视 IPAddress 类型的对象
HTTP 请求
GET /apis/networking.k8s.io/v1beta1/ipaddresses
参数
allowWatchBookmarks (在查询中): 布尔值
continue (在查询中): 字符串
fieldSelector (在查询中): 字符串
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中): 字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
watch (在查询中): 布尔值
响应
200 (IPAddressList): OK
401: 未授权
create
创建一个 IPAddress
HTTP 请求
POST /apis/networking.k8s.io/v1beta1/ipaddresses
参数
body: IPAddress, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中): 字符串
响应
200 (IPAddress): OK
201 (IPAddress): 已创建
202 (IPAddress): 已接受
401: 未授权
update
替换指定的 IPAddress
HTTP 请求
PUT /apis/networking.k8s.io/v1beta1/ipaddresses/{name}
参数
name (在路径中): 字符串,必需
IPAddress 的名称
body: IPAddress, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中): 字符串
响应
200 (IPAddress): OK
201 (IPAddress): 已创建
401: 未授权
patch
部分更新指定的 IPAddress
HTTP 请求
PATCH /apis/networking.k8s.io/v1beta1/ipaddresses/{name}
参数
name (在路径中): 字符串,必需
IPAddress 的名称
body: Patch, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
force (在查询中): 布尔值
pretty (在查询中): 字符串
响应
200 (IPAddress): OK
201 (IPAddress): 已创建
401: 未授权
delete
删除一个 IPAddress
HTTP 请求
DELETE /apis/networking.k8s.io/v1beta1/ipaddresses/{name}
参数
name (在路径中): 字符串,必需
IPAddress 的名称
body: DeleteOptions
dryRun (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
pretty (在查询中): 字符串
propagationPolicy (在查询中): 字符串
响应
200 (Status): OK
202 (Status): 已接受
401: 未授权
deletecollection
删除 IPAddress 的集合
HTTP 请求
DELETE /apis/networking.k8s.io/v1beta1/ipaddresses
参数
body: DeleteOptions
continue (在查询中): 字符串
dryRun (在查询中): 字符串
fieldSelector (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中): 字符串
propagationPolicy (在查询中): 字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
响应
200 (Status): OK
401: 未授权
此页面是自动生成的。
如果您计划报告此页面的问题,请在您的问题描述中注明该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他地方进行。