in pkg/controller/core/localqueue_controller.go [85:109]
func (r *LocalQueueReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
var queueObj kueue.LocalQueue
if err := r.client.Get(ctx, req.NamespacedName, &queueObj); err != nil {
// we'll ignore not-found errors, since there is nothing to do.
return ctrl.Result{}, client.IgnoreNotFound(err)
}
log := ctrl.LoggerFrom(ctx).WithValues("localQueue", klog.KObj(&queueObj))
ctx = ctrl.LoggerInto(ctx, log)
log.V(2).Info("Reconciling LocalQueue")
var cq kueue.ClusterQueue
err := r.client.Get(ctx, client.ObjectKey{Name: string(queueObj.Spec.ClusterQueue)}, &cq)
if err != nil {
if apierrors.IsNotFound(err) {
err = r.UpdateStatusIfChanged(ctx, &queueObj, metav1.ConditionFalse, "ClusterQueueDoesNotExist", queueIsInactiveMsg)
}
return ctrl.Result{}, client.IgnoreNotFound(err)
}
if meta.IsStatusConditionTrue(cq.Status.Conditions, kueue.ClusterQueueActive) {
err = r.UpdateStatusIfChanged(ctx, &queueObj, metav1.ConditionTrue, "Ready", "Can submit new workloads to clusterQueue")
return ctrl.Result{}, client.IgnoreNotFound(err)
}
err = r.UpdateStatusIfChanged(ctx, &queueObj, metav1.ConditionFalse, "ClusterQueueIsInactive", queueIsInactiveMsg)
return ctrl.Result{}, client.IgnoreNotFound(err)
}