sigs.k8s.io/kueue@v0.6.2/CHANGELOG/CHANGELOG-0.2.md (about)

     1  ## v0.2.0
     2  
     3  Changes since `v0.1.0`:
     4  
     5  ### Features
     6  
     7  - Upgrade the API version from v1alpha1 to v1alpha2. v1alpha1 is no longer supported.
     8    v1alpha2 includes the following changes:
     9    - Rename Queue to LocalQueue.
    10    - Remove ResourceFlavor.labels. Use ResourceFlavor.metadata.labels instead.
    11  - Add webhooks to validate and to add defaults to all kueue APIs.
    12  - Add internal cert manager to serve webhooks with TLS.
    13  - Use finalizers to prevent ClusterQueues and ResourceFlavors in use from being
    14    deleted prematurely.
    15  - Support [codependent resources](https://kueue.sigs.k8s.io/docs/concepts/cluster_queue/#codependent-resources)
    16    by assigning the same flavor to codependent resources in a pod set.
    17  - Support [pod overhead](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/)
    18    in Workload pod sets.
    19  - Set requests to limits if requests are not set in a Workload pod set,
    20    matching [internal defaulting for k8s Pods](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources).
    21  - Add [prometheus metrics](https://kueue.sigs.k8s.io/docs/reference/metrics) to monitor health of
    22    the system and the status of ClusterQueues.
    23  - Use Server Side Apply for Workload admission to reduce API conflicts.
    24  
    25  ### Bug fixes
    26  
    27  - Fix bug that caused Workloads that don't match the ClusterQueue's
    28    namespaceSelector to block other Workloads in StrictFIFO ClusterQueues.
    29  - Fix the number of pending workloads in BestEffortFIFO ClusterQueues status.
    30  - Fix a bug in BestEffortFIFO ClusterQueues where a workload might not be
    31    retried after a transient error.
    32  - Fix requeuing an out-of-date workload when failed to admit it.
    33  - Fix a bug in BestEffortFIFO ClusterQueues where inadmissible workloads
    34    were not removed from the ClusterQueue when removing the corresponding Queue.