volcano.sh/volcano@v1.9.0/config/crd/volcano/bases/nodeinfo.volcano.sh_numatopologies.yaml (about)

     1  
     2  ---
     3  apiVersion: apiextensions.k8s.io/v1
     4  kind: CustomResourceDefinition
     5  metadata:
     6    annotations:
     7      controller-gen.kubebuilder.io/version: v0.6.0
     8    creationTimestamp: null
     9    name: numatopologies.nodeinfo.volcano.sh
    10  spec:
    11    group: nodeinfo.volcano.sh
    12    names:
    13      kind: Numatopology
    14      listKind: NumatopologyList
    15      plural: numatopologies
    16      shortNames:
    17      - numatopo
    18      singular: numatopology
    19    scope: Cluster
    20    versions:
    21    - name: v1alpha1
    22      schema:
    23        openAPIV3Schema:
    24          description: Numatopology is the Schema for the Numatopologies API
    25          properties:
    26            apiVersion:
    27              description: 'APIVersion defines the versioned schema of this representation
    28                of an object. Servers should convert recognized schemas to the latest
    29                internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
    30              type: string
    31            kind:
    32              description: 'Kind is a string value representing the REST resource this
    33                object represents. Servers may infer this from the endpoint the client
    34                submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
    35              type: string
    36            metadata:
    37              type: object
    38            spec:
    39              description: Specification of the numa information of the worker node
    40              properties:
    41                cpuDetail:
    42                  additionalProperties:
    43                    description: CPUInfo is the cpu topology detail
    44                    properties:
    45                      core:
    46                        type: integer
    47                      numa:
    48                        type: integer
    49                      socket:
    50                        type: integer
    51                    type: object
    52                  description: Specifies the cpu topology info Key is cpu id
    53                  type: object
    54                numares:
    55                  additionalProperties:
    56                    description: ResourceInfo is the sets about resource capacity and
    57                      allocatable
    58                    properties:
    59                      allocatable:
    60                        type: string
    61                      capacity:
    62                        type: integer
    63                    type: object
    64                  description: Specifies the numa info for the resource Key is resource
    65                    name
    66                  type: object
    67                policies:
    68                  additionalProperties:
    69                    type: string
    70                  description: Specifies the policy of the manager
    71                  type: object
    72                resReserved:
    73                  additionalProperties:
    74                    type: string
    75                  description: Specifies the reserved resource of the node Key is resource
    76                    name
    77                  type: object
    78              type: object
    79          type: object
    80      served: true
    81      storage: true
    82  status:
    83    acceptedNames:
    84      kind: ""
    85      plural: ""
    86    conditions: []
    87    storedVersions: []