{
  "description": "LocalQueue is the Schema for the localQueues API",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore 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.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": "string"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "description": "spec is the specification of the LocalQueue.",
      "properties": {
        "clusterQueue": {
          "description": "clusterQueue is a reference to a clusterQueue that backs this localQueue.",
          "maxLength": 253,
          "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
          "type": "string",
          "x-kubernetes-validations": [
            {
              "message": "field is immutable",
              "rule": "self == oldSelf"
            }
          ]
        },
        "fairSharing": {
          "description": "fairSharing defines the properties of the LocalQueue when\nparticipating in AdmissionFairSharing.  The values are only relevant\nif AdmissionFairSharing is enabled in the Kueue configuration.",
          "properties": {
            "weight": {
              "anyOf": [
                {
                  "type": "integer"
                },
                {
                  "type": "string"
                }
              ],
              "default": 1,
              "description": "weight gives a comparative advantage to this ClusterQueue\nor Cohort when competing for unused resources in the\nCohort.  The share is based on the dominant resource usage\nabove nominal quotas for each resource, divided by the\nweight.  Admission prioritizes scheduling workloads from\nClusterQueues and Cohorts with the lowest share and\npreempting workloads from the ClusterQueues and Cohorts\nwith the highest share.  A zero weight implies infinite\nshare value, meaning that this Node will always be at\ndisadvantage against other ClusterQueues and Cohorts.\nWhen not 0, Weight must be greater than 10^-9.",
              "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
              "x-kubernetes-int-or-string": true
            }
          },
          "type": "object",
          "additionalProperties": false
        },
        "stopPolicy": {
          "default": "None",
          "description": "stopPolicy - if set to a value different from None, the LocalQueue is considered Inactive,\nno new reservation being made.\n\nDepending on its value, its associated workloads will:\n\n- None - Workloads are admitted\n- HoldAndDrain - Admitted workloads are evicted and Reserving workloads will cancel the reservation.\n- Hold - Admitted workloads will run to completion and Reserving workloads will cancel the reservation.",
          "enum": [
            "None",
            "Hold",
            "HoldAndDrain"
          ],
          "type": "string"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "status": {
      "description": "status is the status of the LocalQueue.",
      "properties": {
        "admittedWorkloads": {
          "description": "admittedWorkloads is the number of workloads in this LocalQueue\nadmitted to a ClusterQueue and that haven't finished yet.",
          "format": "int32",
          "type": "integer"
        },
        "conditions": {
          "description": "conditions hold the latest available observations of the LocalQueue\ncurrent state.",
          "items": {
            "description": "Condition contains details for one aspect of the current state of this API Resource.",
            "properties": {
              "lastTransitionTime": {
                "description": "lastTransitionTime is the last time the condition transitioned from one status to another.\nThis should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.",
                "format": "date-time",
                "type": "string"
              },
              "message": {
                "description": "message is a human readable message indicating details about the transition.\nThis may be an empty string.",
                "maxLength": 32768,
                "type": "string"
              },
              "observedGeneration": {
                "description": "observedGeneration represents the .metadata.generation that the condition was set based upon.\nFor instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date\nwith respect to the current state of the instance.",
                "format": "int64",
                "minimum": 0,
                "type": "integer"
              },
              "reason": {
                "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition.\nProducers of specific condition types may define expected values and meanings for this field,\nand whether the values are considered a guaranteed API.\nThe value should be a CamelCase string.\nThis field may not be empty.",
                "maxLength": 1024,
                "minLength": 1,
                "pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$",
                "type": "string"
              },
              "status": {
                "description": "status of the condition, one of True, False, Unknown.",
                "enum": [
                  "True",
                  "False",
                  "Unknown"
                ],
                "type": "string"
              },
              "type": {
                "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
                "maxLength": 316,
                "pattern": "^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$",
                "type": "string"
              }
            },
            "required": [
              "lastTransitionTime",
              "message",
              "reason",
              "status",
              "type"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "type": "array",
          "x-kubernetes-list-map-keys": [
            "type"
          ],
          "x-kubernetes-list-type": "map"
        },
        "fairSharing": {
          "description": "fairSharing contains the information about the current status of fair sharing.",
          "properties": {
            "admissionFairSharingStatus": {
              "description": "admissionFairSharingStatus represents information relevant to the Admission Fair Sharing",
              "properties": {
                "consumedResources": {
                  "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": "consumedResources represents the aggregated usage of resources over time,\nwith decaying function applied.\nThe value is populated if usage consumption functionality is enabled in Kueue config.",
                  "type": "object"
                },
                "lastUpdate": {
                  "description": "lastUpdate is the time when share and consumed resources were updated.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "consumedResources",
                "lastUpdate"
              ],
              "type": "object",
              "additionalProperties": false
            },
            "weightedShare": {
              "description": "weightedShare represents the maximum of the ratios of usage\nabove nominal quota to the lendable resources in the\nCohort, among all the resources provided by the Node, and\ndivided by the weight.  If zero, it means that the usage of\nthe Node is below the nominal quota.  If the Node has a\nweight of zero and is borrowing, this will return\n9223372036854775807, the maximum possible share value.",
              "format": "int64",
              "type": "integer"
            }
          },
          "required": [
            "weightedShare"
          ],
          "type": "object",
          "additionalProperties": false
        },
        "flavorUsage": {
          "description": "flavorUsage are the used quotas, by flavor currently in use by the\nworkloads assigned to this LocalQueue.",
          "items": {
            "properties": {
              "name": {
                "description": "name of the flavor.",
                "maxLength": 253,
                "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
                "type": "string"
              },
              "resources": {
                "description": "resources lists the quota usage for the resources in this flavor.",
                "items": {
                  "properties": {
                    "name": {
                      "description": "name of the resource.",
                      "type": "string"
                    },
                    "total": {
                      "anyOf": [
                        {
                          "type": "integer"
                        },
                        {
                          "type": "string"
                        }
                      ],
                      "description": "total is the total quantity of used quota.",
                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                      "x-kubernetes-int-or-string": true
                    }
                  },
                  "required": [
                    "name"
                  ],
                  "type": "object",
                  "additionalProperties": false
                },
                "maxItems": 16,
                "type": "array",
                "x-kubernetes-list-map-keys": [
                  "name"
                ],
                "x-kubernetes-list-type": "map"
              }
            },
            "required": [
              "name",
              "resources"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "maxItems": 16,
          "type": "array",
          "x-kubernetes-list-map-keys": [
            "name"
          ],
          "x-kubernetes-list-type": "map"
        },
        "flavors": {
          "description": "flavors lists all currently available ResourceFlavors in specified ClusterQueue.\n\nDeprecated: Flavors is deprecated and marked for removal in v1beta2.",
          "items": {
            "description": "Deprecated: LocalQueueFlavorStatus is deprecated and marked for removal in v1beta2.",
            "properties": {
              "name": {
                "description": "name of the flavor.",
                "maxLength": 253,
                "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
                "type": "string"
              },
              "nodeLabels": {
                "additionalProperties": {
                  "type": "string"
                },
                "description": "nodeLabels are labels that associate the ResourceFlavor with Nodes that\nhave the same labels.",
                "maxProperties": 8,
                "type": "object",
                "x-kubernetes-map-type": "atomic"
              },
              "nodeTaints": {
                "description": "nodeTaints are taints that the nodes associated with this ResourceFlavor\nhave.",
                "items": {
                  "description": "The node this Taint is attached to has the \"effect\" on\nany pod that does not tolerate the Taint.",
                  "properties": {
                    "effect": {
                      "description": "Required. The effect of the taint on pods\nthat do not tolerate the taint.\nValid effects are NoSchedule, PreferNoSchedule and NoExecute.",
                      "type": "string"
                    },
                    "key": {
                      "description": "Required. The taint key to be applied to a node.",
                      "type": "string"
                    },
                    "timeAdded": {
                      "description": "TimeAdded represents the time at which the taint was added.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "value": {
                      "description": "The taint value corresponding to the taint key.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "effect",
                    "key"
                  ],
                  "type": "object",
                  "additionalProperties": false
                },
                "maxItems": 8,
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "resources": {
                "description": "resources used in the flavor.",
                "items": {
                  "description": "ResourceName is the name identifying various resources in a ResourceList.",
                  "type": "string"
                },
                "maxItems": 16,
                "type": "array",
                "x-kubernetes-list-type": "set"
              },
              "topology": {
                "description": "topology is the topology that associated with this ResourceFlavor.\n\nThis is a beta field and requires enabling the TopologyAwareScheduling\nfeature gate.",
                "properties": {
                  "levels": {
                    "description": "levels define the levels of topology.",
                    "items": {
                      "type": "string"
                    },
                    "maxItems": 16,
                    "minItems": 1,
                    "type": "array",
                    "x-kubernetes-list-type": "atomic"
                  },
                  "name": {
                    "description": "name is the name of the topology.",
                    "maxLength": 253,
                    "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
                    "type": "string"
                  }
                },
                "required": [
                  "levels",
                  "name"
                ],
                "type": "object",
                "additionalProperties": false
              }
            },
            "required": [
              "name"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "maxItems": 16,
          "type": "array",
          "x-kubernetes-list-map-keys": [
            "name"
          ],
          "x-kubernetes-list-type": "map"
        },
        "flavorsReservation": {
          "description": "flavorsReservation are the reserved quotas, by flavor currently in use by the\nworkloads assigned to this LocalQueue.",
          "items": {
            "properties": {
              "name": {
                "description": "name of the flavor.",
                "maxLength": 253,
                "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
                "type": "string"
              },
              "resources": {
                "description": "resources lists the quota usage for the resources in this flavor.",
                "items": {
                  "properties": {
                    "name": {
                      "description": "name of the resource.",
                      "type": "string"
                    },
                    "total": {
                      "anyOf": [
                        {
                          "type": "integer"
                        },
                        {
                          "type": "string"
                        }
                      ],
                      "description": "total is the total quantity of used quota.",
                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                      "x-kubernetes-int-or-string": true
                    }
                  },
                  "required": [
                    "name"
                  ],
                  "type": "object",
                  "additionalProperties": false
                },
                "maxItems": 16,
                "type": "array",
                "x-kubernetes-list-map-keys": [
                  "name"
                ],
                "x-kubernetes-list-type": "map"
              }
            },
            "required": [
              "name",
              "resources"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "maxItems": 16,
          "type": "array",
          "x-kubernetes-list-map-keys": [
            "name"
          ],
          "x-kubernetes-list-type": "map"
        },
        "pendingWorkloads": {
          "description": "pendingWorkloads is the number of Workloads in the LocalQueue not yet admitted to a ClusterQueue",
          "format": "int32",
          "type": "integer"
        },
        "reservingWorkloads": {
          "description": "reservingWorkloads is the number of workloads in this LocalQueue\nreserving quota in a ClusterQueue and that haven't finished yet.",
          "format": "int32",
          "type": "integer"
        }
      },
      "type": "object",
      "additionalProperties": false
    }
  },
  "type": "object"
}
