100 lines
3.9 KiB
YAML
100 lines
3.9 KiB
YAML
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/scheduler-plugins/pull/52
|
|
controller-gen.kubebuilder.io/version: v0.16.5
|
|
name: elasticquotas.scheduling.x-k8s.io
|
|
spec:
|
|
group: scheduling.x-k8s.io
|
|
names:
|
|
kind: ElasticQuota
|
|
listKind: ElasticQuotaList
|
|
plural: elasticquotas
|
|
shortNames:
|
|
- eq
|
|
- eqs
|
|
singular: elasticquota
|
|
scope: Namespaced
|
|
versions:
|
|
- additionalPrinterColumns:
|
|
- description: Used is the current observed total usage of the resource in the
|
|
namespace.
|
|
jsonPath: .status.used
|
|
name: Used
|
|
type: string
|
|
- description: Max is the set of desired max limits for each named resource.
|
|
jsonPath: .spec.max
|
|
name: Max
|
|
type: string
|
|
- description: Age is the time ElasticQuota was created.
|
|
jsonPath: .metadata.creationTimestamp
|
|
name: Age
|
|
type: date
|
|
name: v1alpha1
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: ElasticQuota sets elastic quota restrictions per namespace
|
|
properties:
|
|
apiVersion:
|
|
description: |-
|
|
APIVersion defines the versioned schema of this representation of an object.
|
|
Servers should convert recognized schemas to the latest internal value, and
|
|
may reject unrecognized values.
|
|
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
type: string
|
|
kind:
|
|
description: |-
|
|
Kind is a string value representing the REST resource this object represents.
|
|
Servers may infer this from the endpoint the client submits requests to.
|
|
Cannot be updated.
|
|
In CamelCase.
|
|
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
description: ElasticQuotaSpec defines the Min and Max for Quota.
|
|
properties:
|
|
max:
|
|
additionalProperties:
|
|
anyOf:
|
|
- type: integer
|
|
- type: string
|
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
|
x-kubernetes-int-or-string: true
|
|
description: |-
|
|
Max is the set of desired max limits for each named resource. The usage of max is based on the resource configurations of
|
|
successfully scheduled pods.
|
|
type: object
|
|
min:
|
|
additionalProperties:
|
|
anyOf:
|
|
- type: integer
|
|
- type: string
|
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
|
x-kubernetes-int-or-string: true
|
|
description: Min is the set of desired guaranteed limits for each
|
|
named resource.
|
|
type: object
|
|
type: object
|
|
status:
|
|
description: ElasticQuotaStatus defines the observed use.
|
|
properties:
|
|
used:
|
|
additionalProperties:
|
|
anyOf:
|
|
- type: integer
|
|
- type: string
|
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
|
x-kubernetes-int-or-string: true
|
|
description: Used is the current observed total usage of the resource
|
|
in the namespace.
|
|
type: object
|
|
type: object
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {} |