@agent-relay/factory 0.1.69 → 0.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/fleet.d.ts +31 -0
- package/dist/cli/fleet.d.ts.map +1 -1
- package/dist/cli/fleet.js +62 -3
- package/dist/cli/fleet.js.map +1 -1
- package/dist/config/schema.d.ts +84 -40
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +14 -0
- package/dist/config/schema.js.map +1 -1
- package/dist/environments/connection-registry.d.ts +20 -20
- package/dist/fleet/create-fleet.d.ts +8 -1
- package/dist/fleet/create-fleet.d.ts.map +1 -1
- package/dist/fleet/create-fleet.js +3 -1
- package/dist/fleet/create-fleet.js.map +1 -1
- package/dist/fleet/relay-fleet-client.d.ts +29 -0
- package/dist/fleet/relay-fleet-client.d.ts.map +1 -1
- package/dist/fleet/relay-fleet-client.js +82 -19
- package/dist/fleet/relay-fleet-client.js.map +1 -1
- package/dist/mount/relayfile-cloud-mount-client.d.ts +10 -2
- package/dist/mount/relayfile-cloud-mount-client.d.ts.map +1 -1
- package/dist/mount/relayfile-cloud-mount-client.js +90 -14
- package/dist/mount/relayfile-cloud-mount-client.js.map +1 -1
- package/dist/mount/relayfile-operation-timeout.d.ts +97 -0
- package/dist/mount/relayfile-operation-timeout.d.ts.map +1 -0
- package/dist/mount/relayfile-operation-timeout.js +149 -0
- package/dist/mount/relayfile-operation-timeout.js.map +1 -0
- package/dist/orchestrator/factory.d.ts.map +1 -1
- package/dist/orchestrator/factory.js +163 -18
- package/dist/orchestrator/factory.js.map +1 -1
- package/dist/types.d.ts +45 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/config/schema.d.ts
CHANGED
|
@@ -63,6 +63,18 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
63
63
|
reconcileIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
64
64
|
/** Bounds one sweep so a hung dependency call cannot stop the loop forever. */
|
|
65
65
|
reconcileTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
66
|
+
/**
|
|
67
|
+
* Bounds ONE relayfile call (#351).
|
|
68
|
+
*
|
|
69
|
+
* Distinct from `reconcileTimeoutMs`, and deliberately far tighter. The
|
|
70
|
+
* cold-mirror cost that forces the sweep deadline up to 90 minutes is spread
|
|
71
|
+
* across thousands of calls; no single call has ever needed minutes. So a
|
|
72
|
+
* per-call bound catches a wedge in five minutes instead of ninety without
|
|
73
|
+
* re-creating the crash-loop risk described above — and unlike the sweep
|
|
74
|
+
* deadline it actually unwinds the pass, releasing the discovery lease so the
|
|
75
|
+
* next cycle starts clean rather than coalescing onto the hung one.
|
|
76
|
+
*/
|
|
77
|
+
relayfileOperationTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
66
78
|
}, "strip", z.ZodTypeAny, {
|
|
67
79
|
transport: "subscribe-and-poll" | "subscribe" | "poll";
|
|
68
80
|
pollIntervalMs: number;
|
|
@@ -70,6 +82,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
70
82
|
replaySkewMarginMs: number;
|
|
71
83
|
reconcileIntervalMs: number;
|
|
72
84
|
reconcileTimeoutMs: number;
|
|
85
|
+
relayfileOperationTimeoutMs: number;
|
|
73
86
|
}, {
|
|
74
87
|
transport?: "subscribe-and-poll" | "subscribe" | "poll" | undefined;
|
|
75
88
|
pollIntervalMs?: number | undefined;
|
|
@@ -77,6 +90,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
77
90
|
replaySkewMarginMs?: number | undefined;
|
|
78
91
|
reconcileIntervalMs?: number | undefined;
|
|
79
92
|
reconcileTimeoutMs?: number | undefined;
|
|
93
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
80
94
|
}>, {
|
|
81
95
|
transport: "subscribe-and-poll" | "subscribe" | "poll";
|
|
82
96
|
pollIntervalMs: number;
|
|
@@ -84,6 +98,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
84
98
|
replaySkewMarginMs: number;
|
|
85
99
|
reconcileIntervalMs: number;
|
|
86
100
|
reconcileTimeoutMs: number;
|
|
101
|
+
relayfileOperationTimeoutMs: number;
|
|
87
102
|
}, {
|
|
88
103
|
transport?: "subscribe-and-poll" | "subscribe" | "poll" | undefined;
|
|
89
104
|
pollIntervalMs?: number | undefined;
|
|
@@ -91,6 +106,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
91
106
|
replaySkewMarginMs?: number | undefined;
|
|
92
107
|
reconcileIntervalMs?: number | undefined;
|
|
93
108
|
reconcileTimeoutMs?: number | undefined;
|
|
109
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
94
110
|
}>>;
|
|
95
111
|
dispatch: z.ZodDefault<z.ZodObject<{
|
|
96
112
|
errorCooldownMs: z.ZodDefault<z.ZodNumber>;
|
|
@@ -693,15 +709,15 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
693
709
|
effect: z.ZodOptional<z.ZodEnum<["NoSchedule", "PreferNoSchedule", "NoExecute"]>>;
|
|
694
710
|
tolerationSeconds: z.ZodOptional<z.ZodNumber>;
|
|
695
711
|
}, "strict", z.ZodTypeAny, {
|
|
712
|
+
value?: string | undefined;
|
|
696
713
|
key?: string | undefined;
|
|
697
714
|
operator?: "Exists" | "Equal" | undefined;
|
|
698
|
-
value?: string | undefined;
|
|
699
715
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
700
716
|
tolerationSeconds?: number | undefined;
|
|
701
717
|
}, {
|
|
718
|
+
value?: string | undefined;
|
|
702
719
|
key?: string | undefined;
|
|
703
720
|
operator?: "Exists" | "Equal" | undefined;
|
|
704
|
-
value?: string | undefined;
|
|
705
721
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
706
722
|
tolerationSeconds?: number | undefined;
|
|
707
723
|
}>, "many">>;
|
|
@@ -720,9 +736,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
720
736
|
allowedClusterScopedKinds: string[];
|
|
721
737
|
nodeSelector: Record<string, string>;
|
|
722
738
|
tolerations: {
|
|
739
|
+
value?: string | undefined;
|
|
723
740
|
key?: string | undefined;
|
|
724
741
|
operator?: "Exists" | "Equal" | undefined;
|
|
725
|
-
value?: string | undefined;
|
|
726
742
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
727
743
|
tolerationSeconds?: number | undefined;
|
|
728
744
|
}[];
|
|
@@ -743,9 +759,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
743
759
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
744
760
|
nodeSelector?: Record<string, string> | undefined;
|
|
745
761
|
tolerations?: {
|
|
762
|
+
value?: string | undefined;
|
|
746
763
|
key?: string | undefined;
|
|
747
764
|
operator?: "Exists" | "Equal" | undefined;
|
|
748
|
-
value?: string | undefined;
|
|
749
765
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
750
766
|
tolerationSeconds?: number | undefined;
|
|
751
767
|
}[] | undefined;
|
|
@@ -764,9 +780,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
764
780
|
allowedClusterScopedKinds: string[];
|
|
765
781
|
nodeSelector: Record<string, string>;
|
|
766
782
|
tolerations: {
|
|
783
|
+
value?: string | undefined;
|
|
767
784
|
key?: string | undefined;
|
|
768
785
|
operator?: "Exists" | "Equal" | undefined;
|
|
769
|
-
value?: string | undefined;
|
|
770
786
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
771
787
|
tolerationSeconds?: number | undefined;
|
|
772
788
|
}[];
|
|
@@ -787,9 +803,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
787
803
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
788
804
|
nodeSelector?: Record<string, string> | undefined;
|
|
789
805
|
tolerations?: {
|
|
806
|
+
value?: string | undefined;
|
|
790
807
|
key?: string | undefined;
|
|
791
808
|
operator?: "Exists" | "Equal" | undefined;
|
|
792
|
-
value?: string | undefined;
|
|
793
809
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
794
810
|
tolerationSeconds?: number | undefined;
|
|
795
811
|
}[] | undefined;
|
|
@@ -808,9 +824,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
808
824
|
allowedClusterScopedKinds: string[];
|
|
809
825
|
nodeSelector: Record<string, string>;
|
|
810
826
|
tolerations: {
|
|
827
|
+
value?: string | undefined;
|
|
811
828
|
key?: string | undefined;
|
|
812
829
|
operator?: "Exists" | "Equal" | undefined;
|
|
813
|
-
value?: string | undefined;
|
|
814
830
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
815
831
|
tolerationSeconds?: number | undefined;
|
|
816
832
|
}[];
|
|
@@ -831,9 +847,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
831
847
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
832
848
|
nodeSelector?: Record<string, string> | undefined;
|
|
833
849
|
tolerations?: {
|
|
850
|
+
value?: string | undefined;
|
|
834
851
|
key?: string | undefined;
|
|
835
852
|
operator?: "Exists" | "Equal" | undefined;
|
|
836
|
-
value?: string | undefined;
|
|
837
853
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
838
854
|
tolerationSeconds?: number | undefined;
|
|
839
855
|
}[] | undefined;
|
|
@@ -890,9 +906,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
890
906
|
allowedClusterScopedKinds: string[];
|
|
891
907
|
nodeSelector: Record<string, string>;
|
|
892
908
|
tolerations: {
|
|
909
|
+
value?: string | undefined;
|
|
893
910
|
key?: string | undefined;
|
|
894
911
|
operator?: "Exists" | "Equal" | undefined;
|
|
895
|
-
value?: string | undefined;
|
|
896
912
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
897
913
|
tolerationSeconds?: number | undefined;
|
|
898
914
|
}[];
|
|
@@ -925,9 +941,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
925
941
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
926
942
|
nodeSelector?: Record<string, string> | undefined;
|
|
927
943
|
tolerations?: {
|
|
944
|
+
value?: string | undefined;
|
|
928
945
|
key?: string | undefined;
|
|
929
946
|
operator?: "Exists" | "Equal" | undefined;
|
|
930
|
-
value?: string | undefined;
|
|
931
947
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
932
948
|
tolerationSeconds?: number | undefined;
|
|
933
949
|
}[] | undefined;
|
|
@@ -958,9 +974,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
958
974
|
allowedClusterScopedKinds: string[];
|
|
959
975
|
nodeSelector: Record<string, string>;
|
|
960
976
|
tolerations: {
|
|
977
|
+
value?: string | undefined;
|
|
961
978
|
key?: string | undefined;
|
|
962
979
|
operator?: "Exists" | "Equal" | undefined;
|
|
963
|
-
value?: string | undefined;
|
|
964
980
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
965
981
|
tolerationSeconds?: number | undefined;
|
|
966
982
|
}[];
|
|
@@ -993,9 +1009,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
993
1009
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
994
1010
|
nodeSelector?: Record<string, string> | undefined;
|
|
995
1011
|
tolerations?: {
|
|
1012
|
+
value?: string | undefined;
|
|
996
1013
|
key?: string | undefined;
|
|
997
1014
|
operator?: "Exists" | "Equal" | undefined;
|
|
998
|
-
value?: string | undefined;
|
|
999
1015
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1000
1016
|
tolerationSeconds?: number | undefined;
|
|
1001
1017
|
}[] | undefined;
|
|
@@ -1028,9 +1044,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1028
1044
|
allowedClusterScopedKinds: string[];
|
|
1029
1045
|
nodeSelector: Record<string, string>;
|
|
1030
1046
|
tolerations: {
|
|
1047
|
+
value?: string | undefined;
|
|
1031
1048
|
key?: string | undefined;
|
|
1032
1049
|
operator?: "Exists" | "Equal" | undefined;
|
|
1033
|
-
value?: string | undefined;
|
|
1034
1050
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1035
1051
|
tolerationSeconds?: number | undefined;
|
|
1036
1052
|
}[];
|
|
@@ -1065,9 +1081,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1065
1081
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
1066
1082
|
nodeSelector?: Record<string, string> | undefined;
|
|
1067
1083
|
tolerations?: {
|
|
1084
|
+
value?: string | undefined;
|
|
1068
1085
|
key?: string | undefined;
|
|
1069
1086
|
operator?: "Exists" | "Equal" | undefined;
|
|
1070
|
-
value?: string | undefined;
|
|
1071
1087
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1072
1088
|
tolerationSeconds?: number | undefined;
|
|
1073
1089
|
}[] | undefined;
|
|
@@ -1130,6 +1146,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1130
1146
|
replaySkewMarginMs: number;
|
|
1131
1147
|
reconcileIntervalMs: number;
|
|
1132
1148
|
reconcileTimeoutMs: number;
|
|
1149
|
+
relayfileOperationTimeoutMs: number;
|
|
1133
1150
|
};
|
|
1134
1151
|
dispatch: {
|
|
1135
1152
|
errorCooldownMs: number;
|
|
@@ -1225,9 +1242,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1225
1242
|
allowedClusterScopedKinds: string[];
|
|
1226
1243
|
nodeSelector: Record<string, string>;
|
|
1227
1244
|
tolerations: {
|
|
1245
|
+
value?: string | undefined;
|
|
1228
1246
|
key?: string | undefined;
|
|
1229
1247
|
operator?: "Exists" | "Equal" | undefined;
|
|
1230
|
-
value?: string | undefined;
|
|
1231
1248
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1232
1249
|
tolerationSeconds?: number | undefined;
|
|
1233
1250
|
}[];
|
|
@@ -1357,6 +1374,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1357
1374
|
replaySkewMarginMs?: number | undefined;
|
|
1358
1375
|
reconcileIntervalMs?: number | undefined;
|
|
1359
1376
|
reconcileTimeoutMs?: number | undefined;
|
|
1377
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
1360
1378
|
} | undefined;
|
|
1361
1379
|
dispatch?: {
|
|
1362
1380
|
errorCooldownMs?: number | undefined;
|
|
@@ -1471,9 +1489,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1471
1489
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
1472
1490
|
nodeSelector?: Record<string, string> | undefined;
|
|
1473
1491
|
tolerations?: {
|
|
1492
|
+
value?: string | undefined;
|
|
1474
1493
|
key?: string | undefined;
|
|
1475
1494
|
operator?: "Exists" | "Equal" | undefined;
|
|
1476
|
-
value?: string | undefined;
|
|
1477
1495
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1478
1496
|
tolerationSeconds?: number | undefined;
|
|
1479
1497
|
}[] | undefined;
|
|
@@ -1536,6 +1554,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1536
1554
|
replaySkewMarginMs: number;
|
|
1537
1555
|
reconcileIntervalMs: number;
|
|
1538
1556
|
reconcileTimeoutMs: number;
|
|
1557
|
+
relayfileOperationTimeoutMs: number;
|
|
1539
1558
|
};
|
|
1540
1559
|
dispatch: {
|
|
1541
1560
|
errorCooldownMs: number;
|
|
@@ -1631,9 +1650,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1631
1650
|
allowedClusterScopedKinds: string[];
|
|
1632
1651
|
nodeSelector: Record<string, string>;
|
|
1633
1652
|
tolerations: {
|
|
1653
|
+
value?: string | undefined;
|
|
1634
1654
|
key?: string | undefined;
|
|
1635
1655
|
operator?: "Exists" | "Equal" | undefined;
|
|
1636
|
-
value?: string | undefined;
|
|
1637
1656
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1638
1657
|
tolerationSeconds?: number | undefined;
|
|
1639
1658
|
}[];
|
|
@@ -1763,6 +1782,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1763
1782
|
replaySkewMarginMs?: number | undefined;
|
|
1764
1783
|
reconcileIntervalMs?: number | undefined;
|
|
1765
1784
|
reconcileTimeoutMs?: number | undefined;
|
|
1785
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
1766
1786
|
} | undefined;
|
|
1767
1787
|
dispatch?: {
|
|
1768
1788
|
errorCooldownMs?: number | undefined;
|
|
@@ -1877,9 +1897,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1877
1897
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
1878
1898
|
nodeSelector?: Record<string, string> | undefined;
|
|
1879
1899
|
tolerations?: {
|
|
1900
|
+
value?: string | undefined;
|
|
1880
1901
|
key?: string | undefined;
|
|
1881
1902
|
operator?: "Exists" | "Equal" | undefined;
|
|
1882
|
-
value?: string | undefined;
|
|
1883
1903
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
1884
1904
|
tolerationSeconds?: number | undefined;
|
|
1885
1905
|
}[] | undefined;
|
|
@@ -1969,6 +1989,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
1969
1989
|
replaySkewMarginMs: number;
|
|
1970
1990
|
reconcileIntervalMs: number;
|
|
1971
1991
|
reconcileTimeoutMs: number;
|
|
1992
|
+
relayfileOperationTimeoutMs: number;
|
|
1972
1993
|
};
|
|
1973
1994
|
dispatch: {
|
|
1974
1995
|
errorCooldownMs: number;
|
|
@@ -2050,9 +2071,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
2050
2071
|
allowedClusterScopedKinds: string[];
|
|
2051
2072
|
nodeSelector: Record<string, string>;
|
|
2052
2073
|
tolerations: {
|
|
2074
|
+
value?: string | undefined;
|
|
2053
2075
|
key?: string | undefined;
|
|
2054
2076
|
operator?: "Exists" | "Equal" | undefined;
|
|
2055
|
-
value?: string | undefined;
|
|
2056
2077
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
2057
2078
|
tolerationSeconds?: number | undefined;
|
|
2058
2079
|
}[];
|
|
@@ -2169,6 +2190,7 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
2169
2190
|
replaySkewMarginMs?: number | undefined;
|
|
2170
2191
|
reconcileIntervalMs?: number | undefined;
|
|
2171
2192
|
reconcileTimeoutMs?: number | undefined;
|
|
2193
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
2172
2194
|
} | undefined;
|
|
2173
2195
|
dispatch?: {
|
|
2174
2196
|
errorCooldownMs?: number | undefined;
|
|
@@ -2283,9 +2305,9 @@ export declare const WorkspaceConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObjec
|
|
|
2283
2305
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
2284
2306
|
nodeSelector?: Record<string, string> | undefined;
|
|
2285
2307
|
tolerations?: {
|
|
2308
|
+
value?: string | undefined;
|
|
2286
2309
|
key?: string | undefined;
|
|
2287
2310
|
operator?: "Exists" | "Equal" | undefined;
|
|
2288
|
-
value?: string | undefined;
|
|
2289
2311
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
2290
2312
|
tolerationSeconds?: number | undefined;
|
|
2291
2313
|
}[] | undefined;
|
|
@@ -2528,6 +2550,18 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
2528
2550
|
reconcileIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
2529
2551
|
/** Bounds one sweep so a hung dependency call cannot stop the loop forever. */
|
|
2530
2552
|
reconcileTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
2553
|
+
/**
|
|
2554
|
+
* Bounds ONE relayfile call (#351).
|
|
2555
|
+
*
|
|
2556
|
+
* Distinct from `reconcileTimeoutMs`, and deliberately far tighter. The
|
|
2557
|
+
* cold-mirror cost that forces the sweep deadline up to 90 minutes is spread
|
|
2558
|
+
* across thousands of calls; no single call has ever needed minutes. So a
|
|
2559
|
+
* per-call bound catches a wedge in five minutes instead of ninety without
|
|
2560
|
+
* re-creating the crash-loop risk described above — and unlike the sweep
|
|
2561
|
+
* deadline it actually unwinds the pass, releasing the discovery lease so the
|
|
2562
|
+
* next cycle starts clean rather than coalescing onto the hung one.
|
|
2563
|
+
*/
|
|
2564
|
+
relayfileOperationTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
2531
2565
|
}, "strip", z.ZodTypeAny, {
|
|
2532
2566
|
transport: "subscribe-and-poll" | "subscribe" | "poll";
|
|
2533
2567
|
pollIntervalMs: number;
|
|
@@ -2535,6 +2569,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
2535
2569
|
replaySkewMarginMs: number;
|
|
2536
2570
|
reconcileIntervalMs: number;
|
|
2537
2571
|
reconcileTimeoutMs: number;
|
|
2572
|
+
relayfileOperationTimeoutMs: number;
|
|
2538
2573
|
}, {
|
|
2539
2574
|
transport?: "subscribe-and-poll" | "subscribe" | "poll" | undefined;
|
|
2540
2575
|
pollIntervalMs?: number | undefined;
|
|
@@ -2542,6 +2577,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
2542
2577
|
replaySkewMarginMs?: number | undefined;
|
|
2543
2578
|
reconcileIntervalMs?: number | undefined;
|
|
2544
2579
|
reconcileTimeoutMs?: number | undefined;
|
|
2580
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
2545
2581
|
}>, {
|
|
2546
2582
|
transport: "subscribe-and-poll" | "subscribe" | "poll";
|
|
2547
2583
|
pollIntervalMs: number;
|
|
@@ -2549,6 +2585,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
2549
2585
|
replaySkewMarginMs: number;
|
|
2550
2586
|
reconcileIntervalMs: number;
|
|
2551
2587
|
reconcileTimeoutMs: number;
|
|
2588
|
+
relayfileOperationTimeoutMs: number;
|
|
2552
2589
|
}, {
|
|
2553
2590
|
transport?: "subscribe-and-poll" | "subscribe" | "poll" | undefined;
|
|
2554
2591
|
pollIntervalMs?: number | undefined;
|
|
@@ -2556,6 +2593,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
2556
2593
|
replaySkewMarginMs?: number | undefined;
|
|
2557
2594
|
reconcileIntervalMs?: number | undefined;
|
|
2558
2595
|
reconcileTimeoutMs?: number | undefined;
|
|
2596
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
2559
2597
|
}>>;
|
|
2560
2598
|
dispatch: z.ZodDefault<z.ZodObject<{
|
|
2561
2599
|
errorCooldownMs: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3066,15 +3104,15 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3066
3104
|
effect: z.ZodOptional<z.ZodEnum<["NoSchedule", "PreferNoSchedule", "NoExecute"]>>;
|
|
3067
3105
|
tolerationSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3068
3106
|
}, "strict", z.ZodTypeAny, {
|
|
3107
|
+
value?: string | undefined;
|
|
3069
3108
|
key?: string | undefined;
|
|
3070
3109
|
operator?: "Exists" | "Equal" | undefined;
|
|
3071
|
-
value?: string | undefined;
|
|
3072
3110
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3073
3111
|
tolerationSeconds?: number | undefined;
|
|
3074
3112
|
}, {
|
|
3113
|
+
value?: string | undefined;
|
|
3075
3114
|
key?: string | undefined;
|
|
3076
3115
|
operator?: "Exists" | "Equal" | undefined;
|
|
3077
|
-
value?: string | undefined;
|
|
3078
3116
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3079
3117
|
tolerationSeconds?: number | undefined;
|
|
3080
3118
|
}>, "many">>;
|
|
@@ -3093,9 +3131,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3093
3131
|
allowedClusterScopedKinds: string[];
|
|
3094
3132
|
nodeSelector: Record<string, string>;
|
|
3095
3133
|
tolerations: {
|
|
3134
|
+
value?: string | undefined;
|
|
3096
3135
|
key?: string | undefined;
|
|
3097
3136
|
operator?: "Exists" | "Equal" | undefined;
|
|
3098
|
-
value?: string | undefined;
|
|
3099
3137
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3100
3138
|
tolerationSeconds?: number | undefined;
|
|
3101
3139
|
}[];
|
|
@@ -3116,9 +3154,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3116
3154
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3117
3155
|
nodeSelector?: Record<string, string> | undefined;
|
|
3118
3156
|
tolerations?: {
|
|
3157
|
+
value?: string | undefined;
|
|
3119
3158
|
key?: string | undefined;
|
|
3120
3159
|
operator?: "Exists" | "Equal" | undefined;
|
|
3121
|
-
value?: string | undefined;
|
|
3122
3160
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3123
3161
|
tolerationSeconds?: number | undefined;
|
|
3124
3162
|
}[] | undefined;
|
|
@@ -3137,9 +3175,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3137
3175
|
allowedClusterScopedKinds: string[];
|
|
3138
3176
|
nodeSelector: Record<string, string>;
|
|
3139
3177
|
tolerations: {
|
|
3178
|
+
value?: string | undefined;
|
|
3140
3179
|
key?: string | undefined;
|
|
3141
3180
|
operator?: "Exists" | "Equal" | undefined;
|
|
3142
|
-
value?: string | undefined;
|
|
3143
3181
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3144
3182
|
tolerationSeconds?: number | undefined;
|
|
3145
3183
|
}[];
|
|
@@ -3160,9 +3198,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3160
3198
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3161
3199
|
nodeSelector?: Record<string, string> | undefined;
|
|
3162
3200
|
tolerations?: {
|
|
3201
|
+
value?: string | undefined;
|
|
3163
3202
|
key?: string | undefined;
|
|
3164
3203
|
operator?: "Exists" | "Equal" | undefined;
|
|
3165
|
-
value?: string | undefined;
|
|
3166
3204
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3167
3205
|
tolerationSeconds?: number | undefined;
|
|
3168
3206
|
}[] | undefined;
|
|
@@ -3181,9 +3219,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3181
3219
|
allowedClusterScopedKinds: string[];
|
|
3182
3220
|
nodeSelector: Record<string, string>;
|
|
3183
3221
|
tolerations: {
|
|
3222
|
+
value?: string | undefined;
|
|
3184
3223
|
key?: string | undefined;
|
|
3185
3224
|
operator?: "Exists" | "Equal" | undefined;
|
|
3186
|
-
value?: string | undefined;
|
|
3187
3225
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3188
3226
|
tolerationSeconds?: number | undefined;
|
|
3189
3227
|
}[];
|
|
@@ -3204,9 +3242,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3204
3242
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3205
3243
|
nodeSelector?: Record<string, string> | undefined;
|
|
3206
3244
|
tolerations?: {
|
|
3245
|
+
value?: string | undefined;
|
|
3207
3246
|
key?: string | undefined;
|
|
3208
3247
|
operator?: "Exists" | "Equal" | undefined;
|
|
3209
|
-
value?: string | undefined;
|
|
3210
3248
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3211
3249
|
tolerationSeconds?: number | undefined;
|
|
3212
3250
|
}[] | undefined;
|
|
@@ -3263,9 +3301,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3263
3301
|
allowedClusterScopedKinds: string[];
|
|
3264
3302
|
nodeSelector: Record<string, string>;
|
|
3265
3303
|
tolerations: {
|
|
3304
|
+
value?: string | undefined;
|
|
3266
3305
|
key?: string | undefined;
|
|
3267
3306
|
operator?: "Exists" | "Equal" | undefined;
|
|
3268
|
-
value?: string | undefined;
|
|
3269
3307
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3270
3308
|
tolerationSeconds?: number | undefined;
|
|
3271
3309
|
}[];
|
|
@@ -3298,9 +3336,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3298
3336
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3299
3337
|
nodeSelector?: Record<string, string> | undefined;
|
|
3300
3338
|
tolerations?: {
|
|
3339
|
+
value?: string | undefined;
|
|
3301
3340
|
key?: string | undefined;
|
|
3302
3341
|
operator?: "Exists" | "Equal" | undefined;
|
|
3303
|
-
value?: string | undefined;
|
|
3304
3342
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3305
3343
|
tolerationSeconds?: number | undefined;
|
|
3306
3344
|
}[] | undefined;
|
|
@@ -3331,9 +3369,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3331
3369
|
allowedClusterScopedKinds: string[];
|
|
3332
3370
|
nodeSelector: Record<string, string>;
|
|
3333
3371
|
tolerations: {
|
|
3372
|
+
value?: string | undefined;
|
|
3334
3373
|
key?: string | undefined;
|
|
3335
3374
|
operator?: "Exists" | "Equal" | undefined;
|
|
3336
|
-
value?: string | undefined;
|
|
3337
3375
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3338
3376
|
tolerationSeconds?: number | undefined;
|
|
3339
3377
|
}[];
|
|
@@ -3366,9 +3404,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3366
3404
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3367
3405
|
nodeSelector?: Record<string, string> | undefined;
|
|
3368
3406
|
tolerations?: {
|
|
3407
|
+
value?: string | undefined;
|
|
3369
3408
|
key?: string | undefined;
|
|
3370
3409
|
operator?: "Exists" | "Equal" | undefined;
|
|
3371
|
-
value?: string | undefined;
|
|
3372
3410
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3373
3411
|
tolerationSeconds?: number | undefined;
|
|
3374
3412
|
}[] | undefined;
|
|
@@ -3401,9 +3439,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3401
3439
|
allowedClusterScopedKinds: string[];
|
|
3402
3440
|
nodeSelector: Record<string, string>;
|
|
3403
3441
|
tolerations: {
|
|
3442
|
+
value?: string | undefined;
|
|
3404
3443
|
key?: string | undefined;
|
|
3405
3444
|
operator?: "Exists" | "Equal" | undefined;
|
|
3406
|
-
value?: string | undefined;
|
|
3407
3445
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3408
3446
|
tolerationSeconds?: number | undefined;
|
|
3409
3447
|
}[];
|
|
@@ -3438,9 +3476,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3438
3476
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3439
3477
|
nodeSelector?: Record<string, string> | undefined;
|
|
3440
3478
|
tolerations?: {
|
|
3479
|
+
value?: string | undefined;
|
|
3441
3480
|
key?: string | undefined;
|
|
3442
3481
|
operator?: "Exists" | "Equal" | undefined;
|
|
3443
|
-
value?: string | undefined;
|
|
3444
3482
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3445
3483
|
tolerationSeconds?: number | undefined;
|
|
3446
3484
|
}[] | undefined;
|
|
@@ -3604,6 +3642,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3604
3642
|
replaySkewMarginMs: number;
|
|
3605
3643
|
reconcileIntervalMs: number;
|
|
3606
3644
|
reconcileTimeoutMs: number;
|
|
3645
|
+
relayfileOperationTimeoutMs: number;
|
|
3607
3646
|
};
|
|
3608
3647
|
dispatch: {
|
|
3609
3648
|
errorCooldownMs: number;
|
|
@@ -3699,9 +3738,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3699
3738
|
allowedClusterScopedKinds: string[];
|
|
3700
3739
|
nodeSelector: Record<string, string>;
|
|
3701
3740
|
tolerations: {
|
|
3741
|
+
value?: string | undefined;
|
|
3702
3742
|
key?: string | undefined;
|
|
3703
3743
|
operator?: "Exists" | "Equal" | undefined;
|
|
3704
|
-
value?: string | undefined;
|
|
3705
3744
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3706
3745
|
tolerationSeconds?: number | undefined;
|
|
3707
3746
|
}[];
|
|
@@ -3838,6 +3877,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3838
3877
|
replaySkewMarginMs?: number | undefined;
|
|
3839
3878
|
reconcileIntervalMs?: number | undefined;
|
|
3840
3879
|
reconcileTimeoutMs?: number | undefined;
|
|
3880
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
3841
3881
|
} | undefined;
|
|
3842
3882
|
dispatch?: {
|
|
3843
3883
|
errorCooldownMs?: number | undefined;
|
|
@@ -3952,9 +3992,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
3952
3992
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
3953
3993
|
nodeSelector?: Record<string, string> | undefined;
|
|
3954
3994
|
tolerations?: {
|
|
3995
|
+
value?: string | undefined;
|
|
3955
3996
|
key?: string | undefined;
|
|
3956
3997
|
operator?: "Exists" | "Equal" | undefined;
|
|
3957
|
-
value?: string | undefined;
|
|
3958
3998
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
3959
3999
|
tolerationSeconds?: number | undefined;
|
|
3960
4000
|
}[] | undefined;
|
|
@@ -4022,6 +4062,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4022
4062
|
replaySkewMarginMs: number;
|
|
4023
4063
|
reconcileIntervalMs: number;
|
|
4024
4064
|
reconcileTimeoutMs: number;
|
|
4065
|
+
relayfileOperationTimeoutMs: number;
|
|
4025
4066
|
};
|
|
4026
4067
|
dispatch: {
|
|
4027
4068
|
errorCooldownMs: number;
|
|
@@ -4117,9 +4158,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4117
4158
|
allowedClusterScopedKinds: string[];
|
|
4118
4159
|
nodeSelector: Record<string, string>;
|
|
4119
4160
|
tolerations: {
|
|
4161
|
+
value?: string | undefined;
|
|
4120
4162
|
key?: string | undefined;
|
|
4121
4163
|
operator?: "Exists" | "Equal" | undefined;
|
|
4122
|
-
value?: string | undefined;
|
|
4123
4164
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
4124
4165
|
tolerationSeconds?: number | undefined;
|
|
4125
4166
|
}[];
|
|
@@ -4256,6 +4297,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4256
4297
|
replaySkewMarginMs?: number | undefined;
|
|
4257
4298
|
reconcileIntervalMs?: number | undefined;
|
|
4258
4299
|
reconcileTimeoutMs?: number | undefined;
|
|
4300
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
4259
4301
|
} | undefined;
|
|
4260
4302
|
dispatch?: {
|
|
4261
4303
|
errorCooldownMs?: number | undefined;
|
|
@@ -4370,9 +4412,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4370
4412
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
4371
4413
|
nodeSelector?: Record<string, string> | undefined;
|
|
4372
4414
|
tolerations?: {
|
|
4415
|
+
value?: string | undefined;
|
|
4373
4416
|
key?: string | undefined;
|
|
4374
4417
|
operator?: "Exists" | "Equal" | undefined;
|
|
4375
|
-
value?: string | undefined;
|
|
4376
4418
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
4377
4419
|
tolerationSeconds?: number | undefined;
|
|
4378
4420
|
}[] | undefined;
|
|
@@ -4481,6 +4523,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4481
4523
|
replaySkewMarginMs: number;
|
|
4482
4524
|
reconcileIntervalMs: number;
|
|
4483
4525
|
reconcileTimeoutMs: number;
|
|
4526
|
+
relayfileOperationTimeoutMs: number;
|
|
4484
4527
|
};
|
|
4485
4528
|
dispatch: {
|
|
4486
4529
|
errorCooldownMs: number;
|
|
@@ -4555,9 +4598,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4555
4598
|
allowedClusterScopedKinds: string[];
|
|
4556
4599
|
nodeSelector: Record<string, string>;
|
|
4557
4600
|
tolerations: {
|
|
4601
|
+
value?: string | undefined;
|
|
4558
4602
|
key?: string | undefined;
|
|
4559
4603
|
operator?: "Exists" | "Equal" | undefined;
|
|
4560
|
-
value?: string | undefined;
|
|
4561
4604
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
4562
4605
|
tolerationSeconds?: number | undefined;
|
|
4563
4606
|
}[];
|
|
@@ -4678,6 +4721,7 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4678
4721
|
replaySkewMarginMs?: number | undefined;
|
|
4679
4722
|
reconcileIntervalMs?: number | undefined;
|
|
4680
4723
|
reconcileTimeoutMs?: number | undefined;
|
|
4724
|
+
relayfileOperationTimeoutMs?: number | undefined;
|
|
4681
4725
|
} | undefined;
|
|
4682
4726
|
dispatch?: {
|
|
4683
4727
|
errorCooldownMs?: number | undefined;
|
|
@@ -4792,9 +4836,9 @@ export declare const FactoryConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<
|
|
|
4792
4836
|
allowedClusterScopedKinds?: string[] | undefined;
|
|
4793
4837
|
nodeSelector?: Record<string, string> | undefined;
|
|
4794
4838
|
tolerations?: {
|
|
4839
|
+
value?: string | undefined;
|
|
4795
4840
|
key?: string | undefined;
|
|
4796
4841
|
operator?: "Exists" | "Equal" | undefined;
|
|
4797
|
-
value?: string | undefined;
|
|
4798
4842
|
effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute" | undefined;
|
|
4799
4843
|
tolerationSeconds?: number | undefined;
|
|
4800
4844
|
}[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAavB,eAAO,MAAM,mBAAmB,sFAMtB,CAAA;AACV,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAA;AAoBnE;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,sCAAsC,QAAc,CAAA;AAqCjE,eAAO,MAAM,6BAA6B,QAAkB,CAAA;AAE5D;;;;;;;;;GASG;AACH,eAAO,MAAM,iCAAiC,QAAc,CAAA;AAE5D,oFAAoF;AACpF,eAAO,MAAM,6BAA6B,QAAc,CAAA;AA4YxD,eAAO,MAAM,iBAAiB,GAAI,YAAY,MAAM,EAAE,KAAK,MAAM,GAAG,SAAS,KAAG,MAAM,GAAG,SAGxF,CAAA;AA+BD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;QA3dhC,8FAA8F;;QAE9F,+EAA+E;;QAG/E;;;;;;;;;;WAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA8CH;;;;;;;WAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA8KH,sEAAsE;;YAEtE,+EAA+E;;YAE/E,2EAA2E;;YAE3E,4EAA4E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA6C5E,mFAAmF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|