typekro 0.32.0 → 0.32.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.
@@ -440,455 +440,7 @@ export declare const dagsterBootstrap: import("../../../index.js").CallableCompo
440
440
  celeryConfigSecretName?: string;
441
441
  dagsterInstanceConfigMap?: string;
442
442
  };
443
- values?: {
444
- global?: {
445
- dagsterHome?: string;
446
- serviceAccountName?: string;
447
- postgresqlSecretName?: string;
448
- postgresqlAuthWifEnabled?: boolean;
449
- celeryConfigSecretName?: string;
450
- dagsterInstanceConfigMap?: string;
451
- };
452
- serviceAccount?: {
453
- create?: boolean;
454
- name?: string;
455
- annotations?: Record<string, string>;
456
- };
457
- nameOverride?: string;
458
- fullnameOverride?: string;
459
- rbacEnabled?: boolean;
460
- imagePullSecrets?: {
461
- name: string;
462
- }[];
463
- dagsterWebserver?: {
464
- replicaCount?: number;
465
- image?: {
466
- repository: string;
467
- tag?: string;
468
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
469
- };
470
- service?: {
471
- type?: string;
472
- port?: number;
473
- annotations?: Record<string, string>;
474
- };
475
- pathPrefix?: string;
476
- enableReadOnly?: boolean;
477
- logFormat?: "json" | "colored" | "rich";
478
- logLevel?: string;
479
- workspace?: {
480
- enabled?: boolean;
481
- servers?: {
482
- host: string;
483
- port: number;
484
- name?: string;
485
- }[];
486
- externalConfigmap?: string;
487
- };
488
- readinessProbe?: object;
489
- livenessProbe?: object;
490
- startupProbe?: object;
491
- labels?: Record<string, string>;
492
- nodeSelector?: Record<string, string>;
493
- affinity?: object;
494
- tolerations?: {
495
- key?: string;
496
- operator?: "Exists" | "Equal";
497
- value?: string;
498
- effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
499
- tolerationSeconds?: number;
500
- }[];
501
- resources?: {
502
- requests?: {
503
- cpu?: string;
504
- memory?: string;
505
- };
506
- limits?: {
507
- cpu?: string;
508
- memory?: string;
509
- };
510
- };
511
- podSecurityContext?: object;
512
- securityContext?: object;
513
- volumes?: object[];
514
- volumeMounts?: object[];
515
- env?: {
516
- name: string;
517
- value?: string;
518
- valueFrom?: Record<string, unknown>;
519
- }[];
520
- envConfigMaps?: {
521
- name: string;
522
- }[];
523
- envSecrets?: {
524
- name: string;
525
- }[];
526
- };
527
- dagsterDaemon?: {
528
- enabled?: boolean;
529
- image?: {
530
- repository: string;
531
- tag?: string;
532
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
533
- };
534
- heartbeatTolerance?: number;
535
- logFormat?: "json" | "colored" | "rich";
536
- runCoordinator?: {
537
- enabled?: boolean;
538
- type?: "QueuedRunCoordinator" | "CustomRunCoordinator";
539
- config?: object;
540
- };
541
- runMonitoring?: object;
542
- runRetries?: object;
543
- sensors?: object;
544
- schedules?: object;
545
- readinessProbe?: object;
546
- livenessProbe?: object;
547
- startupProbe?: object;
548
- labels?: Record<string, string>;
549
- nodeSelector?: Record<string, string>;
550
- affinity?: object;
551
- tolerations?: {
552
- key?: string;
553
- operator?: "Exists" | "Equal";
554
- value?: string;
555
- effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
556
- tolerationSeconds?: number;
557
- }[];
558
- resources?: {
559
- requests?: {
560
- cpu?: string;
561
- memory?: string;
562
- };
563
- limits?: {
564
- cpu?: string;
565
- memory?: string;
566
- };
567
- };
568
- podSecurityContext?: object;
569
- securityContext?: object;
570
- volumes?: object[];
571
- volumeMounts?: object[];
572
- env?: {
573
- name: string;
574
- value?: string;
575
- valueFrom?: Record<string, unknown>;
576
- }[];
577
- envConfigMaps?: {
578
- name: string;
579
- }[];
580
- envSecrets?: {
581
- name: string;
582
- }[];
583
- };
584
- 'dagster-user-deployments'?: {
585
- enabled?: boolean;
586
- enableSubchart?: boolean;
587
- imagePullSecrets?: {
588
- name: string;
589
- }[];
590
- deployments?: {
591
- name: string;
592
- image: {
593
- repository: string;
594
- tag?: string;
595
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
596
- };
597
- dagsterApiGrpcArgs?: string[];
598
- codeServerArgs?: string[];
599
- port?: number;
600
- replicaCount?: number;
601
- includeConfigInLaunchedRuns?: {
602
- enabled?: boolean;
603
- };
604
- env?: {
605
- name: string;
606
- value?: string;
607
- valueFrom?: Record<string, unknown>;
608
- }[];
609
- envConfigMaps?: {
610
- name: string;
611
- }[];
612
- envSecrets?: {
613
- name: string;
614
- }[];
615
- labels?: Record<string, string>;
616
- annotations?: Record<string, string>;
617
- nodeSelector?: Record<string, string>;
618
- affinity?: object;
619
- tolerations?: {
620
- key?: string;
621
- operator?: "Exists" | "Equal";
622
- value?: string;
623
- effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
624
- tolerationSeconds?: number;
625
- }[];
626
- podSecurityContext?: object;
627
- securityContext?: object;
628
- resources?: {
629
- requests?: {
630
- cpu?: string;
631
- memory?: string;
632
- };
633
- limits?: {
634
- cpu?: string;
635
- memory?: string;
636
- };
637
- };
638
- volumes?: object[];
639
- volumeMounts?: object[];
640
- initContainers?: object[];
641
- sidecarContainers?: object[];
642
- readinessProbe?: object;
643
- livenessProbe?: object;
644
- startupProbe?: object;
645
- deploymentStrategy?: object;
646
- service?: {
647
- annotations?: Record<string, string>;
648
- };
649
- }[];
650
- };
651
- postgresql?: {
652
- enabled?: boolean;
653
- host?: string;
654
- username?: string;
655
- database?: string;
656
- password?: string;
657
- passwordSecretName?: string;
658
- storageClass?: string;
659
- servicePort?: number;
660
- params?: Record<string, string>;
661
- scheme?: string;
662
- authProvider?: object;
663
- values?: object;
664
- };
665
- generatePostgresqlPasswordSecret?: boolean;
666
- generateCeleryConfigSecret?: boolean;
667
- rabbitmq?: {
668
- enabled?: boolean;
669
- image?: {
670
- repository: string;
671
- tag?: string;
672
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
673
- };
674
- username?: string;
675
- password?: string;
676
- servicePort?: number;
677
- values?: object;
678
- };
679
- redis?: {
680
- enabled?: boolean;
681
- internal?: boolean;
682
- image?: {
683
- repository: string;
684
- tag?: string;
685
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
686
- };
687
- usePassword?: boolean;
688
- password?: string;
689
- host?: string;
690
- port?: number;
691
- brokerDbNumber?: number;
692
- backendDbNumber?: number;
693
- brokerUrl?: string;
694
- backendUrl?: string;
695
- values?: object;
696
- };
697
- runLauncher?: {
698
- type?: "K8sRunLauncher" | "CeleryK8sRunLauncher" | "CustomRunLauncher";
699
- k8sRunLauncher?: {
700
- imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
701
- image?: {
702
- repository: string;
703
- tag?: string;
704
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
705
- };
706
- jobNamespace?: string;
707
- loadInclusterConfig?: boolean;
708
- kubeconfigFile?: string;
709
- envConfigMaps?: {
710
- name: string;
711
- }[];
712
- envSecrets?: {
713
- name: string;
714
- }[];
715
- envVars?: string[];
716
- volumes?: object[];
717
- volumeMounts?: object[];
718
- labels?: Record<string, string>;
719
- resources?: {
720
- requests?: {
721
- cpu?: string;
722
- memory?: string;
723
- };
724
- limits?: {
725
- cpu?: string;
726
- memory?: string;
727
- };
728
- };
729
- runK8sConfig?: object;
730
- failPodOnRunFailure?: boolean;
731
- securityContext?: object;
732
- };
733
- celeryK8sRunLauncher?: {
734
- imagePullPolicy?: "Always" | "IfNotPresent" | "Never";
735
- image?: {
736
- repository: string;
737
- tag?: string;
738
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
739
- };
740
- jobNamespace?: string;
741
- workerQueues?: {
742
- name: string;
743
- replicaCount?: number;
744
- labels?: Record<string, string>;
745
- nodeSelector?: Record<string, string>;
746
- configSource?: object;
747
- additionalCeleryArgs?: string[];
748
- }[];
749
- configSource?: object;
750
- env?: Record<string, string>;
751
- failPodOnRunFailure?: boolean;
752
- labels?: Record<string, string>;
753
- nodeSelector?: Record<string, string>;
754
- affinity?: object;
755
- tolerations?: {
756
- key?: string;
757
- operator?: "Exists" | "Equal";
758
- value?: string;
759
- effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
760
- tolerationSeconds?: number;
761
- }[];
762
- resources?: {
763
- requests?: {
764
- cpu?: string;
765
- memory?: string;
766
- };
767
- limits?: {
768
- cpu?: string;
769
- memory?: string;
770
- };
771
- };
772
- podSecurityContext?: object;
773
- securityContext?: object;
774
- volumes?: object[];
775
- volumeMounts?: object[];
776
- envConfigMaps?: {
777
- name: string;
778
- }[];
779
- envSecrets?: {
780
- name: string;
781
- }[];
782
- };
783
- customRunLauncher?: object;
784
- };
785
- scheduler?: {
786
- type?: "DagsterDaemonScheduler" | "CustomScheduler";
787
- config?: object;
788
- };
789
- computeLogManager?: {
790
- type?: "NoOpComputeLogManager" | "AzureBlobComputeLogManager" | "GCSComputeLogManager" | "S3ComputeLogManager" | "LocalComputeLogManager" | "CustomComputeLogManager";
791
- config?: object;
792
- };
793
- flower?: {
794
- enabled?: boolean;
795
- image?: {
796
- repository: string;
797
- tag?: string;
798
- pullPolicy?: "Always" | "IfNotPresent" | "Never";
799
- };
800
- service?: {
801
- type?: string;
802
- annotations?: Record<string, string>;
803
- port?: number;
804
- };
805
- livenessProbe?: object;
806
- startupProbe?: object;
807
- labels?: Record<string, string>;
808
- nodeSelector?: Record<string, string>;
809
- affinity?: object;
810
- tolerations?: {
811
- key?: string;
812
- operator?: "Exists" | "Equal";
813
- value?: string;
814
- effect?: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
815
- tolerationSeconds?: number;
816
- }[];
817
- resources?: {
818
- requests?: {
819
- cpu?: string;
820
- memory?: string;
821
- };
822
- limits?: {
823
- cpu?: string;
824
- memory?: string;
825
- };
826
- };
827
- podSecurityContext?: object;
828
- securityContext?: object;
829
- volumes?: object[];
830
- volumeMounts?: object[];
831
- env?: {
832
- name: string;
833
- value?: string;
834
- valueFrom?: Record<string, unknown>;
835
- }[];
836
- envConfigMaps?: {
837
- name: string;
838
- }[];
839
- envSecrets?: {
840
- name: string;
841
- }[];
842
- };
843
- ingress?: {
844
- enabled?: boolean;
845
- annotations?: Record<string, string>;
846
- labels?: Record<string, string>;
847
- ingressClassName?: string;
848
- dagsterWebserver?: {
849
- host?: string;
850
- path?: string;
851
- pathType?: string;
852
- tls?: {
853
- enabled?: boolean;
854
- secretName?: string;
855
- };
856
- precedingPaths?: object[];
857
- succeedingPaths?: object[];
858
- };
859
- readOnlyDagsterWebserver?: {
860
- host?: string;
861
- path?: string;
862
- pathType?: string;
863
- tls?: {
864
- enabled?: boolean;
865
- secretName?: string;
866
- };
867
- precedingPaths?: object[];
868
- succeedingPaths?: object[];
869
- };
870
- flower?: {
871
- host?: string;
872
- path?: string;
873
- pathType?: string;
874
- tls?: {
875
- enabled?: boolean;
876
- secretName?: string;
877
- };
878
- precedingPaths?: object[];
879
- succeedingPaths?: object[];
880
- };
881
- };
882
- pythonLogs?: object;
883
- busybox?: object;
884
- extraManifests?: unknown[];
885
- dagsterHome?: string;
886
- serviceAccountName?: string;
887
- postgresqlSecretName?: string;
888
- postgresqlAuthWifEnabled?: boolean;
889
- celeryConfigSecretName?: string;
890
- dagsterInstanceConfigMap?: string;
891
- };
443
+ values?: object;
892
444
  }, {
893
445
  ready: boolean;
894
446
  phase: "Ready" | "Failed" | "Installing";
@@ -1 +1 @@
1
- {"version":3,"file":"dagster-bootstrap.d.ts","sourceRoot":"","sources":["../../../../src/factories/dagster/compositions/dagster-bootstrap.ts"],"names":[],"mappings":"AAgDA;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwF5B,CAAC"}
1
+ {"version":3,"file":"dagster-bootstrap.d.ts","sourceRoot":"","sources":["../../../../src/factories/dagster/compositions/dagster-bootstrap.ts"],"names":[],"mappings":"AAgDA;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwF5B,CAAC"}