ResourceQuota

ResourceQuota 设置每个命名空间强制执行的聚合配额限制。

apiVersion: v1

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

ResourceQuota

ResourceQuota 设置每个命名空间强制执行的聚合配额限制


ResourceQuotaSpec

ResourceQuotaSpec 定义为配额强制执行的所需硬限制。


  • hard (map[string]Quantity)

    hard 是每个命名资源的所需硬限制集。更多信息:https://kubernetes.top/docs/concepts/policy/resource-quotas/

  • scopeSelector (ScopeSelector)

    scopeSelector 也是像作用域一样的过滤器集合,必须匹配配额跟踪的每个对象,但使用 ScopeSelectorOperator 与可能的值结合表示。对于要匹配的资源,必须匹配作用域和 scopeSelector(如果在 spec 中指定)。

    作用域选择器表示由作用域资源选择器需求表示的选择器的 AND。

    • scopeSelector.matchExpressions ([]ScopedResourceSelectorRequirement)

      原子性:将在合并期间被替换

      按资源范围的范围选择器需求列表。

      作用域资源选择器需求是一个选择器,其中包含值、作用域名称以及关联作用域名称和值的运算符。

      • scopeSelector.matchExpressions.operator (string),必需

        表示作用域与一组值的关系。有效运算符为 In、NotIn、Exists、DoesNotExist。

      • scopeSelector.matchExpressions.scopeName (string),必需

        选择器应用的作用域的名称。

      • scopeSelector.matchExpressions.values ([]string)

        原子性:将在合并期间被替换

        字符串值数组。如果运算符为 In 或 NotIn,则值数组必须为非空。如果运算符为 Exists 或 DoesNotExist,则值数组必须为空。此数组在策略合并补丁期间被替换。

  • scopes ([]string)

    原子性:将在合并期间被替换

    必须匹配配额跟踪的每个对象的过滤器集合。如果未指定,则配额匹配所有对象。

ResourceQuotaStatus

ResourceQuotaStatus 定义强制执行的硬限制和观察到的使用情况。


ResourceQuotaList

ResourceQuotaList 是 ResourceQuota 项的列表。


操作


get 读取指定的 ResourceQuota

HTTP 请求

GET /api/v1/namespaces/{namespace}/resourcequotas/{name}

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

401: 未授权

get 读取指定 ResourceQuota 的状态

HTTP 请求

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

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

401: 未授权

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

HTTP 请求

GET /api/v1/namespaces/{namespace}/resourcequotas

参数

响应

200 (ResourceQuotaList): 正常

401: 未授权

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

HTTP 请求

GET /api/v1/resourcequotas

参数

响应

200 (ResourceQuotaList): 正常

401: 未授权

create 创建 ResourceQuota

HTTP 请求

POST /api/v1/namespaces/{namespace}/resourcequotas

参数

响应

200 (ResourceQuota): 正常

201 (ResourceQuota): 已创建

202 (ResourceQuota): 已接受

401: 未授权

update 替换指定的 ResourceQuota

HTTP 请求

PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • bodyResourceQuota,必需

  • dryRun (在查询中):字符串

    dryRun

  • fieldManager (在查询中):字符串

    fieldManager

  • fieldValidation (在查询中):字符串

    fieldValidation

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

201 (ResourceQuota): 已创建

401: 未授权

update 替换指定 ResourceQuota 的状态

HTTP 请求

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

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • bodyResourceQuota,必需

  • dryRun (在查询中):字符串

    dryRun

  • fieldManager (在查询中):字符串

    fieldManager

  • fieldValidation (在查询中):字符串

    fieldValidation

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

201 (ResourceQuota): 已创建

401: 未授权

patch 部分更新指定的 ResourceQuota

HTTP 请求

PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • bodyPatch,必需

  • dryRun (在查询中):字符串

    dryRun

  • fieldManager (在查询中):字符串

    fieldManager

  • fieldValidation (在查询中):字符串

    fieldValidation

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

    force

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

201 (ResourceQuota): 已创建

401: 未授权

patch 部分更新指定 ResourceQuota 的状态

HTTP 请求

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

参数

  • name (在路径中):字符串,必需

    ResourceQuota 的名称

  • namespace (在路径中):字符串,必需

    命名空间

  • bodyPatch,必需

  • dryRun (在查询中):字符串

    dryRun

  • fieldManager (在查询中):字符串

    fieldManager

  • fieldValidation (在查询中):字符串

    fieldValidation

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

    force

  • pretty (在查询中):字符串

    pretty

响应

200 (ResourceQuota): 正常

201 (ResourceQuota): 已创建

401: 未授权

delete 删除 ResourceQuota

HTTP 请求

DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}

参数

响应

200 (ResourceQuota): 正常

202 (ResourceQuota): 已接受

401: 未授权

deletecollection 删除 ResourceQuota 的集合

HTTP 请求

DELETE /api/v1/namespaces/{namespace}/resourcequotas

参数

响应

200 (Status): 正常

401: 未授权

此页面是自动生成的。

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

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