LimitRange
apiVersion: v1
import "k8s.io/api/core/v1"
LimitRange
LimitRange 为命名空间中的每种资源设置资源使用限制。
apiVersion: v1
kind: LimitRange
metadata (ObjectMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (LimitRangeSpec)
Spec 定义强制执行的限制。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
LimitRangeSpec
LimitRangeSpec 定义与种类匹配的资源的最小/最大使用限制。
limits ([]LimitRangeItem), 必需
原子操作:在合并期间将被替换
Limits 是强制执行的 LimitRangeItem 对象列表。
LimitRangeItem 定义与种类匹配的任何资源的最小/最大使用限制。
limits.type (string), 必需
此限制适用的资源类型。
limits.default (map[string]Quantity)
如果省略资源限制,则按资源名称的默认资源需求限制值。
limits.defaultRequest (map[string]Quantity)
如果省略资源请求,则按资源名称的默认资源需求请求值。
limits.max (map[string]Quantity)
按资源名称对此种类的最大使用约束。
limits.maxLimitRequestRatio (map[string]Quantity)
如果指定 MaxLimitRequestRatio,则命名资源必须具有非零的请求和限制,其中限制除以请求小于或等于枚举值;这表示命名资源的最大突发。
limits.min (map[string]Quantity)
按资源名称对此种类的最小使用约束。
LimitRangeList
LimitRangeList 是 LimitRange 项目的列表。
apiVersion: v1
kind: LimitRangeList
metadata (ListMeta)
标准列表元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
items ([]LimitRange), 必需
Items 是 LimitRange 对象列表。更多信息:https://kubernetes.top/docs/concepts/configuration/manage-resources-containers/
操作
get
读取指定的 LimitRange
HTTP 请求
GET /api/v1/namespaces/{namespace}/limitranges/{name}
参数
响应
200 (LimitRange): OK
401: 未授权
list
列出或监视 LimitRange 类型的对象
HTTP 请求
GET /api/v1/namespaces/{namespace}/limitranges
参数
namespace (在路径中): string, 必需
allowWatchBookmarks (在查询中): boolean
continue (在查询中): string
fieldSelector (在查询中): string
labelSelector (在查询中): string
limit (在查询中): integer
pretty (在查询中): string
resourceVersion (在查询中): string
resourceVersionMatch (在查询中): string
sendInitialEvents (在查询中): boolean
timeoutSeconds (在查询中): integer
watch (在查询中): boolean
响应
200 (LimitRangeList): OK
401: 未授权
list
列出或监视 LimitRange 类型的对象
HTTP 请求
GET /api/v1/limitranges
参数
allowWatchBookmarks (在查询中): boolean
continue (在查询中): string
fieldSelector (在查询中): string
labelSelector (在查询中): string
limit (在查询中): integer
pretty (在查询中): string
resourceVersion (在查询中): string
resourceVersionMatch (在查询中): string
sendInitialEvents (在查询中): boolean
timeoutSeconds (在查询中): integer
watch (在查询中): boolean
响应
200 (LimitRangeList): OK
401: 未授权
create
创建一个 LimitRange
HTTP 请求
POST /api/v1/namespaces/{namespace}/limitranges
参数
namespace (在路径中): string, 必需
body: LimitRange, 必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (LimitRange): OK
201 (LimitRange): 已创建
202 (LimitRange): 已接受
401: 未授权
update
替换指定的 LimitRange
HTTP 请求
PUT /api/v1/namespaces/{namespace}/limitranges/{name}
参数
name (在路径中): string, 必需
LimitRange 的名称
namespace (在路径中): string, 必需
body: LimitRange, 必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
pretty (在查询中): string
响应
200 (LimitRange): OK
201 (LimitRange): 已创建
401: 未授权
patch
部分更新指定的 LimitRange
HTTP 请求
PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
参数
name (在路径中): string, 必需
LimitRange 的名称
namespace (在路径中): string, 必需
body: Patch, 必需
dryRun (在查询中): string
fieldManager (在查询中): string
fieldValidation (在查询中): string
force (在查询中): boolean
pretty (在查询中): string
响应
200 (LimitRange): OK
201 (LimitRange): 已创建
401: 未授权
delete
删除一个 LimitRange
HTTP 请求
DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
参数
name (在路径中): string, 必需
LimitRange 的名称
namespace (在路径中): string, 必需
body: DeleteOptions
dryRun (在查询中): string
gracePeriodSeconds (在查询中): integer
pretty (在查询中): string
propagationPolicy (在查询中): string
响应
200 (Status): OK
202 (Status): 已接受
401: 未授权
deletecollection
删除 LimitRange 的集合
HTTP 请求
DELETE /api/v1/namespaces/{namespace}/limitranges
参数
namespace (在路径中): string, 必需
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: 未授权
此页面是自动生成的。
如果您计划报告此页面的问题,请在您的问题描述中提到该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他位置进行。