@cloudfleet/sdk 0.10.0 → 0.11.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.
- package/dist/schemas.gen.d.ts +195 -40
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +915 -54
- package/dist/schemas.gen.js.map +1 -1
- package/dist/types.gen.d.ts +108 -33
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1729 -49
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +715 -22
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -503,13 +503,12 @@ export declare const FleetCreateInputSchema: {
|
|
|
503
503
|
readonly type: "object";
|
|
504
504
|
readonly properties: {
|
|
505
505
|
readonly cpu: {
|
|
506
|
-
readonly type: "
|
|
507
|
-
readonly format: "float";
|
|
506
|
+
readonly type: "integer";
|
|
508
507
|
readonly minimum: 0;
|
|
509
|
-
readonly
|
|
508
|
+
readonly maximum: 100000;
|
|
509
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
510
510
|
};
|
|
511
511
|
};
|
|
512
|
-
readonly required: readonly ["cpu"];
|
|
513
512
|
readonly additionalProperties: false;
|
|
514
513
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
515
514
|
};
|
|
@@ -518,14 +517,15 @@ export declare const FleetCreateInputSchema: {
|
|
|
518
517
|
readonly properties: {
|
|
519
518
|
readonly enabled: {
|
|
520
519
|
readonly type: "boolean";
|
|
521
|
-
readonly default: true;
|
|
522
520
|
};
|
|
523
521
|
readonly project: {
|
|
524
522
|
readonly type: "string";
|
|
525
|
-
readonly
|
|
523
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
524
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
525
|
+
readonly example: "my-cloudfleet-project";
|
|
526
526
|
};
|
|
527
527
|
};
|
|
528
|
-
readonly required: readonly ["
|
|
528
|
+
readonly required: readonly ["enabled"];
|
|
529
529
|
readonly additionalProperties: false;
|
|
530
530
|
};
|
|
531
531
|
readonly hetzner: {
|
|
@@ -533,14 +533,16 @@ export declare const FleetCreateInputSchema: {
|
|
|
533
533
|
readonly properties: {
|
|
534
534
|
readonly enabled: {
|
|
535
535
|
readonly type: "boolean";
|
|
536
|
-
readonly default: true;
|
|
537
536
|
};
|
|
538
537
|
readonly apiKey: {
|
|
539
538
|
readonly type: "string";
|
|
540
|
-
readonly
|
|
539
|
+
readonly maxLength: 64;
|
|
540
|
+
readonly minLength: 64;
|
|
541
|
+
readonly pattern: "^[A-Za-z0-9]+$";
|
|
542
|
+
readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
|
|
541
543
|
};
|
|
542
544
|
};
|
|
543
|
-
readonly required: readonly ["
|
|
545
|
+
readonly required: readonly ["enabled"];
|
|
544
546
|
readonly additionalProperties: false;
|
|
545
547
|
};
|
|
546
548
|
readonly aws: {
|
|
@@ -548,16 +550,67 @@ export declare const FleetCreateInputSchema: {
|
|
|
548
550
|
readonly properties: {
|
|
549
551
|
readonly enabled: {
|
|
550
552
|
readonly type: "boolean";
|
|
551
|
-
readonly default: true;
|
|
552
553
|
};
|
|
553
554
|
readonly controllerRoleArn: {
|
|
554
555
|
readonly type: "string";
|
|
555
|
-
readonly
|
|
556
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
557
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
558
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
556
559
|
};
|
|
557
560
|
};
|
|
558
|
-
readonly required: readonly ["
|
|
561
|
+
readonly required: readonly ["enabled"];
|
|
559
562
|
readonly additionalProperties: false;
|
|
560
563
|
};
|
|
564
|
+
readonly constraints: {
|
|
565
|
+
readonly type: "object";
|
|
566
|
+
readonly properties: {
|
|
567
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
568
|
+
readonly type: "array";
|
|
569
|
+
readonly items: {
|
|
570
|
+
readonly type: "string";
|
|
571
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
572
|
+
};
|
|
573
|
+
readonly minItems: 1;
|
|
574
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
575
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
576
|
+
};
|
|
577
|
+
readonly 'kubernetes.io/arch': {
|
|
578
|
+
readonly type: "array";
|
|
579
|
+
readonly items: {
|
|
580
|
+
readonly type: "string";
|
|
581
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
582
|
+
};
|
|
583
|
+
readonly minItems: 1;
|
|
584
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
585
|
+
readonly default: readonly ["amd64"];
|
|
586
|
+
};
|
|
587
|
+
readonly 'cfke.io/instance-family': {
|
|
588
|
+
readonly type: "array";
|
|
589
|
+
readonly items: {
|
|
590
|
+
readonly type: "string";
|
|
591
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
592
|
+
};
|
|
593
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
594
|
+
};
|
|
595
|
+
readonly 'topology.kubernetes.io/region': {
|
|
596
|
+
readonly type: "array";
|
|
597
|
+
readonly items: {
|
|
598
|
+
readonly type: "string";
|
|
599
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
600
|
+
};
|
|
601
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
readonly additionalProperties: false;
|
|
605
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
606
|
+
};
|
|
607
|
+
readonly scalingProfile: {
|
|
608
|
+
readonly type: "string";
|
|
609
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
610
|
+
readonly default: "conservative";
|
|
611
|
+
readonly example: "conservative";
|
|
612
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
613
|
+
};
|
|
561
614
|
readonly id: {
|
|
562
615
|
readonly type: "string";
|
|
563
616
|
readonly maxLength: 63;
|
|
@@ -577,13 +630,12 @@ export declare const FleetSchema: {
|
|
|
577
630
|
readonly type: "object";
|
|
578
631
|
readonly properties: {
|
|
579
632
|
readonly cpu: {
|
|
580
|
-
readonly type: "
|
|
581
|
-
readonly format: "float";
|
|
633
|
+
readonly type: "integer";
|
|
582
634
|
readonly minimum: 0;
|
|
583
|
-
readonly
|
|
635
|
+
readonly maximum: 100000;
|
|
636
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
584
637
|
};
|
|
585
638
|
};
|
|
586
|
-
readonly required: readonly ["cpu"];
|
|
587
639
|
readonly additionalProperties: false;
|
|
588
640
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
589
641
|
};
|
|
@@ -592,14 +644,15 @@ export declare const FleetSchema: {
|
|
|
592
644
|
readonly properties: {
|
|
593
645
|
readonly enabled: {
|
|
594
646
|
readonly type: "boolean";
|
|
595
|
-
readonly default: true;
|
|
596
647
|
};
|
|
597
648
|
readonly project: {
|
|
598
649
|
readonly type: "string";
|
|
599
|
-
readonly
|
|
650
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
651
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
652
|
+
readonly example: "my-cloudfleet-project";
|
|
600
653
|
};
|
|
601
654
|
};
|
|
602
|
-
readonly required: readonly ["
|
|
655
|
+
readonly required: readonly ["enabled"];
|
|
603
656
|
readonly additionalProperties: false;
|
|
604
657
|
};
|
|
605
658
|
readonly hetzner: {
|
|
@@ -607,14 +660,14 @@ export declare const FleetSchema: {
|
|
|
607
660
|
readonly properties: {
|
|
608
661
|
readonly enabled: {
|
|
609
662
|
readonly type: "boolean";
|
|
610
|
-
readonly default: true;
|
|
611
663
|
};
|
|
612
664
|
readonly apiKey: {
|
|
613
665
|
readonly type: "string";
|
|
614
|
-
readonly
|
|
666
|
+
readonly pattern: "^\\*{64}$";
|
|
667
|
+
readonly description: "Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.";
|
|
615
668
|
};
|
|
616
669
|
};
|
|
617
|
-
readonly required: readonly ["
|
|
670
|
+
readonly required: readonly ["enabled"];
|
|
618
671
|
readonly additionalProperties: false;
|
|
619
672
|
};
|
|
620
673
|
readonly aws: {
|
|
@@ -622,16 +675,67 @@ export declare const FleetSchema: {
|
|
|
622
675
|
readonly properties: {
|
|
623
676
|
readonly enabled: {
|
|
624
677
|
readonly type: "boolean";
|
|
625
|
-
readonly default: true;
|
|
626
678
|
};
|
|
627
679
|
readonly controllerRoleArn: {
|
|
628
680
|
readonly type: "string";
|
|
629
|
-
readonly
|
|
681
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
682
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
683
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
630
684
|
};
|
|
631
685
|
};
|
|
632
|
-
readonly required: readonly ["
|
|
686
|
+
readonly required: readonly ["enabled"];
|
|
633
687
|
readonly additionalProperties: false;
|
|
634
688
|
};
|
|
689
|
+
readonly constraints: {
|
|
690
|
+
readonly type: "object";
|
|
691
|
+
readonly properties: {
|
|
692
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
693
|
+
readonly type: "array";
|
|
694
|
+
readonly items: {
|
|
695
|
+
readonly type: "string";
|
|
696
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
697
|
+
};
|
|
698
|
+
readonly minItems: 1;
|
|
699
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
700
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
701
|
+
};
|
|
702
|
+
readonly 'kubernetes.io/arch': {
|
|
703
|
+
readonly type: "array";
|
|
704
|
+
readonly items: {
|
|
705
|
+
readonly type: "string";
|
|
706
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
707
|
+
};
|
|
708
|
+
readonly minItems: 1;
|
|
709
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
710
|
+
readonly default: readonly ["amd64"];
|
|
711
|
+
};
|
|
712
|
+
readonly 'cfke.io/instance-family': {
|
|
713
|
+
readonly type: "array";
|
|
714
|
+
readonly items: {
|
|
715
|
+
readonly type: "string";
|
|
716
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
717
|
+
};
|
|
718
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
719
|
+
};
|
|
720
|
+
readonly 'topology.kubernetes.io/region': {
|
|
721
|
+
readonly type: "array";
|
|
722
|
+
readonly items: {
|
|
723
|
+
readonly type: "string";
|
|
724
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
725
|
+
};
|
|
726
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
readonly additionalProperties: false;
|
|
730
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
731
|
+
};
|
|
732
|
+
readonly scalingProfile: {
|
|
733
|
+
readonly type: "string";
|
|
734
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
735
|
+
readonly default: "conservative";
|
|
736
|
+
readonly example: "conservative";
|
|
737
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
738
|
+
};
|
|
635
739
|
readonly id: {
|
|
636
740
|
readonly type: "string";
|
|
637
741
|
readonly maxLength: 63;
|
|
@@ -641,7 +745,7 @@ export declare const FleetSchema: {
|
|
|
641
745
|
readonly example: "new-clouds-fleet";
|
|
642
746
|
};
|
|
643
747
|
};
|
|
644
|
-
readonly required: readonly ["id"];
|
|
748
|
+
readonly required: readonly ["scalingProfile", "id"];
|
|
645
749
|
readonly additionalProperties: false;
|
|
646
750
|
};
|
|
647
751
|
export declare const FleetUpdateInputSchema: {
|
|
@@ -651,13 +755,12 @@ export declare const FleetUpdateInputSchema: {
|
|
|
651
755
|
readonly type: "object";
|
|
652
756
|
readonly properties: {
|
|
653
757
|
readonly cpu: {
|
|
654
|
-
readonly type: "
|
|
655
|
-
readonly format: "float";
|
|
758
|
+
readonly type: "integer";
|
|
656
759
|
readonly minimum: 0;
|
|
657
|
-
readonly
|
|
760
|
+
readonly maximum: 100000;
|
|
761
|
+
readonly description: "CPU limit in cores. Maximum 100,000.";
|
|
658
762
|
};
|
|
659
763
|
};
|
|
660
|
-
readonly required: readonly ["cpu"];
|
|
661
764
|
readonly additionalProperties: false;
|
|
662
765
|
readonly description: "Limits define a set of bounds for provisioning capacity.";
|
|
663
766
|
};
|
|
@@ -666,14 +769,15 @@ export declare const FleetUpdateInputSchema: {
|
|
|
666
769
|
readonly properties: {
|
|
667
770
|
readonly enabled: {
|
|
668
771
|
readonly type: "boolean";
|
|
669
|
-
readonly default: true;
|
|
670
772
|
};
|
|
671
773
|
readonly project: {
|
|
672
774
|
readonly type: "string";
|
|
673
|
-
readonly
|
|
775
|
+
readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
|
|
776
|
+
readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
|
|
777
|
+
readonly example: "my-cloudfleet-project";
|
|
674
778
|
};
|
|
675
779
|
};
|
|
676
|
-
readonly required: readonly ["
|
|
780
|
+
readonly required: readonly ["enabled"];
|
|
677
781
|
readonly additionalProperties: false;
|
|
678
782
|
};
|
|
679
783
|
readonly hetzner: {
|
|
@@ -681,14 +785,16 @@ export declare const FleetUpdateInputSchema: {
|
|
|
681
785
|
readonly properties: {
|
|
682
786
|
readonly enabled: {
|
|
683
787
|
readonly type: "boolean";
|
|
684
|
-
readonly default: true;
|
|
685
788
|
};
|
|
686
789
|
readonly apiKey: {
|
|
687
790
|
readonly type: "string";
|
|
688
|
-
readonly
|
|
791
|
+
readonly maxLength: 64;
|
|
792
|
+
readonly minLength: 64;
|
|
793
|
+
readonly pattern: "^[A-Za-z0-9]+$";
|
|
794
|
+
readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
|
|
689
795
|
};
|
|
690
796
|
};
|
|
691
|
-
readonly required: readonly ["
|
|
797
|
+
readonly required: readonly ["enabled"];
|
|
692
798
|
readonly additionalProperties: false;
|
|
693
799
|
};
|
|
694
800
|
readonly aws: {
|
|
@@ -696,17 +802,66 @@ export declare const FleetUpdateInputSchema: {
|
|
|
696
802
|
readonly properties: {
|
|
697
803
|
readonly enabled: {
|
|
698
804
|
readonly type: "boolean";
|
|
699
|
-
readonly default: true;
|
|
700
805
|
};
|
|
701
806
|
readonly controllerRoleArn: {
|
|
702
807
|
readonly type: "string";
|
|
703
|
-
readonly
|
|
808
|
+
readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
|
|
809
|
+
readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
|
|
810
|
+
readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
|
|
811
|
+
};
|
|
812
|
+
};
|
|
813
|
+
readonly required: readonly ["enabled"];
|
|
814
|
+
readonly additionalProperties: false;
|
|
815
|
+
};
|
|
816
|
+
readonly constraints: {
|
|
817
|
+
readonly type: "object";
|
|
818
|
+
readonly properties: {
|
|
819
|
+
readonly 'karpenter.sh/capacity-type': {
|
|
820
|
+
readonly type: "array";
|
|
821
|
+
readonly items: {
|
|
822
|
+
readonly type: "string";
|
|
823
|
+
readonly enum: readonly ["on-demand", "spot"];
|
|
824
|
+
};
|
|
825
|
+
readonly minItems: 1;
|
|
826
|
+
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
827
|
+
};
|
|
828
|
+
readonly 'kubernetes.io/arch': {
|
|
829
|
+
readonly type: "array";
|
|
830
|
+
readonly items: {
|
|
831
|
+
readonly type: "string";
|
|
832
|
+
readonly enum: readonly ["amd64", "arm64"];
|
|
833
|
+
};
|
|
834
|
+
readonly minItems: 1;
|
|
835
|
+
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
836
|
+
};
|
|
837
|
+
readonly 'cfke.io/instance-family': {
|
|
838
|
+
readonly type: "array";
|
|
839
|
+
readonly items: {
|
|
840
|
+
readonly type: "string";
|
|
841
|
+
readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
|
|
842
|
+
};
|
|
843
|
+
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
844
|
+
};
|
|
845
|
+
readonly 'topology.kubernetes.io/region': {
|
|
846
|
+
readonly type: "array";
|
|
847
|
+
readonly items: {
|
|
848
|
+
readonly type: "string";
|
|
849
|
+
readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
|
|
850
|
+
};
|
|
851
|
+
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
704
852
|
};
|
|
705
853
|
};
|
|
706
|
-
readonly required: readonly ["controllerRoleArn"];
|
|
707
854
|
readonly additionalProperties: false;
|
|
855
|
+
readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
|
|
856
|
+
};
|
|
857
|
+
readonly scalingProfile: {
|
|
858
|
+
readonly type: "string";
|
|
859
|
+
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
860
|
+
readonly example: "conservative";
|
|
861
|
+
readonly enum: readonly ["aggressive", "conservative"];
|
|
708
862
|
};
|
|
709
863
|
};
|
|
864
|
+
readonly required: readonly ["scalingProfile"];
|
|
710
865
|
readonly additionalProperties: false;
|
|
711
866
|
};
|
|
712
867
|
export declare const InviteSchema: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoNvB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DvB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4Fd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAmBzB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD3B,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoG/B,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;CA+B3B,CAAC;AAEX,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|