Skip to content

Commit 4f3094e

Browse files
authored
Merge pull request #736 from researchapps/fix-anyone-typo
docs: anyone should be any
2 parents 1214bff + a1d81a2 commit 4f3094e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

apis/scheduling/v1alpha1/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ type PodGroup struct {
145145
type PodGroupSpec struct {
146146
// MinMember defines the minimal number of members/tasks to run the pod group;
147147
// if there's not enough resources to start all tasks, the scheduler
148-
// will not start anyone.
148+
// will not start any.
149149
MinMember int32 `json:"minMember,omitempty"`
150150

151151
// MinResources defines the minimal resource of members/tasks to run the pod group;
152152
// if there's not enough resources to start all tasks, the scheduler
153-
// will not start anyone.
153+
// will not start any.
154154
MinResources v1.ResourceList `json:"minResources,omitempty"`
155155

156156
// ScheduleTimeoutSeconds defines the maximal time of members/tasks to wait before run the pod group;

config/crd/bases/scheduling.x-k8s.io_podgroups.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
minMember:
6969
description: MinMember defines the minimal number of members/tasks
7070
to run the pod group; if there's not enough resources to start all
71-
tasks, the scheduler will not start anyone.
71+
tasks, the scheduler will not start any.
7272
format: int32
7373
type: integer
7474
minResources:
@@ -80,7 +80,7 @@ spec:
8080
x-kubernetes-int-or-string: true
8181
description: MinResources defines the minimal resource of members/tasks
8282
to run the pod group; if there's not enough resources to start all
83-
tasks, the scheduler will not start anyone.
83+
tasks, the scheduler will not start any.
8484
type: object
8585
scheduleTimeoutSeconds:
8686
description: ScheduleTimeoutSeconds defines the maximal time of members/tasks

kep/42-podgroup-coscheduling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ We define a CRD name PodGroup to help schedule, its definition is as follows:
4141
type PodGroupSpec struct {
4242
// MinMember defines the minimal number of members/tasks to run the pod group;
4343
// if there's not enough resources to start all tasks, the scheduler
44-
// will not start anyone.
44+
// will not start any.
4545
MinMember uint32 `json:"minMember"`
4646

4747
// MinResources defines the minimal resource of members/tasks to run the pod group;
4848
// if there's not enough resources to start all tasks, the scheduler
49-
// will not start anyone.
49+
// will not start any.
5050
MinResources *v1.ResourceList `json:"minResources,omitempty"`
5151

5252
// ScheduleTimeoutSeconds defines the maximal time of members/tasks to wait before run the pod group;

manifests/coscheduling/crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
minMember:
6969
description: MinMember defines the minimal number of members/tasks
7070
to run the pod group; if there's not enough resources to start all
71-
tasks, the scheduler will not start anyone.
71+
tasks, the scheduler will not start any.
7272
format: int32
7373
type: integer
7474
minResources:
@@ -80,7 +80,7 @@ spec:
8080
x-kubernetes-int-or-string: true
8181
description: MinResources defines the minimal resource of members/tasks
8282
to run the pod group; if there's not enough resources to start all
83-
tasks, the scheduler will not start anyone.
83+
tasks, the scheduler will not start any.
8484
type: object
8585
scheduleTimeoutSeconds:
8686
description: ScheduleTimeoutSeconds defines the maximal time of members/tasks

site/content/en/docs/kep/42-podgroup-coscheduling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ We define a CRD name PodGroup to help schedule, its definition is as follows:
4545
type PodGroupSpec struct {
4646
// MinMember defines the minimal number of members/tasks to run the pod group;
4747
// if there's not enough resources to start all tasks, the scheduler
48-
// will not start anyone.
48+
// will not start any.
4949
MinMember uint32 `json:"minMember"`
5050

5151
// MinResources defines the minimal resource of members/tasks to run the pod group;
5252
// if there's not enough resources to start all tasks, the scheduler
53-
// will not start anyone.
53+
// will not start any.
5454
MinResources *v1.ResourceList `json:"minResources,omitempty"`
5555

5656
// ScheduleTimeoutSeconds defines the maximal time of members/tasks to wait before run the pod group;

0 commit comments

Comments
 (0)