typekro 0.11.0 → 0.12.1

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.
Files changed (59) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/core/deployment/kro-factory.d.ts.map +1 -1
  3. package/dist/core/deployment/kro-factory.js +17 -2
  4. package/dist/core/deployment/kro-factory.js.map +1 -1
  5. package/dist/core/deployment/singleton-gitops.d.ts +10 -0
  6. package/dist/core/deployment/singleton-gitops.d.ts.map +1 -0
  7. package/dist/core/deployment/singleton-gitops.js +62 -0
  8. package/dist/core/deployment/singleton-gitops.js.map +1 -0
  9. package/dist/core/serialization/cel-references.d.ts.map +1 -1
  10. package/dist/core/serialization/cel-references.js +26 -0
  11. package/dist/core/serialization/cel-references.js.map +1 -1
  12. package/dist/core/serialization/core.d.ts.map +1 -1
  13. package/dist/core/serialization/core.js +12 -1
  14. package/dist/core/serialization/core.js.map +1 -1
  15. package/dist/core/serialization/schema.d.ts +2 -0
  16. package/dist/core/serialization/schema.d.ts.map +1 -1
  17. package/dist/core/serialization/schema.js +219 -9
  18. package/dist/core/serialization/schema.js.map +1 -1
  19. package/dist/core/singleton/singleton.d.ts +10 -0
  20. package/dist/core/singleton/singleton.d.ts.map +1 -1
  21. package/dist/core/singleton/singleton.js +13 -0
  22. package/dist/core/singleton/singleton.js.map +1 -1
  23. package/dist/factories/dagster/compositions/dagster-bootstrap.d.ts +892 -0
  24. package/dist/factories/dagster/compositions/dagster-bootstrap.d.ts.map +1 -0
  25. package/dist/factories/dagster/compositions/dagster-bootstrap.js +82 -0
  26. package/dist/factories/dagster/compositions/dagster-bootstrap.js.map +1 -0
  27. package/dist/factories/dagster/compositions/dagster-helm-repository.d.ts +21 -0
  28. package/dist/factories/dagster/compositions/dagster-helm-repository.d.ts.map +1 -0
  29. package/dist/factories/dagster/compositions/dagster-helm-repository.js +34 -0
  30. package/dist/factories/dagster/compositions/dagster-helm-repository.js.map +1 -0
  31. package/dist/factories/dagster/compositions/index.d.ts +3 -0
  32. package/dist/factories/dagster/compositions/index.d.ts.map +1 -0
  33. package/dist/factories/dagster/compositions/index.js +3 -0
  34. package/dist/factories/dagster/compositions/index.js.map +1 -0
  35. package/dist/factories/dagster/index.d.ts +31 -0
  36. package/dist/factories/dagster/index.d.ts.map +1 -0
  37. package/dist/factories/dagster/index.js +31 -0
  38. package/dist/factories/dagster/index.js.map +1 -0
  39. package/dist/factories/dagster/resources/helm.d.ts +32 -0
  40. package/dist/factories/dagster/resources/helm.d.ts.map +1 -0
  41. package/dist/factories/dagster/resources/helm.js +60 -0
  42. package/dist/factories/dagster/resources/helm.js.map +1 -0
  43. package/dist/factories/dagster/resources/index.d.ts +2 -0
  44. package/dist/factories/dagster/resources/index.d.ts.map +1 -0
  45. package/dist/factories/dagster/resources/index.js +2 -0
  46. package/dist/factories/dagster/resources/index.js.map +1 -0
  47. package/dist/factories/dagster/types.d.ts +2061 -0
  48. package/dist/factories/dagster/types.d.ts.map +1 -0
  49. package/dist/factories/dagster/types.js +367 -0
  50. package/dist/factories/dagster/types.js.map +1 -0
  51. package/dist/factories/dagster/utils/helm-values-mapper.d.ts +21 -0
  52. package/dist/factories/dagster/utils/helm-values-mapper.d.ts.map +1 -0
  53. package/dist/factories/dagster/utils/helm-values-mapper.js +470 -0
  54. package/dist/factories/dagster/utils/helm-values-mapper.js.map +1 -0
  55. package/dist/factories/dagster/utils/index.d.ts +2 -0
  56. package/dist/factories/dagster/utils/index.d.ts.map +1 -0
  57. package/dist/factories/dagster/utils/index.js +2 -0
  58. package/dist/factories/dagster/utils/index.js.map +1 -0
  59. package/package.json +6 -1
@@ -0,0 +1,892 @@
1
+ /**
2
+ * High-level Dagster bootstrap composition.
3
+ *
4
+ * Creates the target Namespace, official Dagster HelmRepository, and Dagster
5
+ * HelmRelease. Status is derived only from owned Flux Helm resources.
6
+ */
7
+ export declare const dagsterBootstrap: import("../../../index.js").CallableComposition<{
8
+ name: string;
9
+ namespace?: string;
10
+ version?: string;
11
+ serviceAccountName?: string;
12
+ nameOverride?: string;
13
+ fullnameOverride?: string;
14
+ rbacEnabled?: boolean;
15
+ imagePullSecrets?: {
16
+ name: string;
17
+ }[];
18
+ webserver?: {
19
+ replicaCount?: number;
20
+ image?: {
21
+ repository: string;
22
+ tag?: string;
23
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
24
+ };
25
+ service?: {
26
+ type?: string;
27
+ port?: number;
28
+ annotations?: Record<string, string>;
29
+ };
30
+ pathPrefix?: string;
31
+ enableReadOnly?: boolean;
32
+ logFormat?: "json" | "colored" | "rich";
33
+ logLevel?: string;
34
+ workspace?: {
35
+ enabled?: boolean;
36
+ servers?: {
37
+ host: string;
38
+ port: number;
39
+ name?: string;
40
+ }[];
41
+ externalConfigmap?: string;
42
+ };
43
+ readinessProbe?: object;
44
+ livenessProbe?: object;
45
+ startupProbe?: object;
46
+ labels?: Record<string, string>;
47
+ nodeSelector?: Record<string, string>;
48
+ affinity?: object;
49
+ tolerations?: {
50
+ key?: string;
51
+ operator?: "Exists" | "Equal";
52
+ value?: string;
53
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
54
+ tolerationSeconds?: number;
55
+ }[];
56
+ resources?: {
57
+ requests?: {
58
+ cpu?: string;
59
+ memory?: string;
60
+ };
61
+ limits?: {
62
+ cpu?: string;
63
+ memory?: string;
64
+ };
65
+ };
66
+ podSecurityContext?: object;
67
+ securityContext?: object;
68
+ volumes?: object[];
69
+ volumeMounts?: object[];
70
+ env?: {
71
+ name: string;
72
+ value?: string;
73
+ valueFrom?: Record<string, unknown>;
74
+ }[];
75
+ envConfigMaps?: {
76
+ name: string;
77
+ }[];
78
+ envSecrets?: {
79
+ name: string;
80
+ }[];
81
+ };
82
+ daemon?: {
83
+ enabled?: boolean;
84
+ image?: {
85
+ repository: string;
86
+ tag?: string;
87
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
88
+ };
89
+ heartbeatTolerance?: number;
90
+ logFormat?: "json" | "colored" | "rich";
91
+ runCoordinator?: {
92
+ enabled?: boolean;
93
+ type?: "QueuedRunCoordinator" | "CustomRunCoordinator";
94
+ config?: object;
95
+ };
96
+ runMonitoring?: object;
97
+ runRetries?: object;
98
+ sensors?: object;
99
+ schedules?: object;
100
+ labels?: Record<string, string>;
101
+ nodeSelector?: Record<string, string>;
102
+ affinity?: object;
103
+ tolerations?: {
104
+ key?: string;
105
+ operator?: "Exists" | "Equal";
106
+ value?: string;
107
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
108
+ tolerationSeconds?: number;
109
+ }[];
110
+ resources?: {
111
+ requests?: {
112
+ cpu?: string;
113
+ memory?: string;
114
+ };
115
+ limits?: {
116
+ cpu?: string;
117
+ memory?: string;
118
+ };
119
+ };
120
+ podSecurityContext?: object;
121
+ securityContext?: object;
122
+ volumes?: object[];
123
+ volumeMounts?: object[];
124
+ env?: {
125
+ name: string;
126
+ value?: string;
127
+ valueFrom?: Record<string, unknown>;
128
+ }[];
129
+ envConfigMaps?: {
130
+ name: string;
131
+ }[];
132
+ envSecrets?: {
133
+ name: string;
134
+ }[];
135
+ };
136
+ userDeployments?: {
137
+ enabled?: boolean;
138
+ enableSubchart?: boolean;
139
+ imagePullSecrets?: {
140
+ name: string;
141
+ }[];
142
+ deployments?: {
143
+ name: string;
144
+ image: {
145
+ repository: string;
146
+ tag?: string;
147
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
148
+ };
149
+ dagsterApiGrpcArgs?: string[];
150
+ codeServerArgs?: string[];
151
+ port?: number;
152
+ replicaCount?: number;
153
+ includeConfigInLaunchedRuns?: {
154
+ enabled?: boolean;
155
+ };
156
+ env?: {
157
+ name: string;
158
+ value?: string;
159
+ valueFrom?: Record<string, unknown>;
160
+ }[];
161
+ envConfigMaps?: {
162
+ name: string;
163
+ }[];
164
+ envSecrets?: {
165
+ name: string;
166
+ }[];
167
+ labels?: Record<string, string>;
168
+ annotations?: Record<string, string>;
169
+ nodeSelector?: Record<string, string>;
170
+ affinity?: object;
171
+ tolerations?: {
172
+ key?: string;
173
+ operator?: "Exists" | "Equal";
174
+ value?: string;
175
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
176
+ tolerationSeconds?: number;
177
+ }[];
178
+ podSecurityContext?: object;
179
+ securityContext?: object;
180
+ resources?: {
181
+ requests?: {
182
+ cpu?: string;
183
+ memory?: string;
184
+ };
185
+ limits?: {
186
+ cpu?: string;
187
+ memory?: string;
188
+ };
189
+ };
190
+ volumes?: object[];
191
+ volumeMounts?: object[];
192
+ initContainers?: object[];
193
+ sidecarContainers?: object[];
194
+ readinessProbe?: object;
195
+ livenessProbe?: object;
196
+ startupProbe?: object;
197
+ deploymentStrategy?: object;
198
+ service?: {
199
+ annotations?: Record<string, string>;
200
+ };
201
+ }[];
202
+ };
203
+ postgresql?: {
204
+ enabled?: boolean;
205
+ host?: string;
206
+ username?: string;
207
+ database?: string;
208
+ password?: string;
209
+ passwordSecretName?: string;
210
+ servicePort?: number;
211
+ params?: Record<string, string>;
212
+ scheme?: string;
213
+ authProvider?: object;
214
+ values?: object;
215
+ };
216
+ runLauncher?: {
217
+ type?: "K8sRunLauncher" | "CeleryK8sRunLauncher" | "CustomRunLauncher";
218
+ k8sRunLauncher?: {
219
+ imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
220
+ image?: {
221
+ repository: string;
222
+ tag?: string;
223
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
224
+ };
225
+ jobNamespace?: string;
226
+ loadInclusterConfig?: boolean;
227
+ kubeconfigFile?: string;
228
+ envConfigMaps?: {
229
+ name: string;
230
+ }[];
231
+ envSecrets?: {
232
+ name: string;
233
+ }[];
234
+ envVars?: string[];
235
+ volumes?: object[];
236
+ volumeMounts?: object[];
237
+ labels?: Record<string, string>;
238
+ resources?: {
239
+ requests?: {
240
+ cpu?: string;
241
+ memory?: string;
242
+ };
243
+ limits?: {
244
+ cpu?: string;
245
+ memory?: string;
246
+ };
247
+ };
248
+ runK8sConfig?: object;
249
+ failPodOnRunFailure?: boolean;
250
+ securityContext?: object;
251
+ };
252
+ celeryK8sRunLauncher?: {
253
+ imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
254
+ image?: {
255
+ repository: string;
256
+ tag?: string;
257
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
258
+ };
259
+ jobNamespace?: string;
260
+ workerQueues?: {
261
+ name: string;
262
+ replicaCount?: number;
263
+ labels?: Record<string, string>;
264
+ nodeSelector?: Record<string, string>;
265
+ configSource?: object;
266
+ additionalCeleryArgs?: string[];
267
+ }[];
268
+ configSource?: object;
269
+ env?: Record<string, string>;
270
+ failPodOnRunFailure?: boolean;
271
+ labels?: Record<string, string>;
272
+ nodeSelector?: Record<string, string>;
273
+ affinity?: object;
274
+ tolerations?: {
275
+ key?: string;
276
+ operator?: "Exists" | "Equal";
277
+ value?: string;
278
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
279
+ tolerationSeconds?: number;
280
+ }[];
281
+ resources?: {
282
+ requests?: {
283
+ cpu?: string;
284
+ memory?: string;
285
+ };
286
+ limits?: {
287
+ cpu?: string;
288
+ memory?: string;
289
+ };
290
+ };
291
+ podSecurityContext?: object;
292
+ securityContext?: object;
293
+ volumes?: object[];
294
+ volumeMounts?: object[];
295
+ envConfigMaps?: {
296
+ name: string;
297
+ }[];
298
+ envSecrets?: {
299
+ name: string;
300
+ }[];
301
+ };
302
+ customRunLauncher?: object;
303
+ };
304
+ scheduler?: {
305
+ type?: "DagsterDaemonScheduler" | "CustomScheduler";
306
+ config?: object;
307
+ };
308
+ computeLogManager?: {
309
+ type?: "NoOpComputeLogManager" | "AzureBlobComputeLogManager" | "GCSComputeLogManager" | "S3ComputeLogManager" | "LocalComputeLogManager" | "CustomComputeLogManager";
310
+ config?: object;
311
+ };
312
+ ingress?: {
313
+ enabled?: boolean;
314
+ annotations?: Record<string, string>;
315
+ labels?: Record<string, string>;
316
+ ingressClassName?: string;
317
+ dagsterWebserver?: {
318
+ host?: string;
319
+ path?: string;
320
+ pathType?: string;
321
+ tls?: {
322
+ enabled?: boolean;
323
+ secretName?: string;
324
+ };
325
+ precedingPaths?: object[];
326
+ succeedingPaths?: object[];
327
+ };
328
+ readOnlyDagsterWebserver?: {
329
+ host?: string;
330
+ path?: string;
331
+ pathType?: string;
332
+ tls?: {
333
+ enabled?: boolean;
334
+ secretName?: string;
335
+ };
336
+ precedingPaths?: object[];
337
+ succeedingPaths?: object[];
338
+ };
339
+ flower?: {
340
+ host?: string;
341
+ path?: string;
342
+ pathType?: string;
343
+ tls?: {
344
+ enabled?: boolean;
345
+ secretName?: string;
346
+ };
347
+ precedingPaths?: object[];
348
+ succeedingPaths?: object[];
349
+ };
350
+ };
351
+ flower?: {
352
+ enabled?: boolean;
353
+ image?: {
354
+ repository: string;
355
+ tag?: string;
356
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
357
+ };
358
+ service?: {
359
+ type?: string;
360
+ annotations?: Record<string, string>;
361
+ port?: number;
362
+ };
363
+ livenessProbe?: object;
364
+ startupProbe?: object;
365
+ labels?: Record<string, string>;
366
+ nodeSelector?: Record<string, string>;
367
+ affinity?: object;
368
+ tolerations?: {
369
+ key?: string;
370
+ operator?: "Exists" | "Equal";
371
+ value?: string;
372
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
373
+ tolerationSeconds?: number;
374
+ }[];
375
+ resources?: {
376
+ requests?: {
377
+ cpu?: string;
378
+ memory?: string;
379
+ };
380
+ limits?: {
381
+ cpu?: string;
382
+ memory?: string;
383
+ };
384
+ };
385
+ podSecurityContext?: object;
386
+ securityContext?: object;
387
+ volumes?: object[];
388
+ volumeMounts?: object[];
389
+ env?: {
390
+ name: string;
391
+ value?: string;
392
+ valueFrom?: Record<string, unknown>;
393
+ }[];
394
+ envConfigMaps?: {
395
+ name: string;
396
+ }[];
397
+ envSecrets?: {
398
+ name: string;
399
+ }[];
400
+ };
401
+ rabbitmq?: {
402
+ enabled?: boolean;
403
+ image?: {
404
+ repository: string;
405
+ tag?: string;
406
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
407
+ };
408
+ username?: string;
409
+ password?: string;
410
+ servicePort?: number;
411
+ values?: object;
412
+ };
413
+ redis?: {
414
+ enabled?: boolean;
415
+ internal?: boolean;
416
+ image?: {
417
+ repository: string;
418
+ tag?: string;
419
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
420
+ };
421
+ usePassword?: boolean;
422
+ password?: string;
423
+ host?: string;
424
+ port?: number;
425
+ brokerDbNumber?: number;
426
+ backendDbNumber?: number;
427
+ brokerUrl?: string;
428
+ backendUrl?: string;
429
+ values?: object;
430
+ };
431
+ global?: {
432
+ dagsterHome?: string;
433
+ serviceAccountName?: string;
434
+ postgresqlSecretName?: string;
435
+ postgresqlAuthWifEnabled?: boolean;
436
+ celeryConfigSecretName?: string;
437
+ dagsterInstanceConfigMap?: string;
438
+ };
439
+ values?: {
440
+ global?: {
441
+ dagsterHome?: string;
442
+ serviceAccountName?: string;
443
+ postgresqlSecretName?: string;
444
+ postgresqlAuthWifEnabled?: boolean;
445
+ celeryConfigSecretName?: string;
446
+ dagsterInstanceConfigMap?: string;
447
+ };
448
+ nameOverride?: string;
449
+ fullnameOverride?: string;
450
+ rbacEnabled?: boolean;
451
+ imagePullSecrets?: {
452
+ name: string;
453
+ }[];
454
+ dagsterWebserver?: {
455
+ replicaCount?: number;
456
+ image?: {
457
+ repository: string;
458
+ tag?: string;
459
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
460
+ };
461
+ service?: {
462
+ type?: string;
463
+ port?: number;
464
+ annotations?: Record<string, string>;
465
+ };
466
+ pathPrefix?: string;
467
+ enableReadOnly?: boolean;
468
+ logFormat?: "json" | "colored" | "rich";
469
+ logLevel?: string;
470
+ workspace?: {
471
+ enabled?: boolean;
472
+ servers?: {
473
+ host: string;
474
+ port: number;
475
+ name?: string;
476
+ }[];
477
+ externalConfigmap?: string;
478
+ };
479
+ readinessProbe?: object;
480
+ livenessProbe?: object;
481
+ startupProbe?: object;
482
+ labels?: Record<string, string>;
483
+ nodeSelector?: Record<string, string>;
484
+ affinity?: object;
485
+ tolerations?: {
486
+ key?: string;
487
+ operator?: "Exists" | "Equal";
488
+ value?: string;
489
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
490
+ tolerationSeconds?: number;
491
+ }[];
492
+ resources?: {
493
+ requests?: {
494
+ cpu?: string;
495
+ memory?: string;
496
+ };
497
+ limits?: {
498
+ cpu?: string;
499
+ memory?: string;
500
+ };
501
+ };
502
+ podSecurityContext?: object;
503
+ securityContext?: object;
504
+ volumes?: object[];
505
+ volumeMounts?: object[];
506
+ env?: {
507
+ name: string;
508
+ value?: string;
509
+ valueFrom?: Record<string, unknown>;
510
+ }[];
511
+ envConfigMaps?: {
512
+ name: string;
513
+ }[];
514
+ envSecrets?: {
515
+ name: string;
516
+ }[];
517
+ };
518
+ dagsterDaemon?: {
519
+ enabled?: boolean;
520
+ image?: {
521
+ repository: string;
522
+ tag?: string;
523
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
524
+ };
525
+ heartbeatTolerance?: number;
526
+ logFormat?: "json" | "colored" | "rich";
527
+ runCoordinator?: {
528
+ enabled?: boolean;
529
+ type?: "QueuedRunCoordinator" | "CustomRunCoordinator";
530
+ config?: object;
531
+ };
532
+ runMonitoring?: object;
533
+ runRetries?: object;
534
+ sensors?: object;
535
+ schedules?: object;
536
+ labels?: Record<string, string>;
537
+ nodeSelector?: Record<string, string>;
538
+ affinity?: object;
539
+ tolerations?: {
540
+ key?: string;
541
+ operator?: "Exists" | "Equal";
542
+ value?: string;
543
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
544
+ tolerationSeconds?: number;
545
+ }[];
546
+ resources?: {
547
+ requests?: {
548
+ cpu?: string;
549
+ memory?: string;
550
+ };
551
+ limits?: {
552
+ cpu?: string;
553
+ memory?: string;
554
+ };
555
+ };
556
+ podSecurityContext?: object;
557
+ securityContext?: object;
558
+ volumes?: object[];
559
+ volumeMounts?: object[];
560
+ env?: {
561
+ name: string;
562
+ value?: string;
563
+ valueFrom?: Record<string, unknown>;
564
+ }[];
565
+ envConfigMaps?: {
566
+ name: string;
567
+ }[];
568
+ envSecrets?: {
569
+ name: string;
570
+ }[];
571
+ };
572
+ 'dagster-user-deployments'?: {
573
+ enabled?: boolean;
574
+ enableSubchart?: boolean;
575
+ imagePullSecrets?: {
576
+ name: string;
577
+ }[];
578
+ deployments?: {
579
+ name: string;
580
+ image: {
581
+ repository: string;
582
+ tag?: string;
583
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
584
+ };
585
+ dagsterApiGrpcArgs?: string[];
586
+ codeServerArgs?: string[];
587
+ port?: number;
588
+ replicaCount?: number;
589
+ includeConfigInLaunchedRuns?: {
590
+ enabled?: boolean;
591
+ };
592
+ env?: {
593
+ name: string;
594
+ value?: string;
595
+ valueFrom?: Record<string, unknown>;
596
+ }[];
597
+ envConfigMaps?: {
598
+ name: string;
599
+ }[];
600
+ envSecrets?: {
601
+ name: string;
602
+ }[];
603
+ labels?: Record<string, string>;
604
+ annotations?: Record<string, string>;
605
+ nodeSelector?: Record<string, string>;
606
+ affinity?: object;
607
+ tolerations?: {
608
+ key?: string;
609
+ operator?: "Exists" | "Equal";
610
+ value?: string;
611
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
612
+ tolerationSeconds?: number;
613
+ }[];
614
+ podSecurityContext?: object;
615
+ securityContext?: object;
616
+ resources?: {
617
+ requests?: {
618
+ cpu?: string;
619
+ memory?: string;
620
+ };
621
+ limits?: {
622
+ cpu?: string;
623
+ memory?: string;
624
+ };
625
+ };
626
+ volumes?: object[];
627
+ volumeMounts?: object[];
628
+ initContainers?: object[];
629
+ sidecarContainers?: object[];
630
+ readinessProbe?: object;
631
+ livenessProbe?: object;
632
+ startupProbe?: object;
633
+ deploymentStrategy?: object;
634
+ service?: {
635
+ annotations?: Record<string, string>;
636
+ };
637
+ }[];
638
+ };
639
+ postgresql?: {
640
+ enabled?: boolean;
641
+ host?: string;
642
+ username?: string;
643
+ database?: string;
644
+ password?: string;
645
+ passwordSecretName?: string;
646
+ servicePort?: number;
647
+ params?: Record<string, string>;
648
+ scheme?: string;
649
+ authProvider?: object;
650
+ values?: object;
651
+ };
652
+ generatePostgresqlPasswordSecret?: boolean;
653
+ generateCeleryConfigSecret?: boolean;
654
+ rabbitmq?: {
655
+ enabled?: boolean;
656
+ image?: {
657
+ repository: string;
658
+ tag?: string;
659
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
660
+ };
661
+ username?: string;
662
+ password?: string;
663
+ servicePort?: number;
664
+ values?: object;
665
+ };
666
+ redis?: {
667
+ enabled?: boolean;
668
+ internal?: boolean;
669
+ image?: {
670
+ repository: string;
671
+ tag?: string;
672
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
673
+ };
674
+ usePassword?: boolean;
675
+ password?: string;
676
+ host?: string;
677
+ port?: number;
678
+ brokerDbNumber?: number;
679
+ backendDbNumber?: number;
680
+ brokerUrl?: string;
681
+ backendUrl?: string;
682
+ values?: object;
683
+ };
684
+ runLauncher?: {
685
+ type?: "K8sRunLauncher" | "CeleryK8sRunLauncher" | "CustomRunLauncher";
686
+ k8sRunLauncher?: {
687
+ imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
688
+ image?: {
689
+ repository: string;
690
+ tag?: string;
691
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
692
+ };
693
+ jobNamespace?: string;
694
+ loadInclusterConfig?: boolean;
695
+ kubeconfigFile?: string;
696
+ envConfigMaps?: {
697
+ name: string;
698
+ }[];
699
+ envSecrets?: {
700
+ name: string;
701
+ }[];
702
+ envVars?: string[];
703
+ volumes?: object[];
704
+ volumeMounts?: object[];
705
+ labels?: Record<string, string>;
706
+ resources?: {
707
+ requests?: {
708
+ cpu?: string;
709
+ memory?: string;
710
+ };
711
+ limits?: {
712
+ cpu?: string;
713
+ memory?: string;
714
+ };
715
+ };
716
+ runK8sConfig?: object;
717
+ failPodOnRunFailure?: boolean;
718
+ securityContext?: object;
719
+ };
720
+ celeryK8sRunLauncher?: {
721
+ imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
722
+ image?: {
723
+ repository: string;
724
+ tag?: string;
725
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
726
+ };
727
+ jobNamespace?: string;
728
+ workerQueues?: {
729
+ name: string;
730
+ replicaCount?: number;
731
+ labels?: Record<string, string>;
732
+ nodeSelector?: Record<string, string>;
733
+ configSource?: object;
734
+ additionalCeleryArgs?: string[];
735
+ }[];
736
+ configSource?: object;
737
+ env?: Record<string, string>;
738
+ failPodOnRunFailure?: boolean;
739
+ labels?: Record<string, string>;
740
+ nodeSelector?: Record<string, string>;
741
+ affinity?: object;
742
+ tolerations?: {
743
+ key?: string;
744
+ operator?: "Exists" | "Equal";
745
+ value?: string;
746
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
747
+ tolerationSeconds?: number;
748
+ }[];
749
+ resources?: {
750
+ requests?: {
751
+ cpu?: string;
752
+ memory?: string;
753
+ };
754
+ limits?: {
755
+ cpu?: string;
756
+ memory?: string;
757
+ };
758
+ };
759
+ podSecurityContext?: object;
760
+ securityContext?: object;
761
+ volumes?: object[];
762
+ volumeMounts?: object[];
763
+ envConfigMaps?: {
764
+ name: string;
765
+ }[];
766
+ envSecrets?: {
767
+ name: string;
768
+ }[];
769
+ };
770
+ customRunLauncher?: object;
771
+ };
772
+ scheduler?: {
773
+ type?: "DagsterDaemonScheduler" | "CustomScheduler";
774
+ config?: object;
775
+ };
776
+ computeLogManager?: {
777
+ type?: "NoOpComputeLogManager" | "AzureBlobComputeLogManager" | "GCSComputeLogManager" | "S3ComputeLogManager" | "LocalComputeLogManager" | "CustomComputeLogManager";
778
+ config?: object;
779
+ };
780
+ flower?: {
781
+ enabled?: boolean;
782
+ image?: {
783
+ repository: string;
784
+ tag?: string;
785
+ pullPolicy?: "Always" | "IfNotPresent" | "Never";
786
+ };
787
+ service?: {
788
+ type?: string;
789
+ annotations?: Record<string, string>;
790
+ port?: number;
791
+ };
792
+ livenessProbe?: object;
793
+ startupProbe?: object;
794
+ labels?: Record<string, string>;
795
+ nodeSelector?: Record<string, string>;
796
+ affinity?: object;
797
+ tolerations?: {
798
+ key?: string;
799
+ operator?: "Exists" | "Equal";
800
+ value?: string;
801
+ effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
802
+ tolerationSeconds?: number;
803
+ }[];
804
+ resources?: {
805
+ requests?: {
806
+ cpu?: string;
807
+ memory?: string;
808
+ };
809
+ limits?: {
810
+ cpu?: string;
811
+ memory?: string;
812
+ };
813
+ };
814
+ podSecurityContext?: object;
815
+ securityContext?: object;
816
+ volumes?: object[];
817
+ volumeMounts?: object[];
818
+ env?: {
819
+ name: string;
820
+ value?: string;
821
+ valueFrom?: Record<string, unknown>;
822
+ }[];
823
+ envConfigMaps?: {
824
+ name: string;
825
+ }[];
826
+ envSecrets?: {
827
+ name: string;
828
+ }[];
829
+ };
830
+ ingress?: {
831
+ enabled?: boolean;
832
+ annotations?: Record<string, string>;
833
+ labels?: Record<string, string>;
834
+ ingressClassName?: string;
835
+ dagsterWebserver?: {
836
+ host?: string;
837
+ path?: string;
838
+ pathType?: string;
839
+ tls?: {
840
+ enabled?: boolean;
841
+ secretName?: string;
842
+ };
843
+ precedingPaths?: object[];
844
+ succeedingPaths?: object[];
845
+ };
846
+ readOnlyDagsterWebserver?: {
847
+ host?: string;
848
+ path?: string;
849
+ pathType?: string;
850
+ tls?: {
851
+ enabled?: boolean;
852
+ secretName?: string;
853
+ };
854
+ precedingPaths?: object[];
855
+ succeedingPaths?: object[];
856
+ };
857
+ flower?: {
858
+ host?: string;
859
+ path?: string;
860
+ pathType?: string;
861
+ tls?: {
862
+ enabled?: boolean;
863
+ secretName?: string;
864
+ };
865
+ precedingPaths?: object[];
866
+ succeedingPaths?: object[];
867
+ };
868
+ };
869
+ pythonLogs?: object;
870
+ busybox?: object;
871
+ extraManifests?: unknown[];
872
+ dagsterHome?: string;
873
+ serviceAccountName?: string;
874
+ postgresqlSecretName?: string;
875
+ postgresqlAuthWifEnabled?: boolean;
876
+ celeryConfigSecretName?: string;
877
+ dagsterInstanceConfigMap?: string;
878
+ };
879
+ }, {
880
+ ready: boolean;
881
+ phase: "Ready" | "Failed" | "Installing";
882
+ failed: boolean;
883
+ components: {
884
+ helmRepository: boolean;
885
+ helmRelease: boolean;
886
+ webserver: boolean;
887
+ daemon: boolean;
888
+ userDeployments: boolean;
889
+ };
890
+ version?: string;
891
+ }>;
892
+ //# sourceMappingURL=dagster-bootstrap.d.ts.map