File tree 1 file changed +3
-3
lines changed
keps/sig-api-machinery/1040-priority-and-fairness
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -740,14 +740,14 @@ the dispatching for non-exempt priority levels.
740
740
741
741
At the same time, the relevant new datatype was added. It is shown
742
742
below. The default number of nominal concurrency shares is set to the
743
- minimal value (i.e., 1 ) so as to minimize disruption as this feature
743
+ minimal value (i.e., 0 ) so as to minimize disruption as this feature
744
744
is rolled into existing clusters; authorized administrators can choose
745
745
to set it higher.
746
746
747
747
``` go
748
748
// ExemptPriorityLevelConfiguration describes the configurable aspects
749
749
// of the handling of exempt requests.
750
- // In the mandatory exemp configuration object the values in the fields
750
+ // In the mandatory exempt configuration object the values in the fields
751
751
// here can be modified by authorized users, unlike the rest of the `spec`.
752
752
type ExemptPriorityLevelConfiguration struct {
753
753
// `nominalConcurrencyShares` (NCS) contributes to the computation of the
@@ -763,7 +763,7 @@ type ExemptPriorityLevelConfiguration struct {
763
763
//
764
764
// Bigger numbers mean a larger nominal concurrency limit,
765
765
// at the expense of every other Limited priority level.
766
- // This field has a default value of 1 .
766
+ // This field has a default value of zero .
767
767
// +optional
768
768
NominalConcurrencyShares int32
769
769
You can’t perform that action at this time.
0 commit comments