File tree Expand file tree Collapse file tree 3 files changed +73
-31
lines changed Expand file tree Collapse file tree 3 files changed +73
-31
lines changed Original file line number Diff line number Diff line change @@ -257,8 +257,9 @@ spec:
257
257
type : array
258
258
type : object
259
259
weight :
260
- format : int32
261
260
type : integer
261
+ minimum : 1
262
+ maximum : 100
262
263
required :
263
264
- preference
264
265
- weight
@@ -349,8 +350,9 @@ spec:
349
350
- topologyKey
350
351
type : object
351
352
weight :
352
- format : int32
353
353
type : integer
354
+ minimum : 1
355
+ maximum : 100
354
356
required :
355
357
- podAffinityTerm
356
358
- weight
@@ -437,8 +439,9 @@ spec:
437
439
- topologyKey
438
440
type : object
439
441
weight :
440
- format : int32
441
442
type : integer
443
+ minimum : 1
444
+ maximum : 100
442
445
required :
443
446
- podAffinityTerm
444
447
- weight
@@ -593,8 +596,9 @@ spec:
593
596
type : array
594
597
type : object
595
598
weight :
596
- format : int32
597
599
type : integer
600
+ minimum : 1
601
+ maximum : 100
598
602
required :
599
603
- preference
600
604
- weight
@@ -685,8 +689,9 @@ spec:
685
689
- topologyKey
686
690
type : object
687
691
weight :
688
- format : int32
689
692
type : integer
693
+ minimum : 1
694
+ maximum : 100
690
695
required :
691
696
- podAffinityTerm
692
697
- weight
@@ -773,8 +778,9 @@ spec:
773
778
- topologyKey
774
779
type : object
775
780
weight :
776
- format : int32
777
781
type : integer
782
+ minimum : 1
783
+ maximum : 100
778
784
required :
779
785
- podAffinityTerm
780
786
- weight
@@ -876,12 +882,25 @@ spec:
876
882
storage : true
877
883
subresources :
878
884
status : {}
885
+ scale :
886
+ # specReplicasPath defines the JSONPath inside of a custom resource that corresponds to Scale.Spec.Replicas.
887
+ specReplicasPath : .spec.replicas
888
+ # statusReplicasPath defines the JSONPath inside of a custom resource that corresponds to Scale.Status.Replicas.
889
+ statusReplicasPath : .status.replicas
890
+ # labelSelectorPath defines the JSONPath inside of a custom resource that corresponds to Scale.Status.Selector.
891
+ labelSelectorPath : .status.labelSelector
879
892
schema :
880
893
openAPIV3Schema :
881
894
type : object
882
895
properties :
883
896
status :
884
897
properties :
898
+ replicas :
899
+ type : integer
900
+ minimum : 0
901
+ maximum : 10
902
+ labelSelector :
903
+ type : string
885
904
conditions :
886
905
items :
887
906
properties :
@@ -895,7 +914,6 @@ spec:
895
914
maxLength : 32768
896
915
type : string
897
916
observedGeneration :
898
- format : int64
899
917
minimum : 0
900
918
type : integer
901
919
reason :
@@ -1024,12 +1042,18 @@ spec:
1024
1042
minRX :
1025
1043
type : integer
1026
1044
default : 1000
1045
+ minimum : 1
1046
+ maximum : 3600000
1027
1047
minTX :
1028
1048
type : integer
1029
1049
default : 1000
1050
+ minimum : 1
1051
+ maximum : 3600000
1030
1052
multiplier :
1031
1053
type : integer
1032
1054
default : 3
1055
+ minimum : 1
1056
+ maximum : 3600000
1033
1057
selectors :
1034
1058
type : array
1035
1059
items :
@@ -2595,6 +2619,8 @@ spec:
2595
2619
type : boolean
2596
2620
enableMulticastSnoop :
2597
2621
type : boolean
2622
+ enableExternalLBAddress :
2623
+ type : boolean
2598
2624
routeTable :
2599
2625
type : string
2600
2626
namespaceSelectors :
Original file line number Diff line number Diff line change @@ -257,8 +257,9 @@ spec:
257
257
type : array
258
258
type : object
259
259
weight :
260
- format : int32
261
260
type : integer
261
+ minimum : 1
262
+ maximum : 100
262
263
required :
263
264
- preference
264
265
- weight
@@ -349,8 +350,9 @@ spec:
349
350
- topologyKey
350
351
type : object
351
352
weight :
352
- format : int32
353
353
type : integer
354
+ minimum : 1
355
+ maximum : 100
354
356
required :
355
357
- podAffinityTerm
356
358
- weight
@@ -437,8 +439,9 @@ spec:
437
439
- topologyKey
438
440
type : object
439
441
weight :
440
- format : int32
441
442
type : integer
443
+ minimum : 1
444
+ maximum : 100
442
445
required :
443
446
- podAffinityTerm
444
447
- weight
@@ -593,8 +596,9 @@ spec:
593
596
type : array
594
597
type : object
595
598
weight :
596
- format : int32
597
599
type : integer
600
+ minimum : 1
601
+ maximum : 100
598
602
required :
599
603
- preference
600
604
- weight
@@ -685,8 +689,9 @@ spec:
685
689
- topologyKey
686
690
type : object
687
691
weight :
688
- format : int32
689
692
type : integer
693
+ minimum : 1
694
+ maximum : 100
690
695
required :
691
696
- podAffinityTerm
692
697
- weight
@@ -773,8 +778,9 @@ spec:
773
778
- topologyKey
774
779
type : object
775
780
weight :
776
- format : int32
777
781
type : integer
782
+ minimum : 1
783
+ maximum : 100
778
784
required :
779
785
- podAffinityTerm
780
786
- weight
@@ -891,7 +897,8 @@ spec:
891
897
properties :
892
898
replicas :
893
899
type : integer
894
- format : int32
900
+ minimum : 0
901
+ maximum : 10
895
902
labelSelector :
896
903
type : string
897
904
conditions :
@@ -907,7 +914,6 @@ spec:
907
914
maxLength : 32768
908
915
type : string
909
916
observedGeneration :
910
- format : int64
911
917
minimum : 0
912
918
type : integer
913
919
reason :
@@ -988,7 +994,6 @@ spec:
988
994
properties :
989
995
replicas :
990
996
type : integer
991
- format : int32
992
997
default : 1
993
998
minimum : 0
994
999
maximum : 10
@@ -1036,16 +1041,19 @@ spec:
1036
1041
default : false
1037
1042
minRX :
1038
1043
type : integer
1039
- format : int32
1040
1044
default : 1000
1045
+ minimum : 1
1046
+ maximum : 3600000
1041
1047
minTX :
1042
1048
type : integer
1043
- format : int32
1044
1049
default : 1000
1050
+ minimum : 1
1051
+ maximum : 3600000
1045
1052
multiplier :
1046
1053
type : integer
1047
- format : int32
1048
1054
default : 3
1055
+ minimum : 1
1056
+ maximum : 3600000
1049
1057
selectors :
1050
1058
type : array
1051
1059
items :
Original file line number Diff line number Diff line change @@ -498,8 +498,9 @@ spec:
498
498
type: array
499
499
type: object
500
500
weight:
501
- format: int32
502
501
type: integer
502
+ minimum: 1
503
+ maximum: 100
503
504
required:
504
505
- preference
505
506
- weight
@@ -590,8 +591,9 @@ spec:
590
591
- topologyKey
591
592
type: object
592
593
weight:
593
- format: int32
594
594
type: integer
595
+ minimum: 1
596
+ maximum: 100
595
597
required:
596
598
- podAffinityTerm
597
599
- weight
@@ -678,8 +680,9 @@ spec:
678
680
- topologyKey
679
681
type: object
680
682
weight:
681
- format: int32
682
683
type: integer
684
+ minimum: 1
685
+ maximum: 100
683
686
required:
684
687
- podAffinityTerm
685
688
- weight
@@ -834,8 +837,9 @@ spec:
834
837
type: array
835
838
type: object
836
839
weight:
837
- format: int32
838
840
type: integer
841
+ minimum: 1
842
+ maximum: 100
839
843
required:
840
844
- preference
841
845
- weight
@@ -926,8 +930,9 @@ spec:
926
930
- topologyKey
927
931
type: object
928
932
weight:
929
- format: int32
930
933
type: integer
934
+ minimum: 1
935
+ maximum: 100
931
936
required:
932
937
- podAffinityTerm
933
938
- weight
@@ -1014,8 +1019,9 @@ spec:
1014
1019
- topologyKey
1015
1020
type: object
1016
1021
weight:
1017
- format: int32
1018
1022
type: integer
1023
+ minimum: 1
1024
+ maximum: 100
1019
1025
required:
1020
1026
- podAffinityTerm
1021
1027
- weight
@@ -1132,7 +1138,8 @@ spec:
1132
1138
properties:
1133
1139
replicas:
1134
1140
type: integer
1135
- format: int32
1141
+ minimum: 0
1142
+ maximum: 10
1136
1143
labelSelector:
1137
1144
type: string
1138
1145
conditions:
@@ -1148,7 +1155,6 @@ spec:
1148
1155
maxLength: 32768
1149
1156
type: string
1150
1157
observedGeneration:
1151
- format: int64
1152
1158
minimum: 0
1153
1159
type: integer
1154
1160
reason:
@@ -1229,7 +1235,6 @@ spec:
1229
1235
properties:
1230
1236
replicas:
1231
1237
type: integer
1232
- format: int32
1233
1238
default: 1
1234
1239
minimum: 0
1235
1240
maximum: 10
@@ -1277,16 +1282,19 @@ spec:
1277
1282
default: false
1278
1283
minRX:
1279
1284
type: integer
1280
- format: int32
1281
1285
default: 1000
1286
+ minimum: 1
1287
+ maximum: 3600000
1282
1288
minTX:
1283
1289
type: integer
1284
- format: int32
1285
1290
default: 1000
1291
+ minimum: 1
1292
+ maximum: 3600000
1286
1293
multiplier:
1287
1294
type: integer
1288
- format: int32
1289
1295
default: 3
1296
+ minimum: 1
1297
+ maximum: 3600000
1290
1298
selectors:
1291
1299
type: array
1292
1300
items:
You can’t perform that action at this time.
0 commit comments