@@ -610,7 +610,7 @@ next pending job is admitted.
610610
611611### Borrowing and Preemption
612612
613- Alice will now submit 4 normal jobs. Again, with borrowing three of these jobs
613+ Alice will now submit 4 normal jobs. Again, with borrowing, three of these jobs
614614will be able to run immediately and the 4th job will be queued.
615615
616616``` sh
@@ -620,24 +620,25 @@ kubectl create -f ./setup.KubeConEU25/sample-jobs/normal.yaml -n blue --as alice
620620kubectl create -f ./setup.KubeConEU25/sample-jobs/normal.yaml -n blue --as alice
621621```
622622
623- Alice can use priorities to ensure important jobs run quickly.
623+ Alice can use priorities to ensure her important jobs run quickly.
624624
625625``` sh
626626kubectl create -f ./setup.KubeConEU25/sample-jobs/important.yaml -n blue --as alice
627627```
628628
629629One of Alice's normal jobs is automatically suspended and put back on the queue of
630- waiting jobs to make resource available for her high priority job.
630+ waiting jobs to make its resource available for her high priority job.
631631
632- Bob on the red team arrives at work and submits two jobs.
632+ Finally Bob on the red team arrives at work and submits two jobs.
633633
634634``` sh
635635kubectl create -f ./setup.KubeConEU25/sample-jobs/normal.yaml -n red --as bob
636636kubectl create -f ./setup.KubeConEU25/sample-jobs/normal.yaml -n red --as bob
637637```
638638
639- To allow Bob to utilize his quota, which Alice's jobs had been borrowing, one of Alice's
640- jobs is quickly preempted returned it to the queue of pending jobs.
639+ Kueue ensures that Bob has immediate access to his team's allocated quota
640+ by evicting borrowing jobs. One of Alice's running
641+ jobs is quickly suspended and returned to her team's queue of pending jobs.
641642
642643### Fault Tolerance
643644
0 commit comments