File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/cws/k8s/scheduler/model Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
package cws .k8s .scheduler .model ;
2
2
3
+ import com .fasterxml .jackson .databind .JsonNode ;
3
4
import lombok .AccessLevel ;
4
5
import lombok .NoArgsConstructor ;
5
6
import lombok .ToString ;
6
7
7
8
import java .util .List ;
9
+ import java .util .Map ;
8
10
9
11
@ ToString
10
12
@ NoArgsConstructor (access = AccessLevel .PRIVATE ,force = true )
@@ -17,10 +19,7 @@ public class SchedulerConfig {
17
19
public final String namespace ;
18
20
public final String costFunction ;
19
21
public final String strategy ;
20
-
21
- public final Integer maxCopyTasksPerNode ;
22
-
23
- public final Integer maxWaitingCopyTasksPerNode ;
22
+ public final Map <String , JsonNode > additional ;
24
23
25
24
@ ToString
26
25
@ NoArgsConstructor (access = AccessLevel .PRIVATE ,force = true )
You can’t perform that action at this time.
0 commit comments