@firestartr/cli 1.49.0-snapshot-11 → 1.49.0-snapshot-13
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/build/index.js +1023 -222
- package/build/packages/cdk8s_renderer/imports/firestartr.dev.d.ts +16 -108
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +91 -83
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts +91 -71
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/index.d.ts +91 -71
- package/build/packages/cdk8s_renderer/src/claims/github/component.secrets-vars.schema.d.ts +0 -12
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +0 -12
- package/build/packages/cdk8s_renderer/src/utils/repositoryClaimUtils.d.ts +1 -3
- package/build/packages/cdk8s_renderer/src/validations/crossReferences.d.ts +2 -0
- package/build/packages/github/index.d.ts +5 -0
- package/build/packages/github/src/encrypt.d.ts +12 -0
- package/build/packages/provisioner/src/entities/firestartrgithubrepository/helpers/RepositorySecret.d.ts +4 -0
- package/build/packages/provisioner/src/entities/firestartrgithubrepository/helpers/RepositoryVariable.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1088,9 +1088,9 @@ export interface FirestartrGithubRepositorySpecSecrets {
|
|
|
1088
1088
|
*/
|
|
1089
1089
|
readonly codespaces?: FirestartrGithubRepositorySpecSecretsCodespaces[];
|
|
1090
1090
|
/**
|
|
1091
|
-
* @schema FirestartrGithubRepositorySpecSecrets#
|
|
1091
|
+
* @schema FirestartrGithubRepositorySpecSecrets#dependabot
|
|
1092
1092
|
*/
|
|
1093
|
-
readonly
|
|
1093
|
+
readonly dependabot?: FirestartrGithubRepositorySpecSecretsDependabot[];
|
|
1094
1094
|
}
|
|
1095
1095
|
/**
|
|
1096
1096
|
* Converts an object of type 'FirestartrGithubRepositorySpecSecrets' to JSON representation.
|
|
@@ -1108,14 +1108,6 @@ export interface FirestartrGithubRepositorySpecVars {
|
|
|
1108
1108
|
* @schema FirestartrGithubRepositorySpecVars#actions
|
|
1109
1109
|
*/
|
|
1110
1110
|
readonly actions?: FirestartrGithubRepositorySpecVarsActions[];
|
|
1111
|
-
/**
|
|
1112
|
-
* @schema FirestartrGithubRepositorySpecVars#dependabot
|
|
1113
|
-
*/
|
|
1114
|
-
readonly dependabot?: FirestartrGithubRepositorySpecVarsDependabot[];
|
|
1115
|
-
/**
|
|
1116
|
-
* @schema FirestartrGithubRepositorySpecVars#codespaces
|
|
1117
|
-
*/
|
|
1118
|
-
readonly codespaces?: FirestartrGithubRepositorySpecVarsCodespaces[];
|
|
1119
1111
|
}
|
|
1120
1112
|
/**
|
|
1121
1113
|
* Converts an object of type 'FirestartrGithubRepositorySpecVars' to JSON representation.
|
|
@@ -1340,22 +1332,22 @@ export interface FirestartrGithubRepositorySpecSecretsCodespaces {
|
|
|
1340
1332
|
*/
|
|
1341
1333
|
export declare function toJson_FirestartrGithubRepositorySpecSecretsCodespaces(obj: FirestartrGithubRepositorySpecSecretsCodespaces | undefined): Record<string, any> | undefined;
|
|
1342
1334
|
/**
|
|
1343
|
-
* @schema
|
|
1335
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabot
|
|
1344
1336
|
*/
|
|
1345
|
-
export interface
|
|
1337
|
+
export interface FirestartrGithubRepositorySpecSecretsDependabot {
|
|
1346
1338
|
/**
|
|
1347
|
-
* @schema
|
|
1339
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabot#name
|
|
1348
1340
|
*/
|
|
1349
1341
|
readonly name: string;
|
|
1350
1342
|
/**
|
|
1351
|
-
* @schema
|
|
1343
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabot#ref
|
|
1352
1344
|
*/
|
|
1353
|
-
readonly ref:
|
|
1345
|
+
readonly ref: FirestartrGithubRepositorySpecSecretsDependabotRef;
|
|
1354
1346
|
}
|
|
1355
1347
|
/**
|
|
1356
|
-
* Converts an object of type '
|
|
1348
|
+
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsDependabot' to JSON representation.
|
|
1357
1349
|
*/
|
|
1358
|
-
export declare function
|
|
1350
|
+
export declare function toJson_FirestartrGithubRepositorySpecSecretsDependabot(obj: FirestartrGithubRepositorySpecSecretsDependabot | undefined): Record<string, any> | undefined;
|
|
1359
1351
|
/**
|
|
1360
1352
|
* @schema FirestartrGithubRepositorySpecVarsVariableItemSchema
|
|
1361
1353
|
*/
|
|
@@ -1398,48 +1390,6 @@ export interface FirestartrGithubRepositorySpecVarsActions {
|
|
|
1398
1390
|
* Converts an object of type 'FirestartrGithubRepositorySpecVarsActions' to JSON representation.
|
|
1399
1391
|
*/
|
|
1400
1392
|
export declare function toJson_FirestartrGithubRepositorySpecVarsActions(obj: FirestartrGithubRepositorySpecVarsActions | undefined): Record<string, any> | undefined;
|
|
1401
|
-
/**
|
|
1402
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabot
|
|
1403
|
-
*/
|
|
1404
|
-
export interface FirestartrGithubRepositorySpecVarsDependabot {
|
|
1405
|
-
/**
|
|
1406
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabot#name
|
|
1407
|
-
*/
|
|
1408
|
-
readonly name?: string;
|
|
1409
|
-
/**
|
|
1410
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabot#value
|
|
1411
|
-
*/
|
|
1412
|
-
readonly value?: string;
|
|
1413
|
-
/**
|
|
1414
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabot#ref
|
|
1415
|
-
*/
|
|
1416
|
-
readonly ref?: FirestartrGithubRepositorySpecVarsDependabotRef;
|
|
1417
|
-
}
|
|
1418
|
-
/**
|
|
1419
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecVarsDependabot' to JSON representation.
|
|
1420
|
-
*/
|
|
1421
|
-
export declare function toJson_FirestartrGithubRepositorySpecVarsDependabot(obj: FirestartrGithubRepositorySpecVarsDependabot | undefined): Record<string, any> | undefined;
|
|
1422
|
-
/**
|
|
1423
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespaces
|
|
1424
|
-
*/
|
|
1425
|
-
export interface FirestartrGithubRepositorySpecVarsCodespaces {
|
|
1426
|
-
/**
|
|
1427
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespaces#name
|
|
1428
|
-
*/
|
|
1429
|
-
readonly name?: string;
|
|
1430
|
-
/**
|
|
1431
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespaces#value
|
|
1432
|
-
*/
|
|
1433
|
-
readonly value?: string;
|
|
1434
|
-
/**
|
|
1435
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespaces#ref
|
|
1436
|
-
*/
|
|
1437
|
-
readonly ref?: FirestartrGithubRepositorySpecVarsCodespacesRef;
|
|
1438
|
-
}
|
|
1439
|
-
/**
|
|
1440
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecVarsCodespaces' to JSON representation.
|
|
1441
|
-
*/
|
|
1442
|
-
export declare function toJson_FirestartrGithubRepositorySpecVarsCodespaces(obj: FirestartrGithubRepositorySpecVarsCodespaces | undefined): Record<string, any> | undefined;
|
|
1443
1393
|
/**
|
|
1444
1394
|
* @schema FirestartrGithubRepositorySpecWriteConnectionSecretToRefOutputs
|
|
1445
1395
|
*/
|
|
@@ -1530,26 +1480,26 @@ export interface FirestartrGithubRepositorySpecSecretsCodespacesRef {
|
|
|
1530
1480
|
*/
|
|
1531
1481
|
export declare function toJson_FirestartrGithubRepositorySpecSecretsCodespacesRef(obj: FirestartrGithubRepositorySpecSecretsCodespacesRef | undefined): Record<string, any> | undefined;
|
|
1532
1482
|
/**
|
|
1533
|
-
* @schema
|
|
1483
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef
|
|
1534
1484
|
*/
|
|
1535
|
-
export interface
|
|
1485
|
+
export interface FirestartrGithubRepositorySpecSecretsDependabotRef {
|
|
1536
1486
|
/**
|
|
1537
|
-
* @schema
|
|
1487
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#kind
|
|
1538
1488
|
*/
|
|
1539
1489
|
readonly kind: string;
|
|
1540
1490
|
/**
|
|
1541
|
-
* @schema
|
|
1491
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#name
|
|
1542
1492
|
*/
|
|
1543
1493
|
readonly name: string;
|
|
1544
1494
|
/**
|
|
1545
|
-
* @schema
|
|
1495
|
+
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#key
|
|
1546
1496
|
*/
|
|
1547
1497
|
readonly key: string;
|
|
1548
1498
|
}
|
|
1549
1499
|
/**
|
|
1550
|
-
* Converts an object of type '
|
|
1500
|
+
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsDependabotRef' to JSON representation.
|
|
1551
1501
|
*/
|
|
1552
|
-
export declare function
|
|
1502
|
+
export declare function toJson_FirestartrGithubRepositorySpecSecretsDependabotRef(obj: FirestartrGithubRepositorySpecSecretsDependabotRef | undefined): Record<string, any> | undefined;
|
|
1553
1503
|
/**
|
|
1554
1504
|
* @schema FirestartrGithubRepositorySpecVarsVariableItemSchemaRef
|
|
1555
1505
|
*/
|
|
@@ -1592,48 +1542,6 @@ export interface FirestartrGithubRepositorySpecVarsActionsRef {
|
|
|
1592
1542
|
* Converts an object of type 'FirestartrGithubRepositorySpecVarsActionsRef' to JSON representation.
|
|
1593
1543
|
*/
|
|
1594
1544
|
export declare function toJson_FirestartrGithubRepositorySpecVarsActionsRef(obj: FirestartrGithubRepositorySpecVarsActionsRef | undefined): Record<string, any> | undefined;
|
|
1595
|
-
/**
|
|
1596
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabotRef
|
|
1597
|
-
*/
|
|
1598
|
-
export interface FirestartrGithubRepositorySpecVarsDependabotRef {
|
|
1599
|
-
/**
|
|
1600
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabotRef#kind
|
|
1601
|
-
*/
|
|
1602
|
-
readonly kind: string;
|
|
1603
|
-
/**
|
|
1604
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabotRef#name
|
|
1605
|
-
*/
|
|
1606
|
-
readonly name: string;
|
|
1607
|
-
/**
|
|
1608
|
-
* @schema FirestartrGithubRepositorySpecVarsDependabotRef#key
|
|
1609
|
-
*/
|
|
1610
|
-
readonly key: string;
|
|
1611
|
-
}
|
|
1612
|
-
/**
|
|
1613
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecVarsDependabotRef' to JSON representation.
|
|
1614
|
-
*/
|
|
1615
|
-
export declare function toJson_FirestartrGithubRepositorySpecVarsDependabotRef(obj: FirestartrGithubRepositorySpecVarsDependabotRef | undefined): Record<string, any> | undefined;
|
|
1616
|
-
/**
|
|
1617
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespacesRef
|
|
1618
|
-
*/
|
|
1619
|
-
export interface FirestartrGithubRepositorySpecVarsCodespacesRef {
|
|
1620
|
-
/**
|
|
1621
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespacesRef#kind
|
|
1622
|
-
*/
|
|
1623
|
-
readonly kind: string;
|
|
1624
|
-
/**
|
|
1625
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespacesRef#name
|
|
1626
|
-
*/
|
|
1627
|
-
readonly name: string;
|
|
1628
|
-
/**
|
|
1629
|
-
* @schema FirestartrGithubRepositorySpecVarsCodespacesRef#key
|
|
1630
|
-
*/
|
|
1631
|
-
readonly key: string;
|
|
1632
|
-
}
|
|
1633
|
-
/**
|
|
1634
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecVarsCodespacesRef' to JSON representation.
|
|
1635
|
-
*/
|
|
1636
|
-
export declare function toJson_FirestartrGithubRepositorySpecVarsCodespacesRef(obj: FirestartrGithubRepositorySpecVarsCodespacesRef | undefined): Record<string, any> | undefined;
|
|
1637
1545
|
/**
|
|
1638
1546
|
* @schema FirestartrGithubRepositorySpecContextBackendRefKind
|
|
1639
1547
|
*/
|
|
@@ -575,18 +575,6 @@ declare const schemas: {
|
|
|
575
575
|
$ref: string;
|
|
576
576
|
};
|
|
577
577
|
};
|
|
578
|
-
codespaces: {
|
|
579
|
-
type: string;
|
|
580
|
-
items: {
|
|
581
|
-
$ref: string;
|
|
582
|
-
};
|
|
583
|
-
};
|
|
584
|
-
dependabot: {
|
|
585
|
-
type: string;
|
|
586
|
-
items: {
|
|
587
|
-
$ref: string;
|
|
588
|
-
};
|
|
589
|
-
};
|
|
590
578
|
};
|
|
591
579
|
additionalProperties: boolean;
|
|
592
580
|
};
|
|
@@ -849,100 +837,120 @@ declare const schemas: {
|
|
|
849
837
|
$schema: string;
|
|
850
838
|
$id: string;
|
|
851
839
|
definitions: {
|
|
852
|
-
|
|
840
|
+
SecretStore: {
|
|
853
841
|
$id: string;
|
|
854
842
|
type: string;
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
843
|
+
properties: {
|
|
844
|
+
name: {
|
|
845
|
+
type: string;
|
|
846
|
+
};
|
|
847
|
+
kind: {
|
|
848
|
+
type: string;
|
|
849
|
+
enum: string[];
|
|
850
|
+
};
|
|
851
|
+
};
|
|
852
|
+
required: string[];
|
|
853
|
+
};
|
|
854
|
+
ExternalSecretsSection: {
|
|
855
|
+
$id: string;
|
|
856
|
+
type: string;
|
|
857
|
+
properties: {
|
|
858
|
+
refreshInterval: {
|
|
859
|
+
type: string;
|
|
860
|
+
};
|
|
861
|
+
secrets: {
|
|
862
|
+
type: string;
|
|
863
|
+
items: {
|
|
864
|
+
additionalProperties: boolean;
|
|
865
865
|
type: string;
|
|
866
866
|
properties: {
|
|
867
|
-
|
|
867
|
+
secretName: {
|
|
868
868
|
type: string;
|
|
869
869
|
};
|
|
870
|
-
|
|
870
|
+
remoteRef: {
|
|
871
871
|
type: string;
|
|
872
|
-
enum: string[];
|
|
873
872
|
};
|
|
874
873
|
};
|
|
875
874
|
required: string[];
|
|
876
875
|
};
|
|
877
|
-
|
|
876
|
+
};
|
|
877
|
+
};
|
|
878
|
+
};
|
|
879
|
+
PushSecretsSection: {
|
|
880
|
+
$id: string;
|
|
881
|
+
type: string;
|
|
882
|
+
items: {
|
|
883
|
+
type: string;
|
|
884
|
+
properties: {
|
|
885
|
+
data: {
|
|
878
886
|
type: string;
|
|
879
|
-
items: {
|
|
880
|
-
type: string;
|
|
881
|
-
properties: {
|
|
882
|
-
data: {
|
|
883
|
-
type: string;
|
|
884
|
-
};
|
|
885
|
-
template: {
|
|
886
|
-
type: string;
|
|
887
|
-
};
|
|
888
|
-
secretName: {
|
|
889
|
-
type: string;
|
|
890
|
-
};
|
|
891
|
-
refreshInterval: {
|
|
892
|
-
type: string;
|
|
893
|
-
};
|
|
894
|
-
generator: {
|
|
895
|
-
type: string;
|
|
896
|
-
properties: {
|
|
897
|
-
name: {
|
|
898
|
-
type: string;
|
|
899
|
-
};
|
|
900
|
-
kind: {
|
|
901
|
-
type: string;
|
|
902
|
-
enum: string[];
|
|
903
|
-
};
|
|
904
|
-
apiVersion: {
|
|
905
|
-
type: string;
|
|
906
|
-
};
|
|
907
|
-
conversionStrategy: {
|
|
908
|
-
type: string;
|
|
909
|
-
};
|
|
910
|
-
outputKey: {
|
|
911
|
-
type: string;
|
|
912
|
-
};
|
|
913
|
-
};
|
|
914
|
-
required: string[];
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
required: string[];
|
|
918
|
-
};
|
|
919
887
|
};
|
|
920
|
-
|
|
888
|
+
template: {
|
|
889
|
+
type: string;
|
|
890
|
+
};
|
|
891
|
+
secretName: {
|
|
892
|
+
type: string;
|
|
893
|
+
};
|
|
894
|
+
refreshInterval: {
|
|
895
|
+
type: string;
|
|
896
|
+
};
|
|
897
|
+
generator: {
|
|
921
898
|
type: string;
|
|
922
899
|
properties: {
|
|
923
|
-
|
|
900
|
+
name: {
|
|
924
901
|
type: string;
|
|
925
902
|
};
|
|
926
|
-
|
|
903
|
+
kind: {
|
|
904
|
+
type: string;
|
|
905
|
+
enum: string[];
|
|
906
|
+
};
|
|
907
|
+
apiVersion: {
|
|
908
|
+
type: string;
|
|
909
|
+
};
|
|
910
|
+
conversionStrategy: {
|
|
911
|
+
type: string;
|
|
912
|
+
};
|
|
913
|
+
outputKey: {
|
|
927
914
|
type: string;
|
|
928
|
-
items: {
|
|
929
|
-
additionalProperties: boolean;
|
|
930
|
-
type: string;
|
|
931
|
-
properties: {
|
|
932
|
-
secretName: {
|
|
933
|
-
type: string;
|
|
934
|
-
};
|
|
935
|
-
remoteRef: {
|
|
936
|
-
type: string;
|
|
937
|
-
};
|
|
938
|
-
};
|
|
939
|
-
required: string[];
|
|
940
|
-
};
|
|
941
915
|
};
|
|
942
916
|
};
|
|
917
|
+
required: string[];
|
|
943
918
|
};
|
|
944
919
|
};
|
|
945
920
|
required: string[];
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
ExternalSecretsProvider: {
|
|
924
|
+
$id: string;
|
|
925
|
+
type: string;
|
|
926
|
+
description: string;
|
|
927
|
+
allOf: ({
|
|
928
|
+
$ref: string;
|
|
929
|
+
anyOf?: undefined;
|
|
930
|
+
} | {
|
|
931
|
+
anyOf: ({
|
|
932
|
+
properties: {
|
|
933
|
+
externalSecrets: {
|
|
934
|
+
$ref: string;
|
|
935
|
+
};
|
|
936
|
+
secretStore: {
|
|
937
|
+
$ref: string;
|
|
938
|
+
};
|
|
939
|
+
pushSecrets?: undefined;
|
|
940
|
+
};
|
|
941
|
+
required: string[];
|
|
942
|
+
} | {
|
|
943
|
+
properties: {
|
|
944
|
+
pushSecrets: {
|
|
945
|
+
$ref: string;
|
|
946
|
+
};
|
|
947
|
+
secretStore: {
|
|
948
|
+
$ref: string;
|
|
949
|
+
};
|
|
950
|
+
externalSecrets?: undefined;
|
|
951
|
+
};
|
|
952
|
+
required: string[];
|
|
953
|
+
})[];
|
|
946
954
|
$ref?: undefined;
|
|
947
955
|
})[];
|
|
948
956
|
};
|
package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts
CHANGED
|
@@ -2,100 +2,120 @@ declare const _default: {
|
|
|
2
2
|
$schema: string;
|
|
3
3
|
$id: string;
|
|
4
4
|
definitions: {
|
|
5
|
-
|
|
5
|
+
SecretStore: {
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
properties: {
|
|
9
|
+
name: {
|
|
10
|
+
type: string;
|
|
11
|
+
};
|
|
12
|
+
kind: {
|
|
13
|
+
type: string;
|
|
14
|
+
enum: string[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
required: string[];
|
|
18
|
+
};
|
|
19
|
+
ExternalSecretsSection: {
|
|
20
|
+
$id: string;
|
|
21
|
+
type: string;
|
|
22
|
+
properties: {
|
|
23
|
+
refreshInterval: {
|
|
24
|
+
type: string;
|
|
25
|
+
};
|
|
26
|
+
secrets: {
|
|
27
|
+
type: string;
|
|
28
|
+
items: {
|
|
29
|
+
additionalProperties: boolean;
|
|
18
30
|
type: string;
|
|
19
31
|
properties: {
|
|
20
|
-
|
|
32
|
+
secretName: {
|
|
21
33
|
type: string;
|
|
22
34
|
};
|
|
23
|
-
|
|
35
|
+
remoteRef: {
|
|
24
36
|
type: string;
|
|
25
|
-
enum: string[];
|
|
26
37
|
};
|
|
27
38
|
};
|
|
28
39
|
required: string[];
|
|
29
40
|
};
|
|
30
|
-
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
PushSecretsSection: {
|
|
45
|
+
$id: string;
|
|
46
|
+
type: string;
|
|
47
|
+
items: {
|
|
48
|
+
type: string;
|
|
49
|
+
properties: {
|
|
50
|
+
data: {
|
|
51
|
+
type: string;
|
|
52
|
+
};
|
|
53
|
+
template: {
|
|
54
|
+
type: string;
|
|
55
|
+
};
|
|
56
|
+
secretName: {
|
|
57
|
+
type: string;
|
|
58
|
+
};
|
|
59
|
+
refreshInterval: {
|
|
31
60
|
type: string;
|
|
32
|
-
items: {
|
|
33
|
-
type: string;
|
|
34
|
-
properties: {
|
|
35
|
-
data: {
|
|
36
|
-
type: string;
|
|
37
|
-
};
|
|
38
|
-
template: {
|
|
39
|
-
type: string;
|
|
40
|
-
};
|
|
41
|
-
secretName: {
|
|
42
|
-
type: string;
|
|
43
|
-
};
|
|
44
|
-
refreshInterval: {
|
|
45
|
-
type: string;
|
|
46
|
-
};
|
|
47
|
-
generator: {
|
|
48
|
-
type: string;
|
|
49
|
-
properties: {
|
|
50
|
-
name: {
|
|
51
|
-
type: string;
|
|
52
|
-
};
|
|
53
|
-
kind: {
|
|
54
|
-
type: string;
|
|
55
|
-
enum: string[];
|
|
56
|
-
};
|
|
57
|
-
apiVersion: {
|
|
58
|
-
type: string;
|
|
59
|
-
};
|
|
60
|
-
conversionStrategy: {
|
|
61
|
-
type: string;
|
|
62
|
-
};
|
|
63
|
-
outputKey: {
|
|
64
|
-
type: string;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
required: string[];
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
required: string[];
|
|
71
|
-
};
|
|
72
61
|
};
|
|
73
|
-
|
|
62
|
+
generator: {
|
|
74
63
|
type: string;
|
|
75
64
|
properties: {
|
|
76
|
-
|
|
65
|
+
name: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
kind: {
|
|
69
|
+
type: string;
|
|
70
|
+
enum: string[];
|
|
71
|
+
};
|
|
72
|
+
apiVersion: {
|
|
77
73
|
type: string;
|
|
78
74
|
};
|
|
79
|
-
|
|
75
|
+
conversionStrategy: {
|
|
76
|
+
type: string;
|
|
77
|
+
};
|
|
78
|
+
outputKey: {
|
|
80
79
|
type: string;
|
|
81
|
-
items: {
|
|
82
|
-
additionalProperties: boolean;
|
|
83
|
-
type: string;
|
|
84
|
-
properties: {
|
|
85
|
-
secretName: {
|
|
86
|
-
type: string;
|
|
87
|
-
};
|
|
88
|
-
remoteRef: {
|
|
89
|
-
type: string;
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
required: string[];
|
|
93
|
-
};
|
|
94
80
|
};
|
|
95
81
|
};
|
|
82
|
+
required: string[];
|
|
96
83
|
};
|
|
97
84
|
};
|
|
98
85
|
required: string[];
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
ExternalSecretsProvider: {
|
|
89
|
+
$id: string;
|
|
90
|
+
type: string;
|
|
91
|
+
description: string;
|
|
92
|
+
allOf: ({
|
|
93
|
+
$ref: string;
|
|
94
|
+
anyOf?: undefined;
|
|
95
|
+
} | {
|
|
96
|
+
anyOf: ({
|
|
97
|
+
properties: {
|
|
98
|
+
externalSecrets: {
|
|
99
|
+
$ref: string;
|
|
100
|
+
};
|
|
101
|
+
secretStore: {
|
|
102
|
+
$ref: string;
|
|
103
|
+
};
|
|
104
|
+
pushSecrets?: undefined;
|
|
105
|
+
};
|
|
106
|
+
required: string[];
|
|
107
|
+
} | {
|
|
108
|
+
properties: {
|
|
109
|
+
pushSecrets: {
|
|
110
|
+
$ref: string;
|
|
111
|
+
};
|
|
112
|
+
secretStore: {
|
|
113
|
+
$ref: string;
|
|
114
|
+
};
|
|
115
|
+
externalSecrets?: undefined;
|
|
116
|
+
};
|
|
117
|
+
required: string[];
|
|
118
|
+
})[];
|
|
99
119
|
$ref?: undefined;
|
|
100
120
|
})[];
|
|
101
121
|
};
|