Skip to content

Commit 491763e

Browse files
committed
Changed default from 1 to 0; fixed typo
1 parent b38dad6 commit 491763e

File tree

1 file changed

+3
-3
lines changed
  • keps/sig-api-machinery/1040-priority-and-fairness

1 file changed

+3
-3
lines changed

keps/sig-api-machinery/1040-priority-and-fairness/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -740,14 +740,14 @@ the dispatching for non-exempt priority levels.
740740

741741
At the same time, the relevant new datatype was added. It is shown
742742
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
744744
is rolled into existing clusters; authorized administrators can choose
745745
to set it higher.
746746

747747
```go
748748
// ExemptPriorityLevelConfiguration describes the configurable aspects
749749
// 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
751751
// here can be modified by authorized users, unlike the rest of the `spec`.
752752
type ExemptPriorityLevelConfiguration struct {
753753
// `nominalConcurrencyShares` (NCS) contributes to the computation of the
@@ -763,7 +763,7 @@ type ExemptPriorityLevelConfiguration struct {
763763
//
764764
// Bigger numbers mean a larger nominal concurrency limit,
765765
// 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.
767767
// +optional
768768
NominalConcurrencyShares int32
769769

0 commit comments

Comments
 (0)