@kilic.dev/pulumi-k8s-crds 1.6.6 → 1.7.0
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/types/input.d.ts +1123 -228
- package/dist/types/output.d.ts +1148 -236
- package/package.json +1 -1
package/dist/types/input.d.ts
CHANGED
|
@@ -29,9 +29,9 @@ export declare namespace acme {
|
|
|
29
29
|
*/
|
|
30
30
|
authorizationURL?: pulumi.Input<string>;
|
|
31
31
|
/**
|
|
32
|
-
* dnsName is the identifier that this challenge is for, e.g
|
|
32
|
+
* dnsName is the identifier that this challenge is for, e.g., example.com.
|
|
33
33
|
* If the requested DNSName is a 'wildcard', this field MUST be set to the
|
|
34
|
-
* non-wildcard domain, e.g
|
|
34
|
+
* non-wildcard domain, e.g., for `*.example.com`, it must be `example.com`.
|
|
35
35
|
*/
|
|
36
36
|
dnsName?: pulumi.Input<string>;
|
|
37
37
|
issuerRef?: pulumi.Input<inputs.acme.v1.ChallengeSpecIssuerRef>;
|
|
@@ -116,9 +116,9 @@ export declare namespace acme {
|
|
|
116
116
|
*/
|
|
117
117
|
authorizationURL?: pulumi.Input<string>;
|
|
118
118
|
/**
|
|
119
|
-
* dnsName is the identifier that this challenge is for, e.g
|
|
119
|
+
* dnsName is the identifier that this challenge is for, e.g., example.com.
|
|
120
120
|
* If the requested DNSName is a 'wildcard', this field MUST be set to the
|
|
121
|
-
* non-wildcard domain, e.g
|
|
121
|
+
* non-wildcard domain, e.g., for `*.example.com`, it must be `example.com`.
|
|
122
122
|
*/
|
|
123
123
|
dnsName?: pulumi.Input<string>;
|
|
124
124
|
issuerRef?: pulumi.Input<inputs.acme.v1.ChallengeSpecIssuerRefPatch>;
|
|
@@ -1053,7 +1053,7 @@ export declare namespace acme {
|
|
|
1053
1053
|
* when challenges are processed.
|
|
1054
1054
|
* This can contain arbitrary JSON data.
|
|
1055
1055
|
* Secret values should not be specified in this stanza.
|
|
1056
|
-
* If secret values are needed (e.g
|
|
1056
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
1057
1057
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
1058
1058
|
* For details on the schema of this field, consult the webhook provider
|
|
1059
1059
|
* implementation's documentation.
|
|
@@ -1071,7 +1071,7 @@ export declare namespace acme {
|
|
|
1071
1071
|
/**
|
|
1072
1072
|
* The name of the solver to use, as defined in the webhook provider
|
|
1073
1073
|
* implementation.
|
|
1074
|
-
* This will typically be the name of the provider, e.g
|
|
1074
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
1075
1075
|
*/
|
|
1076
1076
|
solverName?: pulumi.Input<string>;
|
|
1077
1077
|
}
|
|
@@ -1085,7 +1085,7 @@ export declare namespace acme {
|
|
|
1085
1085
|
* when challenges are processed.
|
|
1086
1086
|
* This can contain arbitrary JSON data.
|
|
1087
1087
|
* Secret values should not be specified in this stanza.
|
|
1088
|
-
* If secret values are needed (e.g
|
|
1088
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
1089
1089
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
1090
1090
|
* For details on the schema of this field, consult the webhook provider
|
|
1091
1091
|
* implementation's documentation.
|
|
@@ -1103,7 +1103,7 @@ export declare namespace acme {
|
|
|
1103
1103
|
/**
|
|
1104
1104
|
* The name of the solver to use, as defined in the webhook provider
|
|
1105
1105
|
* implementation.
|
|
1106
|
-
* This will typically be the name of the provider, e.g
|
|
1106
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
1107
1107
|
*/
|
|
1108
1108
|
solverName?: pulumi.Input<string>;
|
|
1109
1109
|
}
|
|
@@ -1111,7 +1111,7 @@ export declare namespace acme {
|
|
|
1111
1111
|
* Configures cert-manager to attempt to complete authorizations by
|
|
1112
1112
|
* performing the HTTP01 challenge flow.
|
|
1113
1113
|
* It is not possible to obtain certificates for wildcard domain names
|
|
1114
|
-
* (e.g
|
|
1114
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
1115
1115
|
*/
|
|
1116
1116
|
interface ChallengeSpecSolverHttp01 {
|
|
1117
1117
|
gatewayHTTPRoute?: pulumi.Input<inputs.acme.v1.ChallengeSpecSolverHttp01GatewayHTTPRoute>;
|
|
@@ -5625,7 +5625,7 @@ export declare namespace acme {
|
|
|
5625
5625
|
* Configures cert-manager to attempt to complete authorizations by
|
|
5626
5626
|
* performing the HTTP01 challenge flow.
|
|
5627
5627
|
* It is not possible to obtain certificates for wildcard domain names
|
|
5628
|
-
* (e.g
|
|
5628
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
5629
5629
|
*/
|
|
5630
5630
|
interface ChallengeSpecSolverHttp01Patch {
|
|
5631
5631
|
gatewayHTTPRoute?: pulumi.Input<inputs.acme.v1.ChallengeSpecSolverHttp01GatewayHTTPRoutePatch>;
|
|
@@ -5966,7 +5966,7 @@ export declare namespace acme {
|
|
|
5966
5966
|
*/
|
|
5967
5967
|
token?: pulumi.Input<string>;
|
|
5968
5968
|
/**
|
|
5969
|
-
* Type is the type of challenge being offered, e.g
|
|
5969
|
+
* Type is the type of challenge being offered, e.g., 'http-01', 'dns-01',
|
|
5970
5970
|
* 'tls-sni-01', etc.
|
|
5971
5971
|
* This is the raw value retrieved from the ACME server.
|
|
5972
5972
|
* Only 'http-01' and 'dns-01' are supported by cert-manager, other values
|
|
@@ -6399,6 +6399,10 @@ export declare namespace argoproj {
|
|
|
6399
6399
|
* Clusters contains a list of clusters that the window will apply to
|
|
6400
6400
|
*/
|
|
6401
6401
|
clusters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6402
|
+
/**
|
|
6403
|
+
* Description of the sync that will be applied to the schedule, can be used to add any information such as a ticket number for example
|
|
6404
|
+
*/
|
|
6405
|
+
description?: pulumi.Input<string>;
|
|
6402
6406
|
/**
|
|
6403
6407
|
* Duration is the amount of time the sync window will be open
|
|
6404
6408
|
*/
|
|
@@ -6440,6 +6444,10 @@ export declare namespace argoproj {
|
|
|
6440
6444
|
* Clusters contains a list of clusters that the window will apply to
|
|
6441
6445
|
*/
|
|
6442
6446
|
clusters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6447
|
+
/**
|
|
6448
|
+
* Description of the sync that will be applied to the schedule, can be used to add any information such as a ticket number for example
|
|
6449
|
+
*/
|
|
6450
|
+
description?: pulumi.Input<string>;
|
|
6443
6451
|
/**
|
|
6444
6452
|
* Duration is the amount of time the sync window will be open
|
|
6445
6453
|
*/
|
|
@@ -9621,9 +9629,11 @@ export declare namespace argoproj {
|
|
|
9621
9629
|
path?: pulumi.Input<string>;
|
|
9622
9630
|
}
|
|
9623
9631
|
interface ApplicationSetSpecGeneratorsGitFiles {
|
|
9632
|
+
exclude?: pulumi.Input<boolean>;
|
|
9624
9633
|
path?: pulumi.Input<string>;
|
|
9625
9634
|
}
|
|
9626
9635
|
interface ApplicationSetSpecGeneratorsGitFilesPatch {
|
|
9636
|
+
exclude?: pulumi.Input<boolean>;
|
|
9627
9637
|
path?: pulumi.Input<string>;
|
|
9628
9638
|
}
|
|
9629
9639
|
interface ApplicationSetSpecGeneratorsGitPatch {
|
|
@@ -12461,9 +12471,11 @@ export declare namespace argoproj {
|
|
|
12461
12471
|
path?: pulumi.Input<string>;
|
|
12462
12472
|
}
|
|
12463
12473
|
interface ApplicationSetSpecGeneratorsMatrixGeneratorsGitFiles {
|
|
12474
|
+
exclude?: pulumi.Input<boolean>;
|
|
12464
12475
|
path?: pulumi.Input<string>;
|
|
12465
12476
|
}
|
|
12466
12477
|
interface ApplicationSetSpecGeneratorsMatrixGeneratorsGitFilesPatch {
|
|
12478
|
+
exclude?: pulumi.Input<boolean>;
|
|
12467
12479
|
path?: pulumi.Input<string>;
|
|
12468
12480
|
}
|
|
12469
12481
|
interface ApplicationSetSpecGeneratorsMatrixGeneratorsGitPatch {
|
|
@@ -14711,6 +14723,7 @@ export declare namespace argoproj {
|
|
|
14711
14723
|
interface ApplicationSetSpecGeneratorsMatrixGeneratorsPullRequestGitea {
|
|
14712
14724
|
api?: pulumi.Input<string>;
|
|
14713
14725
|
insecure?: pulumi.Input<boolean>;
|
|
14726
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14714
14727
|
owner?: pulumi.Input<string>;
|
|
14715
14728
|
repo?: pulumi.Input<string>;
|
|
14716
14729
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsMatrixGeneratorsPullRequestGiteaTokenRef>;
|
|
@@ -14718,6 +14731,7 @@ export declare namespace argoproj {
|
|
|
14718
14731
|
interface ApplicationSetSpecGeneratorsMatrixGeneratorsPullRequestGiteaPatch {
|
|
14719
14732
|
api?: pulumi.Input<string>;
|
|
14720
14733
|
insecure?: pulumi.Input<boolean>;
|
|
14734
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14721
14735
|
owner?: pulumi.Input<string>;
|
|
14722
14736
|
repo?: pulumi.Input<string>;
|
|
14723
14737
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsMatrixGeneratorsPullRequestGiteaTokenRefPatch>;
|
|
@@ -18556,9 +18570,11 @@ export declare namespace argoproj {
|
|
|
18556
18570
|
path?: pulumi.Input<string>;
|
|
18557
18571
|
}
|
|
18558
18572
|
interface ApplicationSetSpecGeneratorsMergeGeneratorsGitFiles {
|
|
18573
|
+
exclude?: pulumi.Input<boolean>;
|
|
18559
18574
|
path?: pulumi.Input<string>;
|
|
18560
18575
|
}
|
|
18561
18576
|
interface ApplicationSetSpecGeneratorsMergeGeneratorsGitFilesPatch {
|
|
18577
|
+
exclude?: pulumi.Input<boolean>;
|
|
18562
18578
|
path?: pulumi.Input<string>;
|
|
18563
18579
|
}
|
|
18564
18580
|
interface ApplicationSetSpecGeneratorsMergeGeneratorsGitPatch {
|
|
@@ -20806,6 +20822,7 @@ export declare namespace argoproj {
|
|
|
20806
20822
|
interface ApplicationSetSpecGeneratorsMergeGeneratorsPullRequestGitea {
|
|
20807
20823
|
api?: pulumi.Input<string>;
|
|
20808
20824
|
insecure?: pulumi.Input<boolean>;
|
|
20825
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
20809
20826
|
owner?: pulumi.Input<string>;
|
|
20810
20827
|
repo?: pulumi.Input<string>;
|
|
20811
20828
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsMergeGeneratorsPullRequestGiteaTokenRef>;
|
|
@@ -20813,6 +20830,7 @@ export declare namespace argoproj {
|
|
|
20813
20830
|
interface ApplicationSetSpecGeneratorsMergeGeneratorsPullRequestGiteaPatch {
|
|
20814
20831
|
api?: pulumi.Input<string>;
|
|
20815
20832
|
insecure?: pulumi.Input<boolean>;
|
|
20833
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
20816
20834
|
owner?: pulumi.Input<string>;
|
|
20817
20835
|
repo?: pulumi.Input<string>;
|
|
20818
20836
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsMergeGeneratorsPullRequestGiteaTokenRefPatch>;
|
|
@@ -24057,6 +24075,7 @@ export declare namespace argoproj {
|
|
|
24057
24075
|
interface ApplicationSetSpecGeneratorsPullRequestGitea {
|
|
24058
24076
|
api?: pulumi.Input<string>;
|
|
24059
24077
|
insecure?: pulumi.Input<boolean>;
|
|
24078
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
24060
24079
|
owner?: pulumi.Input<string>;
|
|
24061
24080
|
repo?: pulumi.Input<string>;
|
|
24062
24081
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsPullRequestGiteaTokenRef>;
|
|
@@ -24064,6 +24083,7 @@ export declare namespace argoproj {
|
|
|
24064
24083
|
interface ApplicationSetSpecGeneratorsPullRequestGiteaPatch {
|
|
24065
24084
|
api?: pulumi.Input<string>;
|
|
24066
24085
|
insecure?: pulumi.Input<boolean>;
|
|
24086
|
+
labels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
24067
24087
|
owner?: pulumi.Input<string>;
|
|
24068
24088
|
repo?: pulumi.Input<string>;
|
|
24069
24089
|
tokenRef?: pulumi.Input<inputs.argoproj.v1alpha1.ApplicationSetSpecGeneratorsPullRequestGiteaTokenRefPatch>;
|
|
@@ -28354,10 +28374,12 @@ export declare namespace argoproj {
|
|
|
28354
28374
|
lastTransitionTime?: pulumi.Input<string>;
|
|
28355
28375
|
/**
|
|
28356
28376
|
* Message is a human-readable informational message describing the health status
|
|
28377
|
+
*
|
|
28378
|
+
* Deprecated: this field is not used and will be removed in a future release.
|
|
28357
28379
|
*/
|
|
28358
28380
|
message?: pulumi.Input<string>;
|
|
28359
28381
|
/**
|
|
28360
|
-
* Status holds the status code of the application
|
|
28382
|
+
* Status holds the status code of the application
|
|
28361
28383
|
*/
|
|
28362
28384
|
status?: pulumi.Input<string>;
|
|
28363
28385
|
}
|
|
@@ -29980,6 +30002,10 @@ export declare namespace argoproj {
|
|
|
29980
30002
|
* HookType specifies the type of the hook. Empty for non-hook resources
|
|
29981
30003
|
*/
|
|
29982
30004
|
hookType?: pulumi.Input<string>;
|
|
30005
|
+
/**
|
|
30006
|
+
* Images contains the images related to the ResourceResult
|
|
30007
|
+
*/
|
|
30008
|
+
images?: pulumi.Input<pulumi.Input<string>[]>;
|
|
29983
30009
|
/**
|
|
29984
30010
|
* Kind specifies the API kind of the resource
|
|
29985
30011
|
*/
|
|
@@ -30740,6 +30766,8 @@ export declare namespace argoproj {
|
|
|
30740
30766
|
interface ApplicationStatusResourcesHealth {
|
|
30741
30767
|
/**
|
|
30742
30768
|
* LastTransitionTime is the time the HealthStatus was set or updated
|
|
30769
|
+
*
|
|
30770
|
+
* Deprecated: this field is not used and will be removed in a future release.
|
|
30743
30771
|
*/
|
|
30744
30772
|
lastTransitionTime?: pulumi.Input<string>;
|
|
30745
30773
|
/**
|
|
@@ -30747,7 +30775,7 @@ export declare namespace argoproj {
|
|
|
30747
30775
|
*/
|
|
30748
30776
|
message?: pulumi.Input<string>;
|
|
30749
30777
|
/**
|
|
30750
|
-
* Status holds the status code of the
|
|
30778
|
+
* Status holds the status code of the resource
|
|
30751
30779
|
*/
|
|
30752
30780
|
status?: pulumi.Input<string>;
|
|
30753
30781
|
}
|
|
@@ -31967,10 +31995,6 @@ export declare namespace cert_manager {
|
|
|
31967
31995
|
/**
|
|
31968
31996
|
* Defines extra output formats of the private key and signed certificate chain
|
|
31969
31997
|
* to be written to this Certificate's target Secret.
|
|
31970
|
-
*
|
|
31971
|
-
* This is a Beta Feature enabled by default. It can be disabled with the
|
|
31972
|
-
* `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both
|
|
31973
|
-
* the controller and webhook components.
|
|
31974
31998
|
*/
|
|
31975
31999
|
additionalOutputFormats?: pulumi.Input<pulumi.Input<inputs.cert_manager.v1.CertificateSpecAdditionalOutputFormats>[]>;
|
|
31976
32000
|
/**
|
|
@@ -32334,7 +32358,7 @@ export declare namespace cert_manager {
|
|
|
32334
32358
|
* `LegacyRC2`: Deprecated. Not supported by default in OpenSSL 3 or Java 20.
|
|
32335
32359
|
* `LegacyDES`: Less secure algorithm. Use this option for maximal compatibility.
|
|
32336
32360
|
* `Modern2023`: Secure algorithm. Use this option in case you have to always use secure algorithms
|
|
32337
|
-
* (
|
|
32361
|
+
* (e.g., because of company policy). Please note that the security of the algorithm is not that important
|
|
32338
32362
|
* in reality, because the unencrypted certificate and private key are also stored in the Secret.
|
|
32339
32363
|
*/
|
|
32340
32364
|
profile?: pulumi.Input<string>;
|
|
@@ -32409,7 +32433,7 @@ export declare namespace cert_manager {
|
|
|
32409
32433
|
* `LegacyRC2`: Deprecated. Not supported by default in OpenSSL 3 or Java 20.
|
|
32410
32434
|
* `LegacyDES`: Less secure algorithm. Use this option for maximal compatibility.
|
|
32411
32435
|
* `Modern2023`: Secure algorithm. Use this option in case you have to always use secure algorithms
|
|
32412
|
-
* (
|
|
32436
|
+
* (e.g., because of company policy). Please note that the security of the algorithm is not that important
|
|
32413
32437
|
* in reality, because the unencrypted certificate and private key are also stored in the Secret.
|
|
32414
32438
|
*/
|
|
32415
32439
|
profile?: pulumi.Input<string>;
|
|
@@ -32572,10 +32596,6 @@ export declare namespace cert_manager {
|
|
|
32572
32596
|
/**
|
|
32573
32597
|
* Defines extra output formats of the private key and signed certificate chain
|
|
32574
32598
|
* to be written to this Certificate's target Secret.
|
|
32575
|
-
*
|
|
32576
|
-
* This is a Beta Feature enabled by default. It can be disabled with the
|
|
32577
|
-
* `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both
|
|
32578
|
-
* the controller and webhook components.
|
|
32579
32599
|
*/
|
|
32580
32600
|
additionalOutputFormats?: pulumi.Input<pulumi.Input<inputs.cert_manager.v1.CertificateSpecAdditionalOutputFormatsPatch>[]>;
|
|
32581
32601
|
/**
|
|
@@ -32762,7 +32782,11 @@ export declare namespace cert_manager {
|
|
|
32762
32782
|
* to await user intervention.
|
|
32763
32783
|
* If set to `Always`, a private key matching the specified requirements
|
|
32764
32784
|
* will be generated whenever a re-issuance occurs.
|
|
32765
|
-
* Default is `
|
|
32785
|
+
* Default is `Always`.
|
|
32786
|
+
* The default was changed from `Never` to `Always` in cert-manager >=v1.18.0.
|
|
32787
|
+
* The new default can be disabled by setting the
|
|
32788
|
+
* `--feature-gates=DefaultPrivateKeyRotationPolicyAlways=false` option on
|
|
32789
|
+
* the controller component.
|
|
32766
32790
|
*/
|
|
32767
32791
|
rotationPolicy?: pulumi.Input<string>;
|
|
32768
32792
|
/**
|
|
@@ -32812,7 +32836,11 @@ export declare namespace cert_manager {
|
|
|
32812
32836
|
* to await user intervention.
|
|
32813
32837
|
* If set to `Always`, a private key matching the specified requirements
|
|
32814
32838
|
* will be generated whenever a re-issuance occurs.
|
|
32815
|
-
* Default is `
|
|
32839
|
+
* Default is `Always`.
|
|
32840
|
+
* The default was changed from `Never` to `Always` in cert-manager >=v1.18.0.
|
|
32841
|
+
* The new default can be disabled by setting the
|
|
32842
|
+
* `--feature-gates=DefaultPrivateKeyRotationPolicyAlways=false` option on
|
|
32843
|
+
* the controller component.
|
|
32816
32844
|
*/
|
|
32817
32845
|
rotationPolicy?: pulumi.Input<string>;
|
|
32818
32846
|
/**
|
|
@@ -34273,7 +34301,7 @@ export declare namespace cert_manager {
|
|
|
34273
34301
|
* when challenges are processed.
|
|
34274
34302
|
* This can contain arbitrary JSON data.
|
|
34275
34303
|
* Secret values should not be specified in this stanza.
|
|
34276
|
-
* If secret values are needed (e.g
|
|
34304
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
34277
34305
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
34278
34306
|
* For details on the schema of this field, consult the webhook provider
|
|
34279
34307
|
* implementation's documentation.
|
|
@@ -34291,7 +34319,7 @@ export declare namespace cert_manager {
|
|
|
34291
34319
|
/**
|
|
34292
34320
|
* The name of the solver to use, as defined in the webhook provider
|
|
34293
34321
|
* implementation.
|
|
34294
|
-
* This will typically be the name of the provider, e.g
|
|
34322
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
34295
34323
|
*/
|
|
34296
34324
|
solverName?: pulumi.Input<string>;
|
|
34297
34325
|
}
|
|
@@ -34305,7 +34333,7 @@ export declare namespace cert_manager {
|
|
|
34305
34333
|
* when challenges are processed.
|
|
34306
34334
|
* This can contain arbitrary JSON data.
|
|
34307
34335
|
* Secret values should not be specified in this stanza.
|
|
34308
|
-
* If secret values are needed (e.g
|
|
34336
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
34309
34337
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
34310
34338
|
* For details on the schema of this field, consult the webhook provider
|
|
34311
34339
|
* implementation's documentation.
|
|
@@ -34323,7 +34351,7 @@ export declare namespace cert_manager {
|
|
|
34323
34351
|
/**
|
|
34324
34352
|
* The name of the solver to use, as defined in the webhook provider
|
|
34325
34353
|
* implementation.
|
|
34326
|
-
* This will typically be the name of the provider, e.g
|
|
34354
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
34327
34355
|
*/
|
|
34328
34356
|
solverName?: pulumi.Input<string>;
|
|
34329
34357
|
}
|
|
@@ -34331,7 +34359,7 @@ export declare namespace cert_manager {
|
|
|
34331
34359
|
* Configures cert-manager to attempt to complete authorizations by
|
|
34332
34360
|
* performing the HTTP01 challenge flow.
|
|
34333
34361
|
* It is not possible to obtain certificates for wildcard domain names
|
|
34334
|
-
* (e.g
|
|
34362
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
34335
34363
|
*/
|
|
34336
34364
|
interface ClusterIssuerSpecAcmeSolversHttp01 {
|
|
34337
34365
|
gatewayHTTPRoute?: pulumi.Input<inputs.cert_manager.v1.ClusterIssuerSpecAcmeSolversHttp01GatewayHTTPRoute>;
|
|
@@ -38845,7 +38873,7 @@ export declare namespace cert_manager {
|
|
|
38845
38873
|
* Configures cert-manager to attempt to complete authorizations by
|
|
38846
38874
|
* performing the HTTP01 challenge flow.
|
|
38847
38875
|
* It is not possible to obtain certificates for wildcard domain names
|
|
38848
|
-
* (e.g
|
|
38876
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
38849
38877
|
*/
|
|
38850
38878
|
interface ClusterIssuerSpecAcmeSolversHttp01Patch {
|
|
38851
38879
|
gatewayHTTPRoute?: pulumi.Input<inputs.cert_manager.v1.ClusterIssuerSpecAcmeSolversHttp01GatewayHTTPRoutePatch>;
|
|
@@ -40980,7 +41008,7 @@ export declare namespace cert_manager {
|
|
|
40980
41008
|
* when challenges are processed.
|
|
40981
41009
|
* This can contain arbitrary JSON data.
|
|
40982
41010
|
* Secret values should not be specified in this stanza.
|
|
40983
|
-
* If secret values are needed (e.g
|
|
41011
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
40984
41012
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
40985
41013
|
* For details on the schema of this field, consult the webhook provider
|
|
40986
41014
|
* implementation's documentation.
|
|
@@ -40998,7 +41026,7 @@ export declare namespace cert_manager {
|
|
|
40998
41026
|
/**
|
|
40999
41027
|
* The name of the solver to use, as defined in the webhook provider
|
|
41000
41028
|
* implementation.
|
|
41001
|
-
* This will typically be the name of the provider, e.g
|
|
41029
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
41002
41030
|
*/
|
|
41003
41031
|
solverName?: pulumi.Input<string>;
|
|
41004
41032
|
}
|
|
@@ -41012,7 +41040,7 @@ export declare namespace cert_manager {
|
|
|
41012
41040
|
* when challenges are processed.
|
|
41013
41041
|
* This can contain arbitrary JSON data.
|
|
41014
41042
|
* Secret values should not be specified in this stanza.
|
|
41015
|
-
* If secret values are needed (e.g
|
|
41043
|
+
* If secret values are needed (e.g., credentials for a DNS service), you
|
|
41016
41044
|
* should use a SecretKeySelector to reference a Secret resource.
|
|
41017
41045
|
* For details on the schema of this field, consult the webhook provider
|
|
41018
41046
|
* implementation's documentation.
|
|
@@ -41030,7 +41058,7 @@ export declare namespace cert_manager {
|
|
|
41030
41058
|
/**
|
|
41031
41059
|
* The name of the solver to use, as defined in the webhook provider
|
|
41032
41060
|
* implementation.
|
|
41033
|
-
* This will typically be the name of the provider, e.g
|
|
41061
|
+
* This will typically be the name of the provider, e.g., 'cloudflare'.
|
|
41034
41062
|
*/
|
|
41035
41063
|
solverName?: pulumi.Input<string>;
|
|
41036
41064
|
}
|
|
@@ -41038,7 +41066,7 @@ export declare namespace cert_manager {
|
|
|
41038
41066
|
* Configures cert-manager to attempt to complete authorizations by
|
|
41039
41067
|
* performing the HTTP01 challenge flow.
|
|
41040
41068
|
* It is not possible to obtain certificates for wildcard domain names
|
|
41041
|
-
* (e.g
|
|
41069
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
41042
41070
|
*/
|
|
41043
41071
|
interface IssuerSpecAcmeSolversHttp01 {
|
|
41044
41072
|
gatewayHTTPRoute?: pulumi.Input<inputs.cert_manager.v1.IssuerSpecAcmeSolversHttp01GatewayHTTPRoute>;
|
|
@@ -45552,7 +45580,7 @@ export declare namespace cert_manager {
|
|
|
45552
45580
|
* Configures cert-manager to attempt to complete authorizations by
|
|
45553
45581
|
* performing the HTTP01 challenge flow.
|
|
45554
45582
|
* It is not possible to obtain certificates for wildcard domain names
|
|
45555
|
-
* (e.g
|
|
45583
|
+
* (e.g., `*.example.com`) using the HTTP01 challenge mechanism.
|
|
45556
45584
|
*/
|
|
45557
45585
|
interface IssuerSpecAcmeSolversHttp01Patch {
|
|
45558
45586
|
gatewayHTTPRoute?: pulumi.Input<inputs.cert_manager.v1.IssuerSpecAcmeSolversHttp01GatewayHTTPRoutePatch>;
|
|
@@ -48297,7 +48325,7 @@ export declare namespace cilium {
|
|
|
48297
48325
|
* A trailing "." is automatically added when missing.
|
|
48298
48326
|
*
|
|
48299
48327
|
* Examples:
|
|
48300
|
-
* `*.cilium.io` matches
|
|
48328
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
48301
48329
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
48302
48330
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
48303
48331
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -48324,7 +48352,7 @@ export declare namespace cilium {
|
|
|
48324
48352
|
* A trailing "." is automatically added when missing.
|
|
48325
48353
|
*
|
|
48326
48354
|
* Examples:
|
|
48327
|
-
* `*.cilium.io` matches
|
|
48355
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
48328
48356
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
48329
48357
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
48330
48358
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -48753,7 +48781,7 @@ export declare namespace cilium {
|
|
|
48753
48781
|
* A trailing "." is automatically added when missing.
|
|
48754
48782
|
*
|
|
48755
48783
|
* Examples:
|
|
48756
|
-
* `*.cilium.io` matches
|
|
48784
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
48757
48785
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
48758
48786
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
48759
48787
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -48783,7 +48811,7 @@ export declare namespace cilium {
|
|
|
48783
48811
|
* A trailing "." is automatically added when missing.
|
|
48784
48812
|
*
|
|
48785
48813
|
* Examples:
|
|
48786
|
-
* `*.cilium.io` matches
|
|
48814
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
48787
48815
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
48788
48816
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
48789
48817
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -48847,8 +48875,8 @@ export declare namespace cilium {
|
|
|
48847
48875
|
}
|
|
48848
48876
|
/**
|
|
48849
48877
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
48850
|
-
* named header field against an immediate string
|
|
48851
|
-
* If none of the optional fields is present, then the
|
|
48878
|
+
* named header field against an immediate string, a secret value, or
|
|
48879
|
+
* a regex. If none of the optional fields is present, then the
|
|
48852
48880
|
* header value is not matched, only presence of the header is enough.
|
|
48853
48881
|
*/
|
|
48854
48882
|
interface CiliumClusterwideNetworkPolicySpecEgressToPortsRulesHttpHeaderMatches {
|
|
@@ -48872,8 +48900,8 @@ export declare namespace cilium {
|
|
|
48872
48900
|
}
|
|
48873
48901
|
/**
|
|
48874
48902
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
48875
|
-
* named header field against an immediate string
|
|
48876
|
-
* If none of the optional fields is present, then the
|
|
48903
|
+
* named header field against an immediate string, a secret value, or
|
|
48904
|
+
* a regex. If none of the optional fields is present, then the
|
|
48877
48905
|
* header value is not matched, only presence of the header is enough.
|
|
48878
48906
|
*/
|
|
48879
48907
|
interface CiliumClusterwideNetworkPolicySpecEgressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -51397,7 +51425,7 @@ export declare namespace cilium {
|
|
|
51397
51425
|
* A trailing "." is automatically added when missing.
|
|
51398
51426
|
*
|
|
51399
51427
|
* Examples:
|
|
51400
|
-
* `*.cilium.io` matches
|
|
51428
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
51401
51429
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
51402
51430
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
51403
51431
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -51427,7 +51455,7 @@ export declare namespace cilium {
|
|
|
51427
51455
|
* A trailing "." is automatically added when missing.
|
|
51428
51456
|
*
|
|
51429
51457
|
* Examples:
|
|
51430
|
-
* `*.cilium.io` matches
|
|
51458
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
51431
51459
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
51432
51460
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
51433
51461
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -51491,8 +51519,8 @@ export declare namespace cilium {
|
|
|
51491
51519
|
}
|
|
51492
51520
|
/**
|
|
51493
51521
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
51494
|
-
* named header field against an immediate string
|
|
51495
|
-
* If none of the optional fields is present, then the
|
|
51522
|
+
* named header field against an immediate string, a secret value, or
|
|
51523
|
+
* a regex. If none of the optional fields is present, then the
|
|
51496
51524
|
* header value is not matched, only presence of the header is enough.
|
|
51497
51525
|
*/
|
|
51498
51526
|
interface CiliumClusterwideNetworkPolicySpecIngressToPortsRulesHttpHeaderMatches {
|
|
@@ -51516,8 +51544,8 @@ export declare namespace cilium {
|
|
|
51516
51544
|
}
|
|
51517
51545
|
/**
|
|
51518
51546
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
51519
|
-
* named header field against an immediate string
|
|
51520
|
-
* If none of the optional fields is present, then the
|
|
51547
|
+
* named header field against an immediate string, a secret value, or
|
|
51548
|
+
* a regex. If none of the optional fields is present, then the
|
|
51521
51549
|
* header value is not matched, only presence of the header is enough.
|
|
51522
51550
|
*/
|
|
51523
51551
|
interface CiliumClusterwideNetworkPolicySpecIngressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -53599,7 +53627,7 @@ export declare namespace cilium {
|
|
|
53599
53627
|
* A trailing "." is automatically added when missing.
|
|
53600
53628
|
*
|
|
53601
53629
|
* Examples:
|
|
53602
|
-
* `*.cilium.io` matches
|
|
53630
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
53603
53631
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
53604
53632
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
53605
53633
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -53626,7 +53654,7 @@ export declare namespace cilium {
|
|
|
53626
53654
|
* A trailing "." is automatically added when missing.
|
|
53627
53655
|
*
|
|
53628
53656
|
* Examples:
|
|
53629
|
-
* `*.cilium.io` matches
|
|
53657
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
53630
53658
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
53631
53659
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
53632
53660
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -54055,7 +54083,7 @@ export declare namespace cilium {
|
|
|
54055
54083
|
* A trailing "." is automatically added when missing.
|
|
54056
54084
|
*
|
|
54057
54085
|
* Examples:
|
|
54058
|
-
* `*.cilium.io` matches
|
|
54086
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
54059
54087
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
54060
54088
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
54061
54089
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -54085,7 +54113,7 @@ export declare namespace cilium {
|
|
|
54085
54113
|
* A trailing "." is automatically added when missing.
|
|
54086
54114
|
*
|
|
54087
54115
|
* Examples:
|
|
54088
|
-
* `*.cilium.io` matches
|
|
54116
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
54089
54117
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
54090
54118
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
54091
54119
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -54149,8 +54177,8 @@ export declare namespace cilium {
|
|
|
54149
54177
|
}
|
|
54150
54178
|
/**
|
|
54151
54179
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
54152
|
-
* named header field against an immediate string
|
|
54153
|
-
* If none of the optional fields is present, then the
|
|
54180
|
+
* named header field against an immediate string, a secret value, or
|
|
54181
|
+
* a regex. If none of the optional fields is present, then the
|
|
54154
54182
|
* header value is not matched, only presence of the header is enough.
|
|
54155
54183
|
*/
|
|
54156
54184
|
interface CiliumClusterwideNetworkPolicySpecsEgressToPortsRulesHttpHeaderMatches {
|
|
@@ -54174,8 +54202,8 @@ export declare namespace cilium {
|
|
|
54174
54202
|
}
|
|
54175
54203
|
/**
|
|
54176
54204
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
54177
|
-
* named header field against an immediate string
|
|
54178
|
-
* If none of the optional fields is present, then the
|
|
54205
|
+
* named header field against an immediate string, a secret value, or
|
|
54206
|
+
* a regex. If none of the optional fields is present, then the
|
|
54179
54207
|
* header value is not matched, only presence of the header is enough.
|
|
54180
54208
|
*/
|
|
54181
54209
|
interface CiliumClusterwideNetworkPolicySpecsEgressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -56699,7 +56727,7 @@ export declare namespace cilium {
|
|
|
56699
56727
|
* A trailing "." is automatically added when missing.
|
|
56700
56728
|
*
|
|
56701
56729
|
* Examples:
|
|
56702
|
-
* `*.cilium.io` matches
|
|
56730
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
56703
56731
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
56704
56732
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
56705
56733
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -56729,7 +56757,7 @@ export declare namespace cilium {
|
|
|
56729
56757
|
* A trailing "." is automatically added when missing.
|
|
56730
56758
|
*
|
|
56731
56759
|
* Examples:
|
|
56732
|
-
* `*.cilium.io` matches
|
|
56760
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
56733
56761
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
56734
56762
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
56735
56763
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -56793,8 +56821,8 @@ export declare namespace cilium {
|
|
|
56793
56821
|
}
|
|
56794
56822
|
/**
|
|
56795
56823
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
56796
|
-
* named header field against an immediate string
|
|
56797
|
-
* If none of the optional fields is present, then the
|
|
56824
|
+
* named header field against an immediate string, a secret value, or
|
|
56825
|
+
* a regex. If none of the optional fields is present, then the
|
|
56798
56826
|
* header value is not matched, only presence of the header is enough.
|
|
56799
56827
|
*/
|
|
56800
56828
|
interface CiliumClusterwideNetworkPolicySpecsIngressToPortsRulesHttpHeaderMatches {
|
|
@@ -56818,8 +56846,8 @@ export declare namespace cilium {
|
|
|
56818
56846
|
}
|
|
56819
56847
|
/**
|
|
56820
56848
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
56821
|
-
* named header field against an immediate string
|
|
56822
|
-
* If none of the optional fields is present, then the
|
|
56849
|
+
* named header field against an immediate string, a secret value, or
|
|
56850
|
+
* a regex. If none of the optional fields is present, then the
|
|
56823
56851
|
* header value is not matched, only presence of the header is enough.
|
|
56824
56852
|
*/
|
|
56825
56853
|
interface CiliumClusterwideNetworkPolicySpecsIngressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -60105,7 +60133,7 @@ export declare namespace cilium {
|
|
|
60105
60133
|
* A trailing "." is automatically added when missing.
|
|
60106
60134
|
*
|
|
60107
60135
|
* Examples:
|
|
60108
|
-
* `*.cilium.io` matches
|
|
60136
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
60109
60137
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
60110
60138
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
60111
60139
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -60132,7 +60160,7 @@ export declare namespace cilium {
|
|
|
60132
60160
|
* A trailing "." is automatically added when missing.
|
|
60133
60161
|
*
|
|
60134
60162
|
* Examples:
|
|
60135
|
-
* `*.cilium.io` matches
|
|
60163
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
60136
60164
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
60137
60165
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
60138
60166
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -60561,7 +60589,7 @@ export declare namespace cilium {
|
|
|
60561
60589
|
* A trailing "." is automatically added when missing.
|
|
60562
60590
|
*
|
|
60563
60591
|
* Examples:
|
|
60564
|
-
* `*.cilium.io` matches
|
|
60592
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
60565
60593
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
60566
60594
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
60567
60595
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -60591,7 +60619,7 @@ export declare namespace cilium {
|
|
|
60591
60619
|
* A trailing "." is automatically added when missing.
|
|
60592
60620
|
*
|
|
60593
60621
|
* Examples:
|
|
60594
|
-
* `*.cilium.io` matches
|
|
60622
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
60595
60623
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
60596
60624
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
60597
60625
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -60655,8 +60683,8 @@ export declare namespace cilium {
|
|
|
60655
60683
|
}
|
|
60656
60684
|
/**
|
|
60657
60685
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
60658
|
-
* named header field against an immediate string
|
|
60659
|
-
* If none of the optional fields is present, then the
|
|
60686
|
+
* named header field against an immediate string, a secret value, or
|
|
60687
|
+
* a regex. If none of the optional fields is present, then the
|
|
60660
60688
|
* header value is not matched, only presence of the header is enough.
|
|
60661
60689
|
*/
|
|
60662
60690
|
interface CiliumNetworkPolicySpecEgressToPortsRulesHttpHeaderMatches {
|
|
@@ -60680,8 +60708,8 @@ export declare namespace cilium {
|
|
|
60680
60708
|
}
|
|
60681
60709
|
/**
|
|
60682
60710
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
60683
|
-
* named header field against an immediate string
|
|
60684
|
-
* If none of the optional fields is present, then the
|
|
60711
|
+
* named header field against an immediate string, a secret value, or
|
|
60712
|
+
* a regex. If none of the optional fields is present, then the
|
|
60685
60713
|
* header value is not matched, only presence of the header is enough.
|
|
60686
60714
|
*/
|
|
60687
60715
|
interface CiliumNetworkPolicySpecEgressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -63205,7 +63233,7 @@ export declare namespace cilium {
|
|
|
63205
63233
|
* A trailing "." is automatically added when missing.
|
|
63206
63234
|
*
|
|
63207
63235
|
* Examples:
|
|
63208
|
-
* `*.cilium.io` matches
|
|
63236
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
63209
63237
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
63210
63238
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
63211
63239
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -63235,7 +63263,7 @@ export declare namespace cilium {
|
|
|
63235
63263
|
* A trailing "." is automatically added when missing.
|
|
63236
63264
|
*
|
|
63237
63265
|
* Examples:
|
|
63238
|
-
* `*.cilium.io` matches
|
|
63266
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
63239
63267
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
63240
63268
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
63241
63269
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -63299,8 +63327,8 @@ export declare namespace cilium {
|
|
|
63299
63327
|
}
|
|
63300
63328
|
/**
|
|
63301
63329
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
63302
|
-
* named header field against an immediate string
|
|
63303
|
-
* If none of the optional fields is present, then the
|
|
63330
|
+
* named header field against an immediate string, a secret value, or
|
|
63331
|
+
* a regex. If none of the optional fields is present, then the
|
|
63304
63332
|
* header value is not matched, only presence of the header is enough.
|
|
63305
63333
|
*/
|
|
63306
63334
|
interface CiliumNetworkPolicySpecIngressToPortsRulesHttpHeaderMatches {
|
|
@@ -63324,8 +63352,8 @@ export declare namespace cilium {
|
|
|
63324
63352
|
}
|
|
63325
63353
|
/**
|
|
63326
63354
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
63327
|
-
* named header field against an immediate string
|
|
63328
|
-
* If none of the optional fields is present, then the
|
|
63355
|
+
* named header field against an immediate string, a secret value, or
|
|
63356
|
+
* a regex. If none of the optional fields is present, then the
|
|
63329
63357
|
* header value is not matched, only presence of the header is enough.
|
|
63330
63358
|
*/
|
|
63331
63359
|
interface CiliumNetworkPolicySpecIngressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -65407,7 +65435,7 @@ export declare namespace cilium {
|
|
|
65407
65435
|
* A trailing "." is automatically added when missing.
|
|
65408
65436
|
*
|
|
65409
65437
|
* Examples:
|
|
65410
|
-
* `*.cilium.io` matches
|
|
65438
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
65411
65439
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
65412
65440
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
65413
65441
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -65434,7 +65462,7 @@ export declare namespace cilium {
|
|
|
65434
65462
|
* A trailing "." is automatically added when missing.
|
|
65435
65463
|
*
|
|
65436
65464
|
* Examples:
|
|
65437
|
-
* `*.cilium.io` matches
|
|
65465
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
65438
65466
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
65439
65467
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
65440
65468
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -65863,7 +65891,7 @@ export declare namespace cilium {
|
|
|
65863
65891
|
* A trailing "." is automatically added when missing.
|
|
65864
65892
|
*
|
|
65865
65893
|
* Examples:
|
|
65866
|
-
* `*.cilium.io` matches
|
|
65894
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
65867
65895
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
65868
65896
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
65869
65897
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -65893,7 +65921,7 @@ export declare namespace cilium {
|
|
|
65893
65921
|
* A trailing "." is automatically added when missing.
|
|
65894
65922
|
*
|
|
65895
65923
|
* Examples:
|
|
65896
|
-
* `*.cilium.io` matches
|
|
65924
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
65897
65925
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
65898
65926
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
65899
65927
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -65957,8 +65985,8 @@ export declare namespace cilium {
|
|
|
65957
65985
|
}
|
|
65958
65986
|
/**
|
|
65959
65987
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
65960
|
-
* named header field against an immediate string
|
|
65961
|
-
* If none of the optional fields is present, then the
|
|
65988
|
+
* named header field against an immediate string, a secret value, or
|
|
65989
|
+
* a regex. If none of the optional fields is present, then the
|
|
65962
65990
|
* header value is not matched, only presence of the header is enough.
|
|
65963
65991
|
*/
|
|
65964
65992
|
interface CiliumNetworkPolicySpecsEgressToPortsRulesHttpHeaderMatches {
|
|
@@ -65982,8 +66010,8 @@ export declare namespace cilium {
|
|
|
65982
66010
|
}
|
|
65983
66011
|
/**
|
|
65984
66012
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
65985
|
-
* named header field against an immediate string
|
|
65986
|
-
* If none of the optional fields is present, then the
|
|
66013
|
+
* named header field against an immediate string, a secret value, or
|
|
66014
|
+
* a regex. If none of the optional fields is present, then the
|
|
65987
66015
|
* header value is not matched, only presence of the header is enough.
|
|
65988
66016
|
*/
|
|
65989
66017
|
interface CiliumNetworkPolicySpecsEgressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -68507,7 +68535,7 @@ export declare namespace cilium {
|
|
|
68507
68535
|
* A trailing "." is automatically added when missing.
|
|
68508
68536
|
*
|
|
68509
68537
|
* Examples:
|
|
68510
|
-
* `*.cilium.io` matches
|
|
68538
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
68511
68539
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
68512
68540
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
68513
68541
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -68537,7 +68565,7 @@ export declare namespace cilium {
|
|
|
68537
68565
|
* A trailing "." is automatically added when missing.
|
|
68538
68566
|
*
|
|
68539
68567
|
* Examples:
|
|
68540
|
-
* `*.cilium.io` matches
|
|
68568
|
+
* `*.cilium.io` matches subomains of cilium at that level
|
|
68541
68569
|
* www.cilium.io and blog.cilium.io match, cilium.io and google.com do not
|
|
68542
68570
|
* `*cilium.io` matches cilium.io and all subdomains ends with "cilium.io"
|
|
68543
68571
|
* except those containing "." separator, subcilium.io and sub-cilium.io match,
|
|
@@ -68601,8 +68629,8 @@ export declare namespace cilium {
|
|
|
68601
68629
|
}
|
|
68602
68630
|
/**
|
|
68603
68631
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
68604
|
-
* named header field against an immediate string
|
|
68605
|
-
* If none of the optional fields is present, then the
|
|
68632
|
+
* named header field against an immediate string, a secret value, or
|
|
68633
|
+
* a regex. If none of the optional fields is present, then the
|
|
68606
68634
|
* header value is not matched, only presence of the header is enough.
|
|
68607
68635
|
*/
|
|
68608
68636
|
interface CiliumNetworkPolicySpecsIngressToPortsRulesHttpHeaderMatches {
|
|
@@ -68626,8 +68654,8 @@ export declare namespace cilium {
|
|
|
68626
68654
|
}
|
|
68627
68655
|
/**
|
|
68628
68656
|
* HeaderMatch extends the HeaderValue for matching requirement of a
|
|
68629
|
-
* named header field against an immediate string
|
|
68630
|
-
* If none of the optional fields is present, then the
|
|
68657
|
+
* named header field against an immediate string, a secret value, or
|
|
68658
|
+
* a regex. If none of the optional fields is present, then the
|
|
68631
68659
|
* header value is not matched, only presence of the header is enough.
|
|
68632
68660
|
*/
|
|
68633
68661
|
interface CiliumNetworkPolicySpecsIngressToPortsRulesHttpHeaderMatchesPatch {
|
|
@@ -70749,6 +70777,7 @@ export declare namespace external_secrets {
|
|
|
70749
70777
|
kubernetes?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderKubernetes>;
|
|
70750
70778
|
onboardbase?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnboardbase>;
|
|
70751
70779
|
onepassword?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepassword>;
|
|
70780
|
+
onepasswordSDK?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDK>;
|
|
70752
70781
|
oracle?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOracle>;
|
|
70753
70782
|
passbolt?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderPassbolt>;
|
|
70754
70783
|
passworddepot?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderPassworddepot>;
|
|
@@ -74624,6 +74653,106 @@ export declare namespace external_secrets {
|
|
|
74624
74653
|
[key: string]: pulumi.Input<number>;
|
|
74625
74654
|
}>;
|
|
74626
74655
|
}
|
|
74656
|
+
/**
|
|
74657
|
+
* OnePasswordSDK configures this store to use 1Password's new Go SDK to sync secrets.
|
|
74658
|
+
*/
|
|
74659
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDK {
|
|
74660
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKAuth>;
|
|
74661
|
+
integrationInfo?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKIntegrationInfo>;
|
|
74662
|
+
/**
|
|
74663
|
+
* Vault defines the vault's name to access. Do NOT add op:// prefix. This will be done automatically.
|
|
74664
|
+
*/
|
|
74665
|
+
vault?: pulumi.Input<string>;
|
|
74666
|
+
}
|
|
74667
|
+
/**
|
|
74668
|
+
* Auth defines the information necessary to authenticate against OnePassword API.
|
|
74669
|
+
*/
|
|
74670
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKAuth {
|
|
74671
|
+
serviceAccountSecretRef?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRef>;
|
|
74672
|
+
}
|
|
74673
|
+
/**
|
|
74674
|
+
* Auth defines the information necessary to authenticate against OnePassword API.
|
|
74675
|
+
*/
|
|
74676
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKAuthPatch {
|
|
74677
|
+
serviceAccountSecretRef?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRefPatch>;
|
|
74678
|
+
}
|
|
74679
|
+
/**
|
|
74680
|
+
* ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.
|
|
74681
|
+
*/
|
|
74682
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRef {
|
|
74683
|
+
/**
|
|
74684
|
+
* A key in the referenced Secret.
|
|
74685
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
74686
|
+
*/
|
|
74687
|
+
key?: pulumi.Input<string>;
|
|
74688
|
+
/**
|
|
74689
|
+
* The name of the Secret resource being referred to.
|
|
74690
|
+
*/
|
|
74691
|
+
name?: pulumi.Input<string>;
|
|
74692
|
+
/**
|
|
74693
|
+
* The namespace of the Secret resource being referred to.
|
|
74694
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
74695
|
+
*/
|
|
74696
|
+
namespace?: pulumi.Input<string>;
|
|
74697
|
+
}
|
|
74698
|
+
/**
|
|
74699
|
+
* ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.
|
|
74700
|
+
*/
|
|
74701
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRefPatch {
|
|
74702
|
+
/**
|
|
74703
|
+
* A key in the referenced Secret.
|
|
74704
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
74705
|
+
*/
|
|
74706
|
+
key?: pulumi.Input<string>;
|
|
74707
|
+
/**
|
|
74708
|
+
* The name of the Secret resource being referred to.
|
|
74709
|
+
*/
|
|
74710
|
+
name?: pulumi.Input<string>;
|
|
74711
|
+
/**
|
|
74712
|
+
* The namespace of the Secret resource being referred to.
|
|
74713
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
74714
|
+
*/
|
|
74715
|
+
namespace?: pulumi.Input<string>;
|
|
74716
|
+
}
|
|
74717
|
+
/**
|
|
74718
|
+
* IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
|
|
74719
|
+
* If you don't know which name and version to use, use `DefaultIntegrationName` and `DefaultIntegrationVersion`, respectively.
|
|
74720
|
+
*/
|
|
74721
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKIntegrationInfo {
|
|
74722
|
+
/**
|
|
74723
|
+
* Name defaults to "1Password SDK".
|
|
74724
|
+
*/
|
|
74725
|
+
name?: pulumi.Input<string>;
|
|
74726
|
+
/**
|
|
74727
|
+
* Version defaults to "v1.0.0".
|
|
74728
|
+
*/
|
|
74729
|
+
version?: pulumi.Input<string>;
|
|
74730
|
+
}
|
|
74731
|
+
/**
|
|
74732
|
+
* IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
|
|
74733
|
+
* If you don't know which name and version to use, use `DefaultIntegrationName` and `DefaultIntegrationVersion`, respectively.
|
|
74734
|
+
*/
|
|
74735
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKIntegrationInfoPatch {
|
|
74736
|
+
/**
|
|
74737
|
+
* Name defaults to "1Password SDK".
|
|
74738
|
+
*/
|
|
74739
|
+
name?: pulumi.Input<string>;
|
|
74740
|
+
/**
|
|
74741
|
+
* Version defaults to "v1.0.0".
|
|
74742
|
+
*/
|
|
74743
|
+
version?: pulumi.Input<string>;
|
|
74744
|
+
}
|
|
74745
|
+
/**
|
|
74746
|
+
* OnePasswordSDK configures this store to use 1Password's new Go SDK to sync secrets.
|
|
74747
|
+
*/
|
|
74748
|
+
interface ClusterSecretStoreSpecProviderOnepasswordSDKPatch {
|
|
74749
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKAuthPatch>;
|
|
74750
|
+
integrationInfo?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKIntegrationInfoPatch>;
|
|
74751
|
+
/**
|
|
74752
|
+
* Vault defines the vault's name to access. Do NOT add op:// prefix. This will be done automatically.
|
|
74753
|
+
*/
|
|
74754
|
+
vault?: pulumi.Input<string>;
|
|
74755
|
+
}
|
|
74627
74756
|
/**
|
|
74628
74757
|
* Oracle configures this store to sync secrets using Oracle Vault provider
|
|
74629
74758
|
*/
|
|
@@ -75067,6 +75196,7 @@ export declare namespace external_secrets {
|
|
|
75067
75196
|
kubernetes?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderKubernetesPatch>;
|
|
75068
75197
|
onboardbase?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnboardbasePatch>;
|
|
75069
75198
|
onepassword?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordPatch>;
|
|
75199
|
+
onepasswordSDK?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOnepasswordSDKPatch>;
|
|
75070
75200
|
oracle?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderOraclePatch>;
|
|
75071
75201
|
passbolt?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderPassboltPatch>;
|
|
75072
75202
|
passworddepot?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderPassworddepotPatch>;
|
|
@@ -76898,6 +77028,7 @@ export declare namespace external_secrets {
|
|
|
76898
77028
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
76899
77029
|
*/
|
|
76900
77030
|
interface ClusterSecretStoreSpecProviderWebhook {
|
|
77031
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuth>;
|
|
76901
77032
|
/**
|
|
76902
77033
|
* Body
|
|
76903
77034
|
*/
|
|
@@ -76935,6 +77066,112 @@ export declare namespace external_secrets {
|
|
|
76935
77066
|
*/
|
|
76936
77067
|
url?: pulumi.Input<string>;
|
|
76937
77068
|
}
|
|
77069
|
+
/**
|
|
77070
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
77071
|
+
*/
|
|
77072
|
+
interface ClusterSecretStoreSpecProviderWebhookAuth {
|
|
77073
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlm>;
|
|
77074
|
+
}
|
|
77075
|
+
/**
|
|
77076
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
77077
|
+
*/
|
|
77078
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlm {
|
|
77079
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecret>;
|
|
77080
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecret>;
|
|
77081
|
+
}
|
|
77082
|
+
/**
|
|
77083
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
77084
|
+
* In some instances, `key` is a required field.
|
|
77085
|
+
*/
|
|
77086
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecret {
|
|
77087
|
+
/**
|
|
77088
|
+
* A key in the referenced Secret.
|
|
77089
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
77090
|
+
*/
|
|
77091
|
+
key?: pulumi.Input<string>;
|
|
77092
|
+
/**
|
|
77093
|
+
* The name of the Secret resource being referred to.
|
|
77094
|
+
*/
|
|
77095
|
+
name?: pulumi.Input<string>;
|
|
77096
|
+
/**
|
|
77097
|
+
* The namespace of the Secret resource being referred to.
|
|
77098
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
77099
|
+
*/
|
|
77100
|
+
namespace?: pulumi.Input<string>;
|
|
77101
|
+
}
|
|
77102
|
+
/**
|
|
77103
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
77104
|
+
* In some instances, `key` is a required field.
|
|
77105
|
+
*/
|
|
77106
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch {
|
|
77107
|
+
/**
|
|
77108
|
+
* A key in the referenced Secret.
|
|
77109
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
77110
|
+
*/
|
|
77111
|
+
key?: pulumi.Input<string>;
|
|
77112
|
+
/**
|
|
77113
|
+
* The name of the Secret resource being referred to.
|
|
77114
|
+
*/
|
|
77115
|
+
name?: pulumi.Input<string>;
|
|
77116
|
+
/**
|
|
77117
|
+
* The namespace of the Secret resource being referred to.
|
|
77118
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
77119
|
+
*/
|
|
77120
|
+
namespace?: pulumi.Input<string>;
|
|
77121
|
+
}
|
|
77122
|
+
/**
|
|
77123
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
77124
|
+
*/
|
|
77125
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPatch {
|
|
77126
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch>;
|
|
77127
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch>;
|
|
77128
|
+
}
|
|
77129
|
+
/**
|
|
77130
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
77131
|
+
* In some instances, `key` is a required field.
|
|
77132
|
+
*/
|
|
77133
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecret {
|
|
77134
|
+
/**
|
|
77135
|
+
* A key in the referenced Secret.
|
|
77136
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
77137
|
+
*/
|
|
77138
|
+
key?: pulumi.Input<string>;
|
|
77139
|
+
/**
|
|
77140
|
+
* The name of the Secret resource being referred to.
|
|
77141
|
+
*/
|
|
77142
|
+
name?: pulumi.Input<string>;
|
|
77143
|
+
/**
|
|
77144
|
+
* The namespace of the Secret resource being referred to.
|
|
77145
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
77146
|
+
*/
|
|
77147
|
+
namespace?: pulumi.Input<string>;
|
|
77148
|
+
}
|
|
77149
|
+
/**
|
|
77150
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
77151
|
+
* In some instances, `key` is a required field.
|
|
77152
|
+
*/
|
|
77153
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch {
|
|
77154
|
+
/**
|
|
77155
|
+
* A key in the referenced Secret.
|
|
77156
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
77157
|
+
*/
|
|
77158
|
+
key?: pulumi.Input<string>;
|
|
77159
|
+
/**
|
|
77160
|
+
* The name of the Secret resource being referred to.
|
|
77161
|
+
*/
|
|
77162
|
+
name?: pulumi.Input<string>;
|
|
77163
|
+
/**
|
|
77164
|
+
* The namespace of the Secret resource being referred to.
|
|
77165
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
77166
|
+
*/
|
|
77167
|
+
namespace?: pulumi.Input<string>;
|
|
77168
|
+
}
|
|
77169
|
+
/**
|
|
77170
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
77171
|
+
*/
|
|
77172
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthPatch {
|
|
77173
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPatch>;
|
|
77174
|
+
}
|
|
76938
77175
|
/**
|
|
76939
77176
|
* The provider for the CA bundle to use to validate webhook server certificate.
|
|
76940
77177
|
*/
|
|
@@ -76981,6 +77218,7 @@ export declare namespace external_secrets {
|
|
|
76981
77218
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
76982
77219
|
*/
|
|
76983
77220
|
interface ClusterSecretStoreSpecProviderWebhookPatch {
|
|
77221
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.ClusterSecretStoreSpecProviderWebhookAuthPatch>;
|
|
76984
77222
|
/**
|
|
76985
77223
|
* Body
|
|
76986
77224
|
*/
|
|
@@ -78353,6 +78591,7 @@ export declare namespace external_secrets {
|
|
|
78353
78591
|
kubernetes?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderKubernetes>;
|
|
78354
78592
|
onboardbase?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnboardbase>;
|
|
78355
78593
|
onepassword?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepassword>;
|
|
78594
|
+
onepasswordSDK?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDK>;
|
|
78356
78595
|
oracle?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOracle>;
|
|
78357
78596
|
passbolt?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderPassbolt>;
|
|
78358
78597
|
passworddepot?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderPassworddepot>;
|
|
@@ -82228,6 +82467,106 @@ export declare namespace external_secrets {
|
|
|
82228
82467
|
[key: string]: pulumi.Input<number>;
|
|
82229
82468
|
}>;
|
|
82230
82469
|
}
|
|
82470
|
+
/**
|
|
82471
|
+
* OnePasswordSDK configures this store to use 1Password's new Go SDK to sync secrets.
|
|
82472
|
+
*/
|
|
82473
|
+
interface SecretStoreSpecProviderOnepasswordSDK {
|
|
82474
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKAuth>;
|
|
82475
|
+
integrationInfo?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKIntegrationInfo>;
|
|
82476
|
+
/**
|
|
82477
|
+
* Vault defines the vault's name to access. Do NOT add op:// prefix. This will be done automatically.
|
|
82478
|
+
*/
|
|
82479
|
+
vault?: pulumi.Input<string>;
|
|
82480
|
+
}
|
|
82481
|
+
/**
|
|
82482
|
+
* Auth defines the information necessary to authenticate against OnePassword API.
|
|
82483
|
+
*/
|
|
82484
|
+
interface SecretStoreSpecProviderOnepasswordSDKAuth {
|
|
82485
|
+
serviceAccountSecretRef?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRef>;
|
|
82486
|
+
}
|
|
82487
|
+
/**
|
|
82488
|
+
* Auth defines the information necessary to authenticate against OnePassword API.
|
|
82489
|
+
*/
|
|
82490
|
+
interface SecretStoreSpecProviderOnepasswordSDKAuthPatch {
|
|
82491
|
+
serviceAccountSecretRef?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRefPatch>;
|
|
82492
|
+
}
|
|
82493
|
+
/**
|
|
82494
|
+
* ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.
|
|
82495
|
+
*/
|
|
82496
|
+
interface SecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRef {
|
|
82497
|
+
/**
|
|
82498
|
+
* A key in the referenced Secret.
|
|
82499
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
82500
|
+
*/
|
|
82501
|
+
key?: pulumi.Input<string>;
|
|
82502
|
+
/**
|
|
82503
|
+
* The name of the Secret resource being referred to.
|
|
82504
|
+
*/
|
|
82505
|
+
name?: pulumi.Input<string>;
|
|
82506
|
+
/**
|
|
82507
|
+
* The namespace of the Secret resource being referred to.
|
|
82508
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
82509
|
+
*/
|
|
82510
|
+
namespace?: pulumi.Input<string>;
|
|
82511
|
+
}
|
|
82512
|
+
/**
|
|
82513
|
+
* ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.
|
|
82514
|
+
*/
|
|
82515
|
+
interface SecretStoreSpecProviderOnepasswordSDKAuthServiceAccountSecretRefPatch {
|
|
82516
|
+
/**
|
|
82517
|
+
* A key in the referenced Secret.
|
|
82518
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
82519
|
+
*/
|
|
82520
|
+
key?: pulumi.Input<string>;
|
|
82521
|
+
/**
|
|
82522
|
+
* The name of the Secret resource being referred to.
|
|
82523
|
+
*/
|
|
82524
|
+
name?: pulumi.Input<string>;
|
|
82525
|
+
/**
|
|
82526
|
+
* The namespace of the Secret resource being referred to.
|
|
82527
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
82528
|
+
*/
|
|
82529
|
+
namespace?: pulumi.Input<string>;
|
|
82530
|
+
}
|
|
82531
|
+
/**
|
|
82532
|
+
* IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
|
|
82533
|
+
* If you don't know which name and version to use, use `DefaultIntegrationName` and `DefaultIntegrationVersion`, respectively.
|
|
82534
|
+
*/
|
|
82535
|
+
interface SecretStoreSpecProviderOnepasswordSDKIntegrationInfo {
|
|
82536
|
+
/**
|
|
82537
|
+
* Name defaults to "1Password SDK".
|
|
82538
|
+
*/
|
|
82539
|
+
name?: pulumi.Input<string>;
|
|
82540
|
+
/**
|
|
82541
|
+
* Version defaults to "v1.0.0".
|
|
82542
|
+
*/
|
|
82543
|
+
version?: pulumi.Input<string>;
|
|
82544
|
+
}
|
|
82545
|
+
/**
|
|
82546
|
+
* IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
|
|
82547
|
+
* If you don't know which name and version to use, use `DefaultIntegrationName` and `DefaultIntegrationVersion`, respectively.
|
|
82548
|
+
*/
|
|
82549
|
+
interface SecretStoreSpecProviderOnepasswordSDKIntegrationInfoPatch {
|
|
82550
|
+
/**
|
|
82551
|
+
* Name defaults to "1Password SDK".
|
|
82552
|
+
*/
|
|
82553
|
+
name?: pulumi.Input<string>;
|
|
82554
|
+
/**
|
|
82555
|
+
* Version defaults to "v1.0.0".
|
|
82556
|
+
*/
|
|
82557
|
+
version?: pulumi.Input<string>;
|
|
82558
|
+
}
|
|
82559
|
+
/**
|
|
82560
|
+
* OnePasswordSDK configures this store to use 1Password's new Go SDK to sync secrets.
|
|
82561
|
+
*/
|
|
82562
|
+
interface SecretStoreSpecProviderOnepasswordSDKPatch {
|
|
82563
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKAuthPatch>;
|
|
82564
|
+
integrationInfo?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKIntegrationInfoPatch>;
|
|
82565
|
+
/**
|
|
82566
|
+
* Vault defines the vault's name to access. Do NOT add op:// prefix. This will be done automatically.
|
|
82567
|
+
*/
|
|
82568
|
+
vault?: pulumi.Input<string>;
|
|
82569
|
+
}
|
|
82231
82570
|
/**
|
|
82232
82571
|
* Oracle configures this store to sync secrets using Oracle Vault provider
|
|
82233
82572
|
*/
|
|
@@ -82671,6 +83010,7 @@ export declare namespace external_secrets {
|
|
|
82671
83010
|
kubernetes?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderKubernetesPatch>;
|
|
82672
83011
|
onboardbase?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnboardbasePatch>;
|
|
82673
83012
|
onepassword?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordPatch>;
|
|
83013
|
+
onepasswordSDK?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOnepasswordSDKPatch>;
|
|
82674
83014
|
oracle?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderOraclePatch>;
|
|
82675
83015
|
passbolt?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderPassboltPatch>;
|
|
82676
83016
|
passworddepot?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderPassworddepotPatch>;
|
|
@@ -84502,6 +84842,7 @@ export declare namespace external_secrets {
|
|
|
84502
84842
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
84503
84843
|
*/
|
|
84504
84844
|
interface SecretStoreSpecProviderWebhook {
|
|
84845
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuth>;
|
|
84505
84846
|
/**
|
|
84506
84847
|
* Body
|
|
84507
84848
|
*/
|
|
@@ -84539,6 +84880,112 @@ export declare namespace external_secrets {
|
|
|
84539
84880
|
*/
|
|
84540
84881
|
url?: pulumi.Input<string>;
|
|
84541
84882
|
}
|
|
84883
|
+
/**
|
|
84884
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
84885
|
+
*/
|
|
84886
|
+
interface SecretStoreSpecProviderWebhookAuth {
|
|
84887
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlm>;
|
|
84888
|
+
}
|
|
84889
|
+
/**
|
|
84890
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
84891
|
+
*/
|
|
84892
|
+
interface SecretStoreSpecProviderWebhookAuthNtlm {
|
|
84893
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlmPasswordSecret>;
|
|
84894
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlmUsernameSecret>;
|
|
84895
|
+
}
|
|
84896
|
+
/**
|
|
84897
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
84898
|
+
* In some instances, `key` is a required field.
|
|
84899
|
+
*/
|
|
84900
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPasswordSecret {
|
|
84901
|
+
/**
|
|
84902
|
+
* A key in the referenced Secret.
|
|
84903
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
84904
|
+
*/
|
|
84905
|
+
key?: pulumi.Input<string>;
|
|
84906
|
+
/**
|
|
84907
|
+
* The name of the Secret resource being referred to.
|
|
84908
|
+
*/
|
|
84909
|
+
name?: pulumi.Input<string>;
|
|
84910
|
+
/**
|
|
84911
|
+
* The namespace of the Secret resource being referred to.
|
|
84912
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
84913
|
+
*/
|
|
84914
|
+
namespace?: pulumi.Input<string>;
|
|
84915
|
+
}
|
|
84916
|
+
/**
|
|
84917
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
84918
|
+
* In some instances, `key` is a required field.
|
|
84919
|
+
*/
|
|
84920
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch {
|
|
84921
|
+
/**
|
|
84922
|
+
* A key in the referenced Secret.
|
|
84923
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
84924
|
+
*/
|
|
84925
|
+
key?: pulumi.Input<string>;
|
|
84926
|
+
/**
|
|
84927
|
+
* The name of the Secret resource being referred to.
|
|
84928
|
+
*/
|
|
84929
|
+
name?: pulumi.Input<string>;
|
|
84930
|
+
/**
|
|
84931
|
+
* The namespace of the Secret resource being referred to.
|
|
84932
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
84933
|
+
*/
|
|
84934
|
+
namespace?: pulumi.Input<string>;
|
|
84935
|
+
}
|
|
84936
|
+
/**
|
|
84937
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
84938
|
+
*/
|
|
84939
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPatch {
|
|
84940
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch>;
|
|
84941
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch>;
|
|
84942
|
+
}
|
|
84943
|
+
/**
|
|
84944
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
84945
|
+
* In some instances, `key` is a required field.
|
|
84946
|
+
*/
|
|
84947
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmUsernameSecret {
|
|
84948
|
+
/**
|
|
84949
|
+
* A key in the referenced Secret.
|
|
84950
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
84951
|
+
*/
|
|
84952
|
+
key?: pulumi.Input<string>;
|
|
84953
|
+
/**
|
|
84954
|
+
* The name of the Secret resource being referred to.
|
|
84955
|
+
*/
|
|
84956
|
+
name?: pulumi.Input<string>;
|
|
84957
|
+
/**
|
|
84958
|
+
* The namespace of the Secret resource being referred to.
|
|
84959
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
84960
|
+
*/
|
|
84961
|
+
namespace?: pulumi.Input<string>;
|
|
84962
|
+
}
|
|
84963
|
+
/**
|
|
84964
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
84965
|
+
* In some instances, `key` is a required field.
|
|
84966
|
+
*/
|
|
84967
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch {
|
|
84968
|
+
/**
|
|
84969
|
+
* A key in the referenced Secret.
|
|
84970
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
84971
|
+
*/
|
|
84972
|
+
key?: pulumi.Input<string>;
|
|
84973
|
+
/**
|
|
84974
|
+
* The name of the Secret resource being referred to.
|
|
84975
|
+
*/
|
|
84976
|
+
name?: pulumi.Input<string>;
|
|
84977
|
+
/**
|
|
84978
|
+
* The namespace of the Secret resource being referred to.
|
|
84979
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
84980
|
+
*/
|
|
84981
|
+
namespace?: pulumi.Input<string>;
|
|
84982
|
+
}
|
|
84983
|
+
/**
|
|
84984
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
84985
|
+
*/
|
|
84986
|
+
interface SecretStoreSpecProviderWebhookAuthPatch {
|
|
84987
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthNtlmPatch>;
|
|
84988
|
+
}
|
|
84542
84989
|
/**
|
|
84543
84990
|
* The provider for the CA bundle to use to validate webhook server certificate.
|
|
84544
84991
|
*/
|
|
@@ -84585,6 +85032,7 @@ export declare namespace external_secrets {
|
|
|
84585
85032
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
84586
85033
|
*/
|
|
84587
85034
|
interface SecretStoreSpecProviderWebhookPatch {
|
|
85035
|
+
auth?: pulumi.Input<inputs.external_secrets.v1.SecretStoreSpecProviderWebhookAuthPatch>;
|
|
84588
85036
|
/**
|
|
84589
85037
|
* Body
|
|
84590
85038
|
*/
|
|
@@ -87046,8 +87494,7 @@ export declare namespace external_secrets {
|
|
|
87046
87494
|
name?: pulumi.Input<string>;
|
|
87047
87495
|
}
|
|
87048
87496
|
/**
|
|
87049
|
-
* The labels to select by to find the Namespaces to create the ExternalSecrets in
|
|
87050
|
-
* Deprecated: Use NamespaceSelectors instead.
|
|
87497
|
+
* The labels to select by to find the Namespaces to create the ExternalSecrets in
|
|
87051
87498
|
*/
|
|
87052
87499
|
interface ClusterExternalSecretSpecNamespaceSelector {
|
|
87053
87500
|
/**
|
|
@@ -87108,8 +87555,7 @@ export declare namespace external_secrets {
|
|
|
87108
87555
|
values?: pulumi.Input<pulumi.Input<string>[]>;
|
|
87109
87556
|
}
|
|
87110
87557
|
/**
|
|
87111
|
-
* The labels to select by to find the Namespaces to create the ExternalSecrets in
|
|
87112
|
-
* Deprecated: Use NamespaceSelectors instead.
|
|
87558
|
+
* The labels to select by to find the Namespaces to create the ExternalSecrets in
|
|
87113
87559
|
*/
|
|
87114
87560
|
interface ClusterExternalSecretSpecNamespaceSelectorPatch {
|
|
87115
87561
|
/**
|
|
@@ -93612,6 +94058,7 @@ export declare namespace external_secrets {
|
|
|
93612
94058
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
93613
94059
|
*/
|
|
93614
94060
|
interface ClusterSecretStoreSpecProviderWebhook {
|
|
94061
|
+
auth?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuth>;
|
|
93615
94062
|
/**
|
|
93616
94063
|
* Body
|
|
93617
94064
|
*/
|
|
@@ -93649,6 +94096,112 @@ export declare namespace external_secrets {
|
|
|
93649
94096
|
*/
|
|
93650
94097
|
url?: pulumi.Input<string>;
|
|
93651
94098
|
}
|
|
94099
|
+
/**
|
|
94100
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
94101
|
+
*/
|
|
94102
|
+
interface ClusterSecretStoreSpecProviderWebhookAuth {
|
|
94103
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlm>;
|
|
94104
|
+
}
|
|
94105
|
+
/**
|
|
94106
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
94107
|
+
*/
|
|
94108
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlm {
|
|
94109
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecret>;
|
|
94110
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecret>;
|
|
94111
|
+
}
|
|
94112
|
+
/**
|
|
94113
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
94114
|
+
* In some instances, `key` is a required field.
|
|
94115
|
+
*/
|
|
94116
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecret {
|
|
94117
|
+
/**
|
|
94118
|
+
* A key in the referenced Secret.
|
|
94119
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
94120
|
+
*/
|
|
94121
|
+
key?: pulumi.Input<string>;
|
|
94122
|
+
/**
|
|
94123
|
+
* The name of the Secret resource being referred to.
|
|
94124
|
+
*/
|
|
94125
|
+
name?: pulumi.Input<string>;
|
|
94126
|
+
/**
|
|
94127
|
+
* The namespace of the Secret resource being referred to.
|
|
94128
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
94129
|
+
*/
|
|
94130
|
+
namespace?: pulumi.Input<string>;
|
|
94131
|
+
}
|
|
94132
|
+
/**
|
|
94133
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
94134
|
+
* In some instances, `key` is a required field.
|
|
94135
|
+
*/
|
|
94136
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch {
|
|
94137
|
+
/**
|
|
94138
|
+
* A key in the referenced Secret.
|
|
94139
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
94140
|
+
*/
|
|
94141
|
+
key?: pulumi.Input<string>;
|
|
94142
|
+
/**
|
|
94143
|
+
* The name of the Secret resource being referred to.
|
|
94144
|
+
*/
|
|
94145
|
+
name?: pulumi.Input<string>;
|
|
94146
|
+
/**
|
|
94147
|
+
* The namespace of the Secret resource being referred to.
|
|
94148
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
94149
|
+
*/
|
|
94150
|
+
namespace?: pulumi.Input<string>;
|
|
94151
|
+
}
|
|
94152
|
+
/**
|
|
94153
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
94154
|
+
*/
|
|
94155
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmPatch {
|
|
94156
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch>;
|
|
94157
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch>;
|
|
94158
|
+
}
|
|
94159
|
+
/**
|
|
94160
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
94161
|
+
* In some instances, `key` is a required field.
|
|
94162
|
+
*/
|
|
94163
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecret {
|
|
94164
|
+
/**
|
|
94165
|
+
* A key in the referenced Secret.
|
|
94166
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
94167
|
+
*/
|
|
94168
|
+
key?: pulumi.Input<string>;
|
|
94169
|
+
/**
|
|
94170
|
+
* The name of the Secret resource being referred to.
|
|
94171
|
+
*/
|
|
94172
|
+
name?: pulumi.Input<string>;
|
|
94173
|
+
/**
|
|
94174
|
+
* The namespace of the Secret resource being referred to.
|
|
94175
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
94176
|
+
*/
|
|
94177
|
+
namespace?: pulumi.Input<string>;
|
|
94178
|
+
}
|
|
94179
|
+
/**
|
|
94180
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
94181
|
+
* In some instances, `key` is a required field.
|
|
94182
|
+
*/
|
|
94183
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch {
|
|
94184
|
+
/**
|
|
94185
|
+
* A key in the referenced Secret.
|
|
94186
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
94187
|
+
*/
|
|
94188
|
+
key?: pulumi.Input<string>;
|
|
94189
|
+
/**
|
|
94190
|
+
* The name of the Secret resource being referred to.
|
|
94191
|
+
*/
|
|
94192
|
+
name?: pulumi.Input<string>;
|
|
94193
|
+
/**
|
|
94194
|
+
* The namespace of the Secret resource being referred to.
|
|
94195
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
94196
|
+
*/
|
|
94197
|
+
namespace?: pulumi.Input<string>;
|
|
94198
|
+
}
|
|
94199
|
+
/**
|
|
94200
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
94201
|
+
*/
|
|
94202
|
+
interface ClusterSecretStoreSpecProviderWebhookAuthPatch {
|
|
94203
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthNtlmPatch>;
|
|
94204
|
+
}
|
|
93652
94205
|
/**
|
|
93653
94206
|
* The provider for the CA bundle to use to validate webhook server certificate.
|
|
93654
94207
|
*/
|
|
@@ -93695,6 +94248,7 @@ export declare namespace external_secrets {
|
|
|
93695
94248
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
93696
94249
|
*/
|
|
93697
94250
|
interface ClusterSecretStoreSpecProviderWebhookPatch {
|
|
94251
|
+
auth?: pulumi.Input<inputs.external_secrets.v1beta1.ClusterSecretStoreSpecProviderWebhookAuthPatch>;
|
|
93698
94252
|
/**
|
|
93699
94253
|
* Body
|
|
93700
94254
|
*/
|
|
@@ -101216,6 +101770,7 @@ export declare namespace external_secrets {
|
|
|
101216
101770
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
101217
101771
|
*/
|
|
101218
101772
|
interface SecretStoreSpecProviderWebhook {
|
|
101773
|
+
auth?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuth>;
|
|
101219
101774
|
/**
|
|
101220
101775
|
* Body
|
|
101221
101776
|
*/
|
|
@@ -101253,6 +101808,112 @@ export declare namespace external_secrets {
|
|
|
101253
101808
|
*/
|
|
101254
101809
|
url?: pulumi.Input<string>;
|
|
101255
101810
|
}
|
|
101811
|
+
/**
|
|
101812
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
101813
|
+
*/
|
|
101814
|
+
interface SecretStoreSpecProviderWebhookAuth {
|
|
101815
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlm>;
|
|
101816
|
+
}
|
|
101817
|
+
/**
|
|
101818
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
101819
|
+
*/
|
|
101820
|
+
interface SecretStoreSpecProviderWebhookAuthNtlm {
|
|
101821
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlmPasswordSecret>;
|
|
101822
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlmUsernameSecret>;
|
|
101823
|
+
}
|
|
101824
|
+
/**
|
|
101825
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
101826
|
+
* In some instances, `key` is a required field.
|
|
101827
|
+
*/
|
|
101828
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPasswordSecret {
|
|
101829
|
+
/**
|
|
101830
|
+
* A key in the referenced Secret.
|
|
101831
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
101832
|
+
*/
|
|
101833
|
+
key?: pulumi.Input<string>;
|
|
101834
|
+
/**
|
|
101835
|
+
* The name of the Secret resource being referred to.
|
|
101836
|
+
*/
|
|
101837
|
+
name?: pulumi.Input<string>;
|
|
101838
|
+
/**
|
|
101839
|
+
* The namespace of the Secret resource being referred to.
|
|
101840
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
101841
|
+
*/
|
|
101842
|
+
namespace?: pulumi.Input<string>;
|
|
101843
|
+
}
|
|
101844
|
+
/**
|
|
101845
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
101846
|
+
* In some instances, `key` is a required field.
|
|
101847
|
+
*/
|
|
101848
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch {
|
|
101849
|
+
/**
|
|
101850
|
+
* A key in the referenced Secret.
|
|
101851
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
101852
|
+
*/
|
|
101853
|
+
key?: pulumi.Input<string>;
|
|
101854
|
+
/**
|
|
101855
|
+
* The name of the Secret resource being referred to.
|
|
101856
|
+
*/
|
|
101857
|
+
name?: pulumi.Input<string>;
|
|
101858
|
+
/**
|
|
101859
|
+
* The namespace of the Secret resource being referred to.
|
|
101860
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
101861
|
+
*/
|
|
101862
|
+
namespace?: pulumi.Input<string>;
|
|
101863
|
+
}
|
|
101864
|
+
/**
|
|
101865
|
+
* NTLMProtocol configures the store to use NTLM for auth
|
|
101866
|
+
*/
|
|
101867
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmPatch {
|
|
101868
|
+
passwordSecret?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlmPasswordSecretPatch>;
|
|
101869
|
+
usernameSecret?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch>;
|
|
101870
|
+
}
|
|
101871
|
+
/**
|
|
101872
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
101873
|
+
* In some instances, `key` is a required field.
|
|
101874
|
+
*/
|
|
101875
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmUsernameSecret {
|
|
101876
|
+
/**
|
|
101877
|
+
* A key in the referenced Secret.
|
|
101878
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
101879
|
+
*/
|
|
101880
|
+
key?: pulumi.Input<string>;
|
|
101881
|
+
/**
|
|
101882
|
+
* The name of the Secret resource being referred to.
|
|
101883
|
+
*/
|
|
101884
|
+
name?: pulumi.Input<string>;
|
|
101885
|
+
/**
|
|
101886
|
+
* The namespace of the Secret resource being referred to.
|
|
101887
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
101888
|
+
*/
|
|
101889
|
+
namespace?: pulumi.Input<string>;
|
|
101890
|
+
}
|
|
101891
|
+
/**
|
|
101892
|
+
* A reference to a specific 'key' within a Secret resource.
|
|
101893
|
+
* In some instances, `key` is a required field.
|
|
101894
|
+
*/
|
|
101895
|
+
interface SecretStoreSpecProviderWebhookAuthNtlmUsernameSecretPatch {
|
|
101896
|
+
/**
|
|
101897
|
+
* A key in the referenced Secret.
|
|
101898
|
+
* Some instances of this field may be defaulted, in others it may be required.
|
|
101899
|
+
*/
|
|
101900
|
+
key?: pulumi.Input<string>;
|
|
101901
|
+
/**
|
|
101902
|
+
* The name of the Secret resource being referred to.
|
|
101903
|
+
*/
|
|
101904
|
+
name?: pulumi.Input<string>;
|
|
101905
|
+
/**
|
|
101906
|
+
* The namespace of the Secret resource being referred to.
|
|
101907
|
+
* Ignored if referent is not cluster-scoped, otherwise defaults to the namespace of the referent.
|
|
101908
|
+
*/
|
|
101909
|
+
namespace?: pulumi.Input<string>;
|
|
101910
|
+
}
|
|
101911
|
+
/**
|
|
101912
|
+
* Auth specifies a authorization protocol. Only one protocol may be set.
|
|
101913
|
+
*/
|
|
101914
|
+
interface SecretStoreSpecProviderWebhookAuthPatch {
|
|
101915
|
+
ntlm?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthNtlmPatch>;
|
|
101916
|
+
}
|
|
101256
101917
|
/**
|
|
101257
101918
|
* The provider for the CA bundle to use to validate webhook server certificate.
|
|
101258
101919
|
*/
|
|
@@ -101299,6 +101960,7 @@ export declare namespace external_secrets {
|
|
|
101299
101960
|
* Webhook configures this store to sync secrets using a generic templated webhook
|
|
101300
101961
|
*/
|
|
101301
101962
|
interface SecretStoreSpecProviderWebhookPatch {
|
|
101963
|
+
auth?: pulumi.Input<inputs.external_secrets.v1beta1.SecretStoreSpecProviderWebhookAuthPatch>;
|
|
101302
101964
|
/**
|
|
101303
101965
|
* Body
|
|
101304
101966
|
*/
|
|
@@ -109938,6 +110600,10 @@ export declare namespace gateway {
|
|
|
109938
110600
|
fqdn?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsFqdn>;
|
|
109939
110601
|
ip?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsIp>;
|
|
109940
110602
|
unix?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsUnix>;
|
|
110603
|
+
/**
|
|
110604
|
+
* Zone defines the service zone of the backend endpoint.
|
|
110605
|
+
*/
|
|
110606
|
+
zone?: pulumi.Input<string>;
|
|
109941
110607
|
}
|
|
109942
110608
|
/**
|
|
109943
110609
|
* FQDN defines a FQDN endpoint
|
|
@@ -110001,6 +110667,10 @@ export declare namespace gateway {
|
|
|
110001
110667
|
fqdn?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsFqdnPatch>;
|
|
110002
110668
|
ip?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsIpPatch>;
|
|
110003
110669
|
unix?: pulumi.Input<inputs.gateway.v1alpha1.BackendSpecEndpointsUnixPatch>;
|
|
110670
|
+
/**
|
|
110671
|
+
* Zone defines the service zone of the backend endpoint.
|
|
110672
|
+
*/
|
|
110673
|
+
zone?: pulumi.Input<string>;
|
|
110004
110674
|
}
|
|
110005
110675
|
/**
|
|
110006
110676
|
* Unix defines the unix domain socket endpoint
|
|
@@ -110008,6 +110678,7 @@ export declare namespace gateway {
|
|
|
110008
110678
|
interface BackendSpecEndpointsUnix {
|
|
110009
110679
|
/**
|
|
110010
110680
|
* Path defines the unix domain socket path of the backend endpoint.
|
|
110681
|
+
* The path length must not exceed 108 characters.
|
|
110011
110682
|
*/
|
|
110012
110683
|
path?: pulumi.Input<string>;
|
|
110013
110684
|
}
|
|
@@ -110017,6 +110688,7 @@ export declare namespace gateway {
|
|
|
110017
110688
|
interface BackendSpecEndpointsUnixPatch {
|
|
110018
110689
|
/**
|
|
110019
110690
|
* Path defines the unix domain socket path of the backend endpoint.
|
|
110691
|
+
* The path length must not exceed 108 characters.
|
|
110020
110692
|
*/
|
|
110021
110693
|
path?: pulumi.Input<string>;
|
|
110022
110694
|
}
|
|
@@ -110630,6 +111302,11 @@ export declare namespace gateway {
|
|
|
110630
111302
|
* Defaults to 200 only
|
|
110631
111303
|
*/
|
|
110632
111304
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
111305
|
+
/**
|
|
111306
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
111307
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
111308
|
+
*/
|
|
111309
|
+
hostname?: pulumi.Input<string>;
|
|
110633
111310
|
/**
|
|
110634
111311
|
* Method defines the HTTP method used for health checking.
|
|
110635
111312
|
* Defaults to GET
|
|
@@ -110685,6 +111362,11 @@ export declare namespace gateway {
|
|
|
110685
111362
|
* Defaults to 200 only
|
|
110686
111363
|
*/
|
|
110687
111364
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
111365
|
+
/**
|
|
111366
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
111367
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
111368
|
+
*/
|
|
111369
|
+
hostname?: pulumi.Input<string>;
|
|
110688
111370
|
/**
|
|
110689
111371
|
* Method defines the HTTP method used for health checking.
|
|
110690
111372
|
* Defaults to GET
|
|
@@ -111232,12 +111914,6 @@ export declare namespace gateway {
|
|
|
111232
111914
|
* to rate limit the request.
|
|
111233
111915
|
*/
|
|
111234
111916
|
rules?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRules>[]>;
|
|
111235
|
-
/**
|
|
111236
|
-
* Shared determines whether the rate limit rules apply across all the policy targets.
|
|
111237
|
-
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
111238
|
-
* Default: false.
|
|
111239
|
-
*/
|
|
111240
|
-
shared?: pulumi.Input<boolean>;
|
|
111241
111917
|
}
|
|
111242
111918
|
/**
|
|
111243
111919
|
* Global defines global rate limit configuration.
|
|
@@ -111254,12 +111930,6 @@ export declare namespace gateway {
|
|
|
111254
111930
|
* to rate limit the request.
|
|
111255
111931
|
*/
|
|
111256
111932
|
rules?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesPatch>[]>;
|
|
111257
|
-
/**
|
|
111258
|
-
* Shared determines whether the rate limit rules apply across all the policy targets.
|
|
111259
|
-
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
111260
|
-
* Default: false.
|
|
111261
|
-
*/
|
|
111262
|
-
shared?: pulumi.Input<boolean>;
|
|
111263
111933
|
}
|
|
111264
111934
|
/**
|
|
111265
111935
|
* RateLimitRule defines the semantics for matching attributes
|
|
@@ -111283,6 +111953,12 @@ export declare namespace gateway {
|
|
|
111283
111953
|
clientSelectors?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesClientSelectors>[]>;
|
|
111284
111954
|
cost?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesCost>;
|
|
111285
111955
|
limit?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesLimit>;
|
|
111956
|
+
/**
|
|
111957
|
+
* Shared determines whether this rate limit rule applies across all the policy targets.
|
|
111958
|
+
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
111959
|
+
* Default: false.
|
|
111960
|
+
*/
|
|
111961
|
+
shared?: pulumi.Input<boolean>;
|
|
111286
111962
|
}
|
|
111287
111963
|
/**
|
|
111288
111964
|
* RateLimitSelectCondition specifies the attributes within the traffic flow that can
|
|
@@ -111610,6 +112286,12 @@ export declare namespace gateway {
|
|
|
111610
112286
|
clientSelectors?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesClientSelectorsPatch>[]>;
|
|
111611
112287
|
cost?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesCostPatch>;
|
|
111612
112288
|
limit?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitGlobalRulesLimitPatch>;
|
|
112289
|
+
/**
|
|
112290
|
+
* Shared determines whether this rate limit rule applies across all the policy targets.
|
|
112291
|
+
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
112292
|
+
* Default: false.
|
|
112293
|
+
*/
|
|
112294
|
+
shared?: pulumi.Input<boolean>;
|
|
111613
112295
|
}
|
|
111614
112296
|
/**
|
|
111615
112297
|
* Local defines local rate limit configuration.
|
|
@@ -111657,6 +112339,12 @@ export declare namespace gateway {
|
|
|
111657
112339
|
clientSelectors?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesClientSelectors>[]>;
|
|
111658
112340
|
cost?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesCost>;
|
|
111659
112341
|
limit?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesLimit>;
|
|
112342
|
+
/**
|
|
112343
|
+
* Shared determines whether this rate limit rule applies across all the policy targets.
|
|
112344
|
+
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
112345
|
+
* Default: false.
|
|
112346
|
+
*/
|
|
112347
|
+
shared?: pulumi.Input<boolean>;
|
|
111660
112348
|
}
|
|
111661
112349
|
/**
|
|
111662
112350
|
* RateLimitSelectCondition specifies the attributes within the traffic flow that can
|
|
@@ -111984,6 +112672,12 @@ export declare namespace gateway {
|
|
|
111984
112672
|
clientSelectors?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesClientSelectorsPatch>[]>;
|
|
111985
112673
|
cost?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesCostPatch>;
|
|
111986
112674
|
limit?: pulumi.Input<inputs.gateway.v1alpha1.BackendTrafficPolicySpecRateLimitLocalRulesLimitPatch>;
|
|
112675
|
+
/**
|
|
112676
|
+
* Shared determines whether this rate limit rule applies across all the policy targets.
|
|
112677
|
+
* If set to true, the rule is treated as a common bucket and is shared across all policy targets (xRoutes).
|
|
112678
|
+
* Default: false.
|
|
112679
|
+
*/
|
|
112680
|
+
shared?: pulumi.Input<boolean>;
|
|
111987
112681
|
}
|
|
111988
112682
|
/**
|
|
111989
112683
|
* RateLimit allows the user to limit the number of incoming requests
|
|
@@ -115204,6 +115898,11 @@ export declare namespace gateway {
|
|
|
115204
115898
|
* Defaults to 200 only
|
|
115205
115899
|
*/
|
|
115206
115900
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
115901
|
+
/**
|
|
115902
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
115903
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
115904
|
+
*/
|
|
115905
|
+
hostname?: pulumi.Input<string>;
|
|
115207
115906
|
/**
|
|
115208
115907
|
* Method defines the HTTP method used for health checking.
|
|
115209
115908
|
* Defaults to GET
|
|
@@ -115259,6 +115958,11 @@ export declare namespace gateway {
|
|
|
115259
115958
|
* Defaults to 200 only
|
|
115260
115959
|
*/
|
|
115261
115960
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
115961
|
+
/**
|
|
115962
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
115963
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
115964
|
+
*/
|
|
115965
|
+
hostname?: pulumi.Input<string>;
|
|
115262
115966
|
/**
|
|
115263
115967
|
* Method defines the HTTP method used for health checking.
|
|
115264
115968
|
* Defaults to GET
|
|
@@ -118956,7 +119660,6 @@ export declare namespace gateway {
|
|
|
118956
119660
|
* pod labels will be ignored. The default value is empty.
|
|
118957
119661
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
118958
119662
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
118959
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
118960
119663
|
*/
|
|
118961
119664
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
118962
119665
|
/**
|
|
@@ -118968,7 +119671,6 @@ export declare namespace gateway {
|
|
|
118968
119671
|
* pod labels will be ignored. The default value is empty.
|
|
118969
119672
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
118970
119673
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
118971
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
118972
119674
|
*/
|
|
118973
119675
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
118974
119676
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -119090,7 +119792,6 @@ export declare namespace gateway {
|
|
|
119090
119792
|
* pod labels will be ignored. The default value is empty.
|
|
119091
119793
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
119092
119794
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
119093
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119094
119795
|
*/
|
|
119095
119796
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119096
119797
|
/**
|
|
@@ -119102,7 +119803,6 @@ export declare namespace gateway {
|
|
|
119102
119803
|
* pod labels will be ignored. The default value is empty.
|
|
119103
119804
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
119104
119805
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
119105
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119106
119806
|
*/
|
|
119107
119807
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119108
119808
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -119257,7 +119957,6 @@ export declare namespace gateway {
|
|
|
119257
119957
|
* pod labels will be ignored. The default value is empty.
|
|
119258
119958
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
119259
119959
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
119260
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119261
119960
|
*/
|
|
119262
119961
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119263
119962
|
/**
|
|
@@ -119269,7 +119968,6 @@ export declare namespace gateway {
|
|
|
119269
119968
|
* pod labels will be ignored. The default value is empty.
|
|
119270
119969
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
119271
119970
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
119272
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119273
119971
|
*/
|
|
119274
119972
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119275
119973
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -119391,7 +120089,6 @@ export declare namespace gateway {
|
|
|
119391
120089
|
* pod labels will be ignored. The default value is empty.
|
|
119392
120090
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
119393
120091
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
119394
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119395
120092
|
*/
|
|
119396
120093
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119397
120094
|
/**
|
|
@@ -119403,7 +120100,6 @@ export declare namespace gateway {
|
|
|
119403
120100
|
* pod labels will be ignored. The default value is empty.
|
|
119404
120101
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
119405
120102
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
119406
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
119407
120103
|
*/
|
|
119408
120104
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119409
120105
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -119848,7 +120544,6 @@ export declare namespace gateway {
|
|
|
119848
120544
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
119849
120545
|
*
|
|
119850
120546
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
119851
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
119852
120547
|
*/
|
|
119853
120548
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
119854
120549
|
/**
|
|
@@ -119859,7 +120554,6 @@ export declare namespace gateway {
|
|
|
119859
120554
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
119860
120555
|
*
|
|
119861
120556
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
119862
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
119863
120557
|
*/
|
|
119864
120558
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
119865
120559
|
/**
|
|
@@ -120805,7 +121499,7 @@ export declare namespace gateway {
|
|
|
120805
121499
|
* The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
|
|
120806
121500
|
* The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
|
|
120807
121501
|
* The volume will be mounted read-only (ro) and non-executable files (noexec).
|
|
120808
|
-
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
|
|
121502
|
+
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
|
|
120809
121503
|
* The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
|
|
120810
121504
|
*/
|
|
120811
121505
|
interface EnvoyProxySpecProviderKubernetesEnvoyDaemonSetPodVolumesImage {
|
|
@@ -122250,12 +122944,12 @@ export declare namespace gateway {
|
|
|
122250
122944
|
valueFrom?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersEnvValueFrom>;
|
|
122251
122945
|
}
|
|
122252
122946
|
/**
|
|
122253
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
122947
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
122254
122948
|
*/
|
|
122255
122949
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersEnvFrom {
|
|
122256
122950
|
configMapRef?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersEnvFromConfigMapRef>;
|
|
122257
122951
|
/**
|
|
122258
|
-
*
|
|
122952
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
122259
122953
|
*/
|
|
122260
122954
|
prefix?: pulumi.Input<string>;
|
|
122261
122955
|
secretRef?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersEnvFromSecretRef>;
|
|
@@ -122384,6 +123078,12 @@ export declare namespace gateway {
|
|
|
122384
123078
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecycle {
|
|
122385
123079
|
postStart?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePostStart>;
|
|
122386
123080
|
preStop?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentInitContainersLifecyclePreStop>;
|
|
123081
|
+
/**
|
|
123082
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
123083
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
123084
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
123085
|
+
*/
|
|
123086
|
+
stopSignal?: pulumi.Input<string>;
|
|
122387
123087
|
}
|
|
122388
123088
|
/**
|
|
122389
123089
|
* PostStart is called immediately after a container is created. If the handler fails,
|
|
@@ -123640,7 +124340,6 @@ export declare namespace gateway {
|
|
|
123640
124340
|
* pod labels will be ignored. The default value is empty.
|
|
123641
124341
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
123642
124342
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
123643
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123644
124343
|
*/
|
|
123645
124344
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123646
124345
|
/**
|
|
@@ -123652,7 +124351,6 @@ export declare namespace gateway {
|
|
|
123652
124351
|
* pod labels will be ignored. The default value is empty.
|
|
123653
124352
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
123654
124353
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
123655
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123656
124354
|
*/
|
|
123657
124355
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123658
124356
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -123774,7 +124472,6 @@ export declare namespace gateway {
|
|
|
123774
124472
|
* pod labels will be ignored. The default value is empty.
|
|
123775
124473
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
123776
124474
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
123777
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123778
124475
|
*/
|
|
123779
124476
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123780
124477
|
/**
|
|
@@ -123786,7 +124483,6 @@ export declare namespace gateway {
|
|
|
123786
124483
|
* pod labels will be ignored. The default value is empty.
|
|
123787
124484
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
123788
124485
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
123789
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123790
124486
|
*/
|
|
123791
124487
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123792
124488
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -123941,7 +124637,6 @@ export declare namespace gateway {
|
|
|
123941
124637
|
* pod labels will be ignored. The default value is empty.
|
|
123942
124638
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
123943
124639
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
123944
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123945
124640
|
*/
|
|
123946
124641
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123947
124642
|
/**
|
|
@@ -123953,7 +124648,6 @@ export declare namespace gateway {
|
|
|
123953
124648
|
* pod labels will be ignored. The default value is empty.
|
|
123954
124649
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
123955
124650
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
123956
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
123957
124651
|
*/
|
|
123958
124652
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123959
124653
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -124075,7 +124769,6 @@ export declare namespace gateway {
|
|
|
124075
124769
|
* pod labels will be ignored. The default value is empty.
|
|
124076
124770
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
124077
124771
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
124078
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
124079
124772
|
*/
|
|
124080
124773
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
124081
124774
|
/**
|
|
@@ -124087,7 +124780,6 @@ export declare namespace gateway {
|
|
|
124087
124780
|
* pod labels will be ignored. The default value is empty.
|
|
124088
124781
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
124089
124782
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
124090
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
124091
124783
|
*/
|
|
124092
124784
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
124093
124785
|
namespaceSelector?: pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -124532,7 +125224,6 @@ export declare namespace gateway {
|
|
|
124532
125224
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
124533
125225
|
*
|
|
124534
125226
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
124535
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
124536
125227
|
*/
|
|
124537
125228
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
124538
125229
|
/**
|
|
@@ -124543,7 +125234,6 @@ export declare namespace gateway {
|
|
|
124543
125234
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
124544
125235
|
*
|
|
124545
125236
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
124546
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
124547
125237
|
*/
|
|
124548
125238
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
124549
125239
|
/**
|
|
@@ -125489,7 +126179,7 @@ export declare namespace gateway {
|
|
|
125489
126179
|
* The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
|
|
125490
126180
|
* The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
|
|
125491
126181
|
* The volume will be mounted read-only (ro) and non-executable files (noexec).
|
|
125492
|
-
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
|
|
126182
|
+
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
|
|
125493
126183
|
* The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
|
|
125494
126184
|
*/
|
|
125495
126185
|
interface EnvoyProxySpecProviderKubernetesEnvoyDeploymentPodVolumesImage {
|
|
@@ -126343,7 +127033,9 @@ export declare namespace gateway {
|
|
|
126343
127033
|
interface EnvoyProxySpecProviderKubernetesEnvoyHpaBehaviorScaleDown {
|
|
126344
127034
|
/**
|
|
126345
127035
|
* policies is a list of potential scaling polices which can be used during scaling.
|
|
126346
|
-
*
|
|
127036
|
+
* If not set, use the default values:
|
|
127037
|
+
* - For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
|
|
127038
|
+
* - For scale down: allow all pods to be removed in a 15s window.
|
|
126347
127039
|
*/
|
|
126348
127040
|
policies?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyHpaBehaviorScaleDownPolicies>[]>;
|
|
126349
127041
|
/**
|
|
@@ -126360,6 +127052,20 @@ export declare namespace gateway {
|
|
|
126360
127052
|
* - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
|
|
126361
127053
|
*/
|
|
126362
127054
|
stabilizationWindowSeconds?: pulumi.Input<number>;
|
|
127055
|
+
/**
|
|
127056
|
+
* tolerance is the tolerance on the ratio between the current and desired
|
|
127057
|
+
* metric value under which no updates are made to the desired number of
|
|
127058
|
+
* replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
|
|
127059
|
+
* set, the default cluster-wide tolerance is applied (by default 10%).
|
|
127060
|
+
*
|
|
127061
|
+
* For example, if autoscaling is configured with a memory consumption target of 100Mi,
|
|
127062
|
+
* and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
|
|
127063
|
+
* triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
|
|
127064
|
+
*
|
|
127065
|
+
* This is an alpha field and requires enabling the HPAConfigurableTolerance
|
|
127066
|
+
* feature gate.
|
|
127067
|
+
*/
|
|
127068
|
+
tolerance?: pulumi.Input<number | string>;
|
|
126363
127069
|
}
|
|
126364
127070
|
/**
|
|
126365
127071
|
* HPAScalingPolicy is a single policy which must hold true for a specified past interval.
|
|
@@ -126390,7 +127096,9 @@ export declare namespace gateway {
|
|
|
126390
127096
|
interface EnvoyProxySpecProviderKubernetesEnvoyHpaBehaviorScaleUp {
|
|
126391
127097
|
/**
|
|
126392
127098
|
* policies is a list of potential scaling polices which can be used during scaling.
|
|
126393
|
-
*
|
|
127099
|
+
* If not set, use the default values:
|
|
127100
|
+
* - For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
|
|
127101
|
+
* - For scale down: allow all pods to be removed in a 15s window.
|
|
126394
127102
|
*/
|
|
126395
127103
|
policies?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.EnvoyProxySpecProviderKubernetesEnvoyHpaBehaviorScaleUpPolicies>[]>;
|
|
126396
127104
|
/**
|
|
@@ -126407,6 +127115,20 @@ export declare namespace gateway {
|
|
|
126407
127115
|
* - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
|
|
126408
127116
|
*/
|
|
126409
127117
|
stabilizationWindowSeconds?: pulumi.Input<number>;
|
|
127118
|
+
/**
|
|
127119
|
+
* tolerance is the tolerance on the ratio between the current and desired
|
|
127120
|
+
* metric value under which no updates are made to the desired number of
|
|
127121
|
+
* replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
|
|
127122
|
+
* set, the default cluster-wide tolerance is applied (by default 10%).
|
|
127123
|
+
*
|
|
127124
|
+
* For example, if autoscaling is configured with a memory consumption target of 100Mi,
|
|
127125
|
+
* and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
|
|
127126
|
+
* triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
|
|
127127
|
+
*
|
|
127128
|
+
* This is an alpha field and requires enabling the HPAConfigurableTolerance
|
|
127129
|
+
* feature gate.
|
|
127130
|
+
*/
|
|
127131
|
+
tolerance?: pulumi.Input<number | string>;
|
|
126410
127132
|
}
|
|
126411
127133
|
/**
|
|
126412
127134
|
* HPAScalingPolicy is a single policy which must hold true for a specified past interval.
|
|
@@ -127646,6 +128368,11 @@ export declare namespace gateway {
|
|
|
127646
128368
|
* Defaults to 200 only
|
|
127647
128369
|
*/
|
|
127648
128370
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
128371
|
+
/**
|
|
128372
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
128373
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
128374
|
+
*/
|
|
128375
|
+
hostname?: pulumi.Input<string>;
|
|
127649
128376
|
/**
|
|
127650
128377
|
* Method defines the HTTP method used for health checking.
|
|
127651
128378
|
* Defaults to GET
|
|
@@ -127701,6 +128428,11 @@ export declare namespace gateway {
|
|
|
127701
128428
|
* Defaults to 200 only
|
|
127702
128429
|
*/
|
|
127703
128430
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
128431
|
+
/**
|
|
128432
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
128433
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
128434
|
+
*/
|
|
128435
|
+
hostname?: pulumi.Input<string>;
|
|
127704
128436
|
/**
|
|
127705
128437
|
* Method defines the HTTP method used for health checking.
|
|
127706
128438
|
* Defaults to GET
|
|
@@ -128976,6 +129708,11 @@ export declare namespace gateway {
|
|
|
128976
129708
|
* Defaults to 200 only
|
|
128977
129709
|
*/
|
|
128978
129710
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
129711
|
+
/**
|
|
129712
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
129713
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
129714
|
+
*/
|
|
129715
|
+
hostname?: pulumi.Input<string>;
|
|
128979
129716
|
/**
|
|
128980
129717
|
* Method defines the HTTP method used for health checking.
|
|
128981
129718
|
* Defaults to GET
|
|
@@ -129031,6 +129768,11 @@ export declare namespace gateway {
|
|
|
129031
129768
|
* Defaults to 200 only
|
|
129032
129769
|
*/
|
|
129033
129770
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
129771
|
+
/**
|
|
129772
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
129773
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
129774
|
+
*/
|
|
129775
|
+
hostname?: pulumi.Input<string>;
|
|
129034
129776
|
/**
|
|
129035
129777
|
* Method defines the HTTP method used for health checking.
|
|
129036
129778
|
* Defaults to GET
|
|
@@ -130434,6 +131176,11 @@ export declare namespace gateway {
|
|
|
130434
131176
|
* Defaults to 200 only
|
|
130435
131177
|
*/
|
|
130436
131178
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
131179
|
+
/**
|
|
131180
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
131181
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
131182
|
+
*/
|
|
131183
|
+
hostname?: pulumi.Input<string>;
|
|
130437
131184
|
/**
|
|
130438
131185
|
* Method defines the HTTP method used for health checking.
|
|
130439
131186
|
* Defaults to GET
|
|
@@ -130489,6 +131236,11 @@ export declare namespace gateway {
|
|
|
130489
131236
|
* Defaults to 200 only
|
|
130490
131237
|
*/
|
|
130491
131238
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
131239
|
+
/**
|
|
131240
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
131241
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
131242
|
+
*/
|
|
131243
|
+
hostname?: pulumi.Input<string>;
|
|
130492
131244
|
/**
|
|
130493
131245
|
* Method defines the HTTP method used for health checking.
|
|
130494
131246
|
* Defaults to GET
|
|
@@ -131782,6 +132534,11 @@ export declare namespace gateway {
|
|
|
131782
132534
|
* Defaults to 200 only
|
|
131783
132535
|
*/
|
|
131784
132536
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
132537
|
+
/**
|
|
132538
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
132539
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
132540
|
+
*/
|
|
132541
|
+
hostname?: pulumi.Input<string>;
|
|
131785
132542
|
/**
|
|
131786
132543
|
* Method defines the HTTP method used for health checking.
|
|
131787
132544
|
* Defaults to GET
|
|
@@ -131837,6 +132594,11 @@ export declare namespace gateway {
|
|
|
131837
132594
|
* Defaults to 200 only
|
|
131838
132595
|
*/
|
|
131839
132596
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
132597
|
+
/**
|
|
132598
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
132599
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
132600
|
+
*/
|
|
132601
|
+
hostname?: pulumi.Input<string>;
|
|
131840
132602
|
/**
|
|
131841
132603
|
* Method defines the HTTP method used for health checking.
|
|
131842
132604
|
* Defaults to GET
|
|
@@ -134230,6 +134992,11 @@ export declare namespace gateway {
|
|
|
134230
134992
|
* Defaults to 200 only
|
|
134231
134993
|
*/
|
|
134232
134994
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
134995
|
+
/**
|
|
134996
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
134997
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
134998
|
+
*/
|
|
134999
|
+
hostname?: pulumi.Input<string>;
|
|
134233
135000
|
/**
|
|
134234
135001
|
* Method defines the HTTP method used for health checking.
|
|
134235
135002
|
* Defaults to GET
|
|
@@ -134285,6 +135052,11 @@ export declare namespace gateway {
|
|
|
134285
135052
|
* Defaults to 200 only
|
|
134286
135053
|
*/
|
|
134287
135054
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
135055
|
+
/**
|
|
135056
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
135057
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
135058
|
+
*/
|
|
135059
|
+
hostname?: pulumi.Input<string>;
|
|
134288
135060
|
/**
|
|
134289
135061
|
* Method defines the HTTP method used for health checking.
|
|
134290
135062
|
* Defaults to GET
|
|
@@ -135503,6 +136275,11 @@ export declare namespace gateway {
|
|
|
135503
136275
|
* Defaults to 200 only
|
|
135504
136276
|
*/
|
|
135505
136277
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
136278
|
+
/**
|
|
136279
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
136280
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
136281
|
+
*/
|
|
136282
|
+
hostname?: pulumi.Input<string>;
|
|
135506
136283
|
/**
|
|
135507
136284
|
* Method defines the HTTP method used for health checking.
|
|
135508
136285
|
* Defaults to GET
|
|
@@ -135558,6 +136335,11 @@ export declare namespace gateway {
|
|
|
135558
136335
|
* Defaults to 200 only
|
|
135559
136336
|
*/
|
|
135560
136337
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
136338
|
+
/**
|
|
136339
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
136340
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
136341
|
+
*/
|
|
136342
|
+
hostname?: pulumi.Input<string>;
|
|
135561
136343
|
/**
|
|
135562
136344
|
* Method defines the HTTP method used for health checking.
|
|
135563
136345
|
* Defaults to GET
|
|
@@ -137098,6 +137880,11 @@ export declare namespace gateway {
|
|
|
137098
137880
|
* Defaults to 200 only
|
|
137099
137881
|
*/
|
|
137100
137882
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
137883
|
+
/**
|
|
137884
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
137885
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
137886
|
+
*/
|
|
137887
|
+
hostname?: pulumi.Input<string>;
|
|
137101
137888
|
/**
|
|
137102
137889
|
* Method defines the HTTP method used for health checking.
|
|
137103
137890
|
* Defaults to GET
|
|
@@ -137153,6 +137940,11 @@ export declare namespace gateway {
|
|
|
137153
137940
|
* Defaults to 200 only
|
|
137154
137941
|
*/
|
|
137155
137942
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
137943
|
+
/**
|
|
137944
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
137945
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
137946
|
+
*/
|
|
137947
|
+
hostname?: pulumi.Input<string>;
|
|
137156
137948
|
/**
|
|
137157
137949
|
* Method defines the HTTP method used for health checking.
|
|
137158
137950
|
* Defaults to GET
|
|
@@ -137901,6 +138693,7 @@ export declare namespace gateway {
|
|
|
137901
138693
|
* OAuth flow will fail.
|
|
137902
138694
|
*/
|
|
137903
138695
|
defaultTokenTTL?: pulumi.Input<string>;
|
|
138696
|
+
denyRedirect?: pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcDenyRedirect>;
|
|
137904
138697
|
/**
|
|
137905
138698
|
* ForwardAccessToken indicates whether the Envoy should forward the access token
|
|
137906
138699
|
* via the Authorization header Bearer scheme to the upstream.
|
|
@@ -137913,6 +138706,16 @@ export declare namespace gateway {
|
|
|
137913
138706
|
* If not specified, uses a default logout path "/logout"
|
|
137914
138707
|
*/
|
|
137915
138708
|
logoutPath?: pulumi.Input<string>;
|
|
138709
|
+
/**
|
|
138710
|
+
* Skips OIDC authentication when the request contains a header that will be extracted by the JWT filter. Unless
|
|
138711
|
+
* explicitly stated otherwise in the extractFrom field, this will be the "Authorization: Bearer ..." header.
|
|
138712
|
+
*
|
|
138713
|
+
* The passThroughAuthHeader option is typically used for non-browser clients that may not be able to handle OIDC
|
|
138714
|
+
* redirects and wish to directly supply a token instead.
|
|
138715
|
+
*
|
|
138716
|
+
* If not specified, defaults to false.
|
|
138717
|
+
*/
|
|
138718
|
+
passThroughAuthHeader?: pulumi.Input<boolean>;
|
|
137916
138719
|
provider?: pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcProvider>;
|
|
137917
138720
|
/**
|
|
137918
138721
|
* The redirect URL to be used in the OIDC
|
|
@@ -138048,6 +138851,60 @@ export declare namespace gateway {
|
|
|
138048
138851
|
*/
|
|
138049
138852
|
idToken?: pulumi.Input<string>;
|
|
138050
138853
|
}
|
|
138854
|
+
/**
|
|
138855
|
+
* Any request that matches any of the provided matchers (with either tokens that are expired or missing tokens) will not be redirected to the OIDC Provider.
|
|
138856
|
+
* This behavior can be useful for AJAX or machine requests.
|
|
138857
|
+
*/
|
|
138858
|
+
interface SecurityPolicySpecOidcDenyRedirect {
|
|
138859
|
+
/**
|
|
138860
|
+
* Defines the headers to match against the request to deny redirect to the OIDC Provider.
|
|
138861
|
+
*/
|
|
138862
|
+
headers?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcDenyRedirectHeaders>[]>;
|
|
138863
|
+
}
|
|
138864
|
+
/**
|
|
138865
|
+
* OIDCDenyRedirectHeader defines how a header is matched
|
|
138866
|
+
*/
|
|
138867
|
+
interface SecurityPolicySpecOidcDenyRedirectHeaders {
|
|
138868
|
+
/**
|
|
138869
|
+
* Specifies the name of the header in the request.
|
|
138870
|
+
*/
|
|
138871
|
+
name?: pulumi.Input<string>;
|
|
138872
|
+
/**
|
|
138873
|
+
* Type specifies how to match against a string.
|
|
138874
|
+
*/
|
|
138875
|
+
type?: pulumi.Input<string>;
|
|
138876
|
+
/**
|
|
138877
|
+
* Value specifies the string value that the match must have.
|
|
138878
|
+
*/
|
|
138879
|
+
value?: pulumi.Input<string>;
|
|
138880
|
+
}
|
|
138881
|
+
/**
|
|
138882
|
+
* OIDCDenyRedirectHeader defines how a header is matched
|
|
138883
|
+
*/
|
|
138884
|
+
interface SecurityPolicySpecOidcDenyRedirectHeadersPatch {
|
|
138885
|
+
/**
|
|
138886
|
+
* Specifies the name of the header in the request.
|
|
138887
|
+
*/
|
|
138888
|
+
name?: pulumi.Input<string>;
|
|
138889
|
+
/**
|
|
138890
|
+
* Type specifies how to match against a string.
|
|
138891
|
+
*/
|
|
138892
|
+
type?: pulumi.Input<string>;
|
|
138893
|
+
/**
|
|
138894
|
+
* Value specifies the string value that the match must have.
|
|
138895
|
+
*/
|
|
138896
|
+
value?: pulumi.Input<string>;
|
|
138897
|
+
}
|
|
138898
|
+
/**
|
|
138899
|
+
* Any request that matches any of the provided matchers (with either tokens that are expired or missing tokens) will not be redirected to the OIDC Provider.
|
|
138900
|
+
* This behavior can be useful for AJAX or machine requests.
|
|
138901
|
+
*/
|
|
138902
|
+
interface SecurityPolicySpecOidcDenyRedirectPatch {
|
|
138903
|
+
/**
|
|
138904
|
+
* Defines the headers to match against the request to deny redirect to the OIDC Provider.
|
|
138905
|
+
*/
|
|
138906
|
+
headers?: pulumi.Input<pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcDenyRedirectHeadersPatch>[]>;
|
|
138907
|
+
}
|
|
138051
138908
|
/**
|
|
138052
138909
|
* OIDC defines the configuration for the OpenID Connect (OIDC) authentication.
|
|
138053
138910
|
*/
|
|
@@ -138086,6 +138943,7 @@ export declare namespace gateway {
|
|
|
138086
138943
|
* OAuth flow will fail.
|
|
138087
138944
|
*/
|
|
138088
138945
|
defaultTokenTTL?: pulumi.Input<string>;
|
|
138946
|
+
denyRedirect?: pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcDenyRedirectPatch>;
|
|
138089
138947
|
/**
|
|
138090
138948
|
* ForwardAccessToken indicates whether the Envoy should forward the access token
|
|
138091
138949
|
* via the Authorization header Bearer scheme to the upstream.
|
|
@@ -138098,6 +138956,16 @@ export declare namespace gateway {
|
|
|
138098
138956
|
* If not specified, uses a default logout path "/logout"
|
|
138099
138957
|
*/
|
|
138100
138958
|
logoutPath?: pulumi.Input<string>;
|
|
138959
|
+
/**
|
|
138960
|
+
* Skips OIDC authentication when the request contains a header that will be extracted by the JWT filter. Unless
|
|
138961
|
+
* explicitly stated otherwise in the extractFrom field, this will be the "Authorization: Bearer ..." header.
|
|
138962
|
+
*
|
|
138963
|
+
* The passThroughAuthHeader option is typically used for non-browser clients that may not be able to handle OIDC
|
|
138964
|
+
* redirects and wish to directly supply a token instead.
|
|
138965
|
+
*
|
|
138966
|
+
* If not specified, defaults to false.
|
|
138967
|
+
*/
|
|
138968
|
+
passThroughAuthHeader?: pulumi.Input<boolean>;
|
|
138101
138969
|
provider?: pulumi.Input<inputs.gateway.v1alpha1.SecurityPolicySpecOidcProviderPatch>;
|
|
138102
138970
|
/**
|
|
138103
138971
|
* The redirect URL to be used in the OIDC
|
|
@@ -138635,6 +139503,11 @@ export declare namespace gateway {
|
|
|
138635
139503
|
* Defaults to 200 only
|
|
138636
139504
|
*/
|
|
138637
139505
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
139506
|
+
/**
|
|
139507
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
139508
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
139509
|
+
*/
|
|
139510
|
+
hostname?: pulumi.Input<string>;
|
|
138638
139511
|
/**
|
|
138639
139512
|
* Method defines the HTTP method used for health checking.
|
|
138640
139513
|
* Defaults to GET
|
|
@@ -138690,6 +139563,11 @@ export declare namespace gateway {
|
|
|
138690
139563
|
* Defaults to 200 only
|
|
138691
139564
|
*/
|
|
138692
139565
|
expectedStatuses?: pulumi.Input<pulumi.Input<number>[]>;
|
|
139566
|
+
/**
|
|
139567
|
+
* Hostname defines the HTTP host that will be requested during health checking.
|
|
139568
|
+
* Default: HTTPRoute or GRPCRoute hostname.
|
|
139569
|
+
*/
|
|
139570
|
+
hostname?: pulumi.Input<string>;
|
|
138693
139571
|
/**
|
|
138694
139572
|
* Method defines the HTTP method used for health checking.
|
|
138695
139573
|
* Defaults to GET
|
|
@@ -216242,7 +217120,6 @@ export declare namespace postgresql {
|
|
|
216242
217120
|
* pod labels will be ignored. The default value is empty.
|
|
216243
217121
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
216244
217122
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
216245
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216246
217123
|
*/
|
|
216247
217124
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216248
217125
|
/**
|
|
@@ -216254,7 +217131,6 @@ export declare namespace postgresql {
|
|
|
216254
217131
|
* pod labels will be ignored. The default value is empty.
|
|
216255
217132
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
216256
217133
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
216257
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216258
217134
|
*/
|
|
216259
217135
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216260
217136
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -216454,7 +217330,6 @@ export declare namespace postgresql {
|
|
|
216454
217330
|
* pod labels will be ignored. The default value is empty.
|
|
216455
217331
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
216456
217332
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
216457
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216458
217333
|
*/
|
|
216459
217334
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216460
217335
|
/**
|
|
@@ -216466,7 +217341,6 @@ export declare namespace postgresql {
|
|
|
216466
217341
|
* pod labels will be ignored. The default value is empty.
|
|
216467
217342
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
216468
217343
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
216469
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216470
217344
|
*/
|
|
216471
217345
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216472
217346
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorPatch>;
|
|
@@ -216505,7 +217379,6 @@ export declare namespace postgresql {
|
|
|
216505
217379
|
* pod labels will be ignored. The default value is empty.
|
|
216506
217380
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
216507
217381
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
216508
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216509
217382
|
*/
|
|
216510
217383
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216511
217384
|
/**
|
|
@@ -216517,7 +217390,6 @@ export declare namespace postgresql {
|
|
|
216517
217390
|
* pod labels will be ignored. The default value is empty.
|
|
216518
217391
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
216519
217392
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
216520
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216521
217393
|
*/
|
|
216522
217394
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216523
217395
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -216722,7 +217594,6 @@ export declare namespace postgresql {
|
|
|
216722
217594
|
* pod labels will be ignored. The default value is empty.
|
|
216723
217595
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
216724
217596
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
216725
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216726
217597
|
*/
|
|
216727
217598
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216728
217599
|
/**
|
|
@@ -216734,7 +217605,6 @@ export declare namespace postgresql {
|
|
|
216734
217605
|
* pod labels will be ignored. The default value is empty.
|
|
216735
217606
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
216736
217607
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
216737
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216738
217608
|
*/
|
|
216739
217609
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216740
217610
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorPatch>;
|
|
@@ -216846,7 +217716,6 @@ export declare namespace postgresql {
|
|
|
216846
217716
|
* pod labels will be ignored. The default value is empty.
|
|
216847
217717
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
216848
217718
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
216849
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216850
217719
|
*/
|
|
216851
217720
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216852
217721
|
/**
|
|
@@ -216858,7 +217727,6 @@ export declare namespace postgresql {
|
|
|
216858
217727
|
* pod labels will be ignored. The default value is empty.
|
|
216859
217728
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
216860
217729
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
216861
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
216862
217730
|
*/
|
|
216863
217731
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216864
217732
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -217058,7 +217926,6 @@ export declare namespace postgresql {
|
|
|
217058
217926
|
* pod labels will be ignored. The default value is empty.
|
|
217059
217927
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
217060
217928
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
217061
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217062
217929
|
*/
|
|
217063
217930
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217064
217931
|
/**
|
|
@@ -217070,7 +217937,6 @@ export declare namespace postgresql {
|
|
|
217070
217937
|
* pod labels will be ignored. The default value is empty.
|
|
217071
217938
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
217072
217939
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
217073
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217074
217940
|
*/
|
|
217075
217941
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217076
217942
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorPatch>;
|
|
@@ -217109,7 +217975,6 @@ export declare namespace postgresql {
|
|
|
217109
217975
|
* pod labels will be ignored. The default value is empty.
|
|
217110
217976
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
217111
217977
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
217112
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217113
217978
|
*/
|
|
217114
217979
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217115
217980
|
/**
|
|
@@ -217121,7 +217986,6 @@ export declare namespace postgresql {
|
|
|
217121
217986
|
* pod labels will be ignored. The default value is empty.
|
|
217122
217987
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
217123
217988
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
217124
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217125
217989
|
*/
|
|
217126
217990
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217127
217991
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -217326,7 +218190,6 @@ export declare namespace postgresql {
|
|
|
217326
218190
|
* pod labels will be ignored. The default value is empty.
|
|
217327
218191
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
217328
218192
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
217329
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217330
218193
|
*/
|
|
217331
218194
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217332
218195
|
/**
|
|
@@ -217338,7 +218201,6 @@ export declare namespace postgresql {
|
|
|
217338
218201
|
* pod labels will be ignored. The default value is empty.
|
|
217339
218202
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
217340
218203
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
217341
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
217342
218204
|
*/
|
|
217343
218205
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
217344
218206
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorPatch>;
|
|
@@ -219754,12 +220616,12 @@ export declare namespace postgresql {
|
|
|
219754
220616
|
valueFrom?: pulumi.Input<inputs.postgresql.v1.ClusterSpecEnvValueFrom>;
|
|
219755
220617
|
}
|
|
219756
220618
|
/**
|
|
219757
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
220619
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
219758
220620
|
*/
|
|
219759
220621
|
interface ClusterSpecEnvFrom {
|
|
219760
220622
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.ClusterSpecEnvFromConfigMapRef>;
|
|
219761
220623
|
/**
|
|
219762
|
-
*
|
|
220624
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
219763
220625
|
*/
|
|
219764
220626
|
prefix?: pulumi.Input<string>;
|
|
219765
220627
|
secretRef?: pulumi.Input<inputs.postgresql.v1.ClusterSpecEnvFromSecretRef>;
|
|
@@ -219799,12 +220661,12 @@ export declare namespace postgresql {
|
|
|
219799
220661
|
optional?: pulumi.Input<boolean>;
|
|
219800
220662
|
}
|
|
219801
220663
|
/**
|
|
219802
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
220664
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
219803
220665
|
*/
|
|
219804
220666
|
interface ClusterSpecEnvFromPatch {
|
|
219805
220667
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.ClusterSpecEnvFromConfigMapRefPatch>;
|
|
219806
220668
|
/**
|
|
219807
|
-
*
|
|
220669
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
219808
220670
|
*/
|
|
219809
220671
|
prefix?: pulumi.Input<string>;
|
|
219810
220672
|
secretRef?: pulumi.Input<inputs.postgresql.v1.ClusterSpecEnvFromSecretRefPatch>;
|
|
@@ -222062,13 +222924,12 @@ export declare namespace postgresql {
|
|
|
222062
222924
|
sessionAffinity?: pulumi.Input<string>;
|
|
222063
222925
|
sessionAffinityConfig?: pulumi.Input<inputs.postgresql.v1.ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfig>;
|
|
222064
222926
|
/**
|
|
222065
|
-
* TrafficDistribution offers a way to express preferences for how traffic
|
|
222066
|
-
* distributed to Service endpoints. Implementations can use this field
|
|
222067
|
-
* hint, but are not required to guarantee strict adherence. If the
|
|
222068
|
-
* not set, the implementation will apply its default routing
|
|
222069
|
-
* to "PreferClose", implementations should prioritize
|
|
222070
|
-
*
|
|
222071
|
-
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
222927
|
+
* TrafficDistribution offers a way to express preferences for how traffic
|
|
222928
|
+
* is distributed to Service endpoints. Implementations can use this field
|
|
222929
|
+
* as a hint, but are not required to guarantee strict adherence. If the
|
|
222930
|
+
* field is not set, the implementation will apply its default routing
|
|
222931
|
+
* strategy. If set to "PreferClose", implementations should prioritize
|
|
222932
|
+
* endpoints that are in the same zone.
|
|
222072
222933
|
*/
|
|
222073
222934
|
trafficDistribution?: pulumi.Input<string>;
|
|
222074
222935
|
/**
|
|
@@ -222300,13 +223161,12 @@ export declare namespace postgresql {
|
|
|
222300
223161
|
sessionAffinity?: pulumi.Input<string>;
|
|
222301
223162
|
sessionAffinityConfig?: pulumi.Input<inputs.postgresql.v1.ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfigPatch>;
|
|
222302
223163
|
/**
|
|
222303
|
-
* TrafficDistribution offers a way to express preferences for how traffic
|
|
222304
|
-
* distributed to Service endpoints. Implementations can use this field
|
|
222305
|
-
* hint, but are not required to guarantee strict adherence. If the
|
|
222306
|
-
* not set, the implementation will apply its default routing
|
|
222307
|
-
* to "PreferClose", implementations should prioritize
|
|
222308
|
-
*
|
|
222309
|
-
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
223164
|
+
* TrafficDistribution offers a way to express preferences for how traffic
|
|
223165
|
+
* is distributed to Service endpoints. Implementations can use this field
|
|
223166
|
+
* as a hint, but are not required to guarantee strict adherence. If the
|
|
223167
|
+
* field is not set, the implementation will apply its default routing
|
|
223168
|
+
* strategy. If set to "PreferClose", implementations should prioritize
|
|
223169
|
+
* endpoints that are in the same zone.
|
|
222310
223170
|
*/
|
|
222311
223171
|
trafficDistribution?: pulumi.Input<string>;
|
|
222312
223172
|
/**
|
|
@@ -225736,7 +226596,6 @@ export declare namespace postgresql {
|
|
|
225736
226596
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
225737
226597
|
*
|
|
225738
226598
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
225739
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
225740
226599
|
*/
|
|
225741
226600
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
225742
226601
|
/**
|
|
@@ -225747,7 +226606,6 @@ export declare namespace postgresql {
|
|
|
225747
226606
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
225748
226607
|
*
|
|
225749
226608
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
225750
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
225751
226609
|
*/
|
|
225752
226610
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
225753
226611
|
/**
|
|
@@ -225934,7 +226792,6 @@ export declare namespace postgresql {
|
|
|
225934
226792
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
225935
226793
|
*
|
|
225936
226794
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
225937
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
225938
226795
|
*/
|
|
225939
226796
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
225940
226797
|
/**
|
|
@@ -225945,7 +226802,6 @@ export declare namespace postgresql {
|
|
|
225945
226802
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
225946
226803
|
*
|
|
225947
226804
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
225948
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
225949
226805
|
*/
|
|
225950
226806
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
225951
226807
|
/**
|
|
@@ -226511,16 +227367,12 @@ export declare namespace postgresql {
|
|
|
226511
227367
|
* ID of the latest generated node (used to avoid node name clashing)
|
|
226512
227368
|
*/
|
|
226513
227369
|
latestGeneratedNode?: pulumi.Input<number>;
|
|
226514
|
-
/**
|
|
226515
|
-
* MajorVersionUpgradeFromImage contains the image that was
|
|
226516
|
-
* running before the major version upgrade started.
|
|
226517
|
-
*/
|
|
226518
|
-
majorVersionUpgradeFromImage?: pulumi.Input<string>;
|
|
226519
227370
|
managedRolesStatus?: pulumi.Input<inputs.postgresql.v1.ClusterStatusManagedRolesStatus>;
|
|
226520
227371
|
/**
|
|
226521
227372
|
* OnlineUpdateEnabled shows if the online upgrade is enabled inside the cluster
|
|
226522
227373
|
*/
|
|
226523
227374
|
onlineUpdateEnabled?: pulumi.Input<boolean>;
|
|
227375
|
+
pgDataImageInfo?: pulumi.Input<inputs.postgresql.v1.ClusterStatusPgDataImageInfo>;
|
|
226524
227376
|
/**
|
|
226525
227377
|
* Current phase of the cluster
|
|
226526
227378
|
*/
|
|
@@ -226723,6 +227575,19 @@ export declare namespace postgresql {
|
|
|
226723
227575
|
}>;
|
|
226724
227576
|
}>;
|
|
226725
227577
|
}
|
|
227578
|
+
/**
|
|
227579
|
+
* PGDataImageInfo contains the details of the latest image that has run on the current data directory.
|
|
227580
|
+
*/
|
|
227581
|
+
interface ClusterStatusPgDataImageInfo {
|
|
227582
|
+
/**
|
|
227583
|
+
* Image is the image name
|
|
227584
|
+
*/
|
|
227585
|
+
image?: pulumi.Input<string>;
|
|
227586
|
+
/**
|
|
227587
|
+
* MajorVersion is the major version of the image
|
|
227588
|
+
*/
|
|
227589
|
+
majorVersion?: pulumi.Input<number>;
|
|
227590
|
+
}
|
|
226726
227591
|
/**
|
|
226727
227592
|
* PluginStatus is the status of a loaded plugin
|
|
226728
227593
|
*/
|
|
@@ -227743,13 +228608,12 @@ export declare namespace postgresql {
|
|
|
227743
228608
|
sessionAffinity?: pulumi.Input<string>;
|
|
227744
228609
|
sessionAffinityConfig?: pulumi.Input<inputs.postgresql.v1.PoolerSpecServiceTemplateSpecSessionAffinityConfig>;
|
|
227745
228610
|
/**
|
|
227746
|
-
* TrafficDistribution offers a way to express preferences for how traffic
|
|
227747
|
-
* distributed to Service endpoints. Implementations can use this field
|
|
227748
|
-
* hint, but are not required to guarantee strict adherence. If the
|
|
227749
|
-
* not set, the implementation will apply its default routing
|
|
227750
|
-
* to "PreferClose", implementations should prioritize
|
|
227751
|
-
*
|
|
227752
|
-
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
228611
|
+
* TrafficDistribution offers a way to express preferences for how traffic
|
|
228612
|
+
* is distributed to Service endpoints. Implementations can use this field
|
|
228613
|
+
* as a hint, but are not required to guarantee strict adherence. If the
|
|
228614
|
+
* field is not set, the implementation will apply its default routing
|
|
228615
|
+
* strategy. If set to "PreferClose", implementations should prioritize
|
|
228616
|
+
* endpoints that are in the same zone.
|
|
227753
228617
|
*/
|
|
227754
228618
|
trafficDistribution?: pulumi.Input<string>;
|
|
227755
228619
|
/**
|
|
@@ -227981,13 +228845,12 @@ export declare namespace postgresql {
|
|
|
227981
228845
|
sessionAffinity?: pulumi.Input<string>;
|
|
227982
228846
|
sessionAffinityConfig?: pulumi.Input<inputs.postgresql.v1.PoolerSpecServiceTemplateSpecSessionAffinityConfigPatch>;
|
|
227983
228847
|
/**
|
|
227984
|
-
* TrafficDistribution offers a way to express preferences for how traffic
|
|
227985
|
-
* distributed to Service endpoints. Implementations can use this field
|
|
227986
|
-
* hint, but are not required to guarantee strict adherence. If the
|
|
227987
|
-
* not set, the implementation will apply its default routing
|
|
227988
|
-
* to "PreferClose", implementations should prioritize
|
|
227989
|
-
*
|
|
227990
|
-
* This is a beta field and requires enabling ServiceTrafficDistribution feature.
|
|
228848
|
+
* TrafficDistribution offers a way to express preferences for how traffic
|
|
228849
|
+
* is distributed to Service endpoints. Implementations can use this field
|
|
228850
|
+
* as a hint, but are not required to guarantee strict adherence. If the
|
|
228851
|
+
* field is not set, the implementation will apply its default routing
|
|
228852
|
+
* strategy. If set to "PreferClose", implementations should prioritize
|
|
228853
|
+
* endpoints that are in the same zone.
|
|
227991
228854
|
*/
|
|
227992
228855
|
trafficDistribution?: pulumi.Input<string>;
|
|
227993
228856
|
/**
|
|
@@ -228339,7 +229202,7 @@ export declare namespace postgresql {
|
|
|
228339
229202
|
* Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes.
|
|
228340
229203
|
* The resourceRequirements of an init container are taken into account during scheduling
|
|
228341
229204
|
* by finding the highest request/limit for each resource type, and then using the max of
|
|
228342
|
-
*
|
|
229205
|
+
* that value or the sum of the normal containers. Limits are applied to init containers
|
|
228343
229206
|
* in a similar fashion.
|
|
228344
229207
|
* Init containers cannot currently be added or removed.
|
|
228345
229208
|
* Cannot be updated.
|
|
@@ -228935,7 +229798,6 @@ export declare namespace postgresql {
|
|
|
228935
229798
|
* pod labels will be ignored. The default value is empty.
|
|
228936
229799
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
228937
229800
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
228938
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
228939
229801
|
*/
|
|
228940
229802
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
228941
229803
|
/**
|
|
@@ -228947,7 +229809,6 @@ export declare namespace postgresql {
|
|
|
228947
229809
|
* pod labels will be ignored. The default value is empty.
|
|
228948
229810
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
228949
229811
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
228950
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
228951
229812
|
*/
|
|
228952
229813
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
228953
229814
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -229147,7 +230008,6 @@ export declare namespace postgresql {
|
|
|
229147
230008
|
* pod labels will be ignored. The default value is empty.
|
|
229148
230009
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229149
230010
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229150
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229151
230011
|
*/
|
|
229152
230012
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229153
230013
|
/**
|
|
@@ -229159,7 +230019,6 @@ export declare namespace postgresql {
|
|
|
229159
230019
|
* pod labels will be ignored. The default value is empty.
|
|
229160
230020
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229161
230021
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229162
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229163
230022
|
*/
|
|
229164
230023
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229165
230024
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorPatch>;
|
|
@@ -229198,7 +230057,6 @@ export declare namespace postgresql {
|
|
|
229198
230057
|
* pod labels will be ignored. The default value is empty.
|
|
229199
230058
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229200
230059
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229201
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229202
230060
|
*/
|
|
229203
230061
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229204
230062
|
/**
|
|
@@ -229210,7 +230068,6 @@ export declare namespace postgresql {
|
|
|
229210
230068
|
* pod labels will be ignored. The default value is empty.
|
|
229211
230069
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229212
230070
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229213
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229214
230071
|
*/
|
|
229215
230072
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229216
230073
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -229415,7 +230272,6 @@ export declare namespace postgresql {
|
|
|
229415
230272
|
* pod labels will be ignored. The default value is empty.
|
|
229416
230273
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229417
230274
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229418
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229419
230275
|
*/
|
|
229420
230276
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229421
230277
|
/**
|
|
@@ -229427,7 +230283,6 @@ export declare namespace postgresql {
|
|
|
229427
230283
|
* pod labels will be ignored. The default value is empty.
|
|
229428
230284
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229429
230285
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229430
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229431
230286
|
*/
|
|
229432
230287
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229433
230288
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorPatch>;
|
|
@@ -229537,7 +230392,6 @@ export declare namespace postgresql {
|
|
|
229537
230392
|
* pod labels will be ignored. The default value is empty.
|
|
229538
230393
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229539
230394
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229540
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229541
230395
|
*/
|
|
229542
230396
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229543
230397
|
/**
|
|
@@ -229549,7 +230403,6 @@ export declare namespace postgresql {
|
|
|
229549
230403
|
* pod labels will be ignored. The default value is empty.
|
|
229550
230404
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229551
230405
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229552
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229553
230406
|
*/
|
|
229554
230407
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229555
230408
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector>;
|
|
@@ -229749,7 +230602,6 @@ export declare namespace postgresql {
|
|
|
229749
230602
|
* pod labels will be ignored. The default value is empty.
|
|
229750
230603
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229751
230604
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229752
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229753
230605
|
*/
|
|
229754
230606
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229755
230607
|
/**
|
|
@@ -229761,7 +230613,6 @@ export declare namespace postgresql {
|
|
|
229761
230613
|
* pod labels will be ignored. The default value is empty.
|
|
229762
230614
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229763
230615
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229764
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229765
230616
|
*/
|
|
229766
230617
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229767
230618
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorPatch>;
|
|
@@ -229800,7 +230651,6 @@ export declare namespace postgresql {
|
|
|
229800
230651
|
* pod labels will be ignored. The default value is empty.
|
|
229801
230652
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
229802
230653
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
229803
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229804
230654
|
*/
|
|
229805
230655
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229806
230656
|
/**
|
|
@@ -229812,7 +230662,6 @@ export declare namespace postgresql {
|
|
|
229812
230662
|
* pod labels will be ignored. The default value is empty.
|
|
229813
230663
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
229814
230664
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
229815
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
229816
230665
|
*/
|
|
229817
230666
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229818
230667
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector>;
|
|
@@ -230017,7 +230866,6 @@ export declare namespace postgresql {
|
|
|
230017
230866
|
* pod labels will be ignored. The default value is empty.
|
|
230018
230867
|
* The same key is forbidden to exist in both matchLabelKeys and labelSelector.
|
|
230019
230868
|
* Also, matchLabelKeys cannot be set when labelSelector isn't set.
|
|
230020
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
230021
230869
|
*/
|
|
230022
230870
|
matchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
230023
230871
|
/**
|
|
@@ -230029,7 +230877,6 @@ export declare namespace postgresql {
|
|
|
230029
230877
|
* pod labels will be ignored. The default value is empty.
|
|
230030
230878
|
* The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
|
|
230031
230879
|
* Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
|
|
230032
|
-
* This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
|
|
230033
230880
|
*/
|
|
230034
230881
|
mismatchLabelKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
230035
230882
|
namespaceSelector?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorPatch>;
|
|
@@ -230229,12 +231076,12 @@ export declare namespace postgresql {
|
|
|
230229
231076
|
valueFrom?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersEnvValueFrom>;
|
|
230230
231077
|
}
|
|
230231
231078
|
/**
|
|
230232
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
231079
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
230233
231080
|
*/
|
|
230234
231081
|
interface PoolerSpecTemplateSpecContainersEnvFrom {
|
|
230235
231082
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersEnvFromConfigMapRef>;
|
|
230236
231083
|
/**
|
|
230237
|
-
*
|
|
231084
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
230238
231085
|
*/
|
|
230239
231086
|
prefix?: pulumi.Input<string>;
|
|
230240
231087
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersEnvFromSecretRef>;
|
|
@@ -230274,12 +231121,12 @@ export declare namespace postgresql {
|
|
|
230274
231121
|
optional?: pulumi.Input<boolean>;
|
|
230275
231122
|
}
|
|
230276
231123
|
/**
|
|
230277
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
231124
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
230278
231125
|
*/
|
|
230279
231126
|
interface PoolerSpecTemplateSpecContainersEnvFromPatch {
|
|
230280
231127
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersEnvFromConfigMapRefPatch>;
|
|
230281
231128
|
/**
|
|
230282
|
-
*
|
|
231129
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
230283
231130
|
*/
|
|
230284
231131
|
prefix?: pulumi.Input<string>;
|
|
230285
231132
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersEnvFromSecretRefPatch>;
|
|
@@ -230513,6 +231360,12 @@ export declare namespace postgresql {
|
|
|
230513
231360
|
interface PoolerSpecTemplateSpecContainersLifecycle {
|
|
230514
231361
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStart>;
|
|
230515
231362
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStop>;
|
|
231363
|
+
/**
|
|
231364
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
231365
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
231366
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
231367
|
+
*/
|
|
231368
|
+
stopSignal?: pulumi.Input<string>;
|
|
230516
231369
|
}
|
|
230517
231370
|
/**
|
|
230518
231371
|
* Actions that the management system should take in response to container lifecycle events.
|
|
@@ -230521,6 +231374,12 @@ export declare namespace postgresql {
|
|
|
230521
231374
|
interface PoolerSpecTemplateSpecContainersLifecyclePatch {
|
|
230522
231375
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePostStartPatch>;
|
|
230523
231376
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecContainersLifecyclePreStopPatch>;
|
|
231377
|
+
/**
|
|
231378
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
231379
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
231380
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
231381
|
+
*/
|
|
231382
|
+
stopSignal?: pulumi.Input<string>;
|
|
230524
231383
|
}
|
|
230525
231384
|
/**
|
|
230526
231385
|
* PostStart is called immediately after a container is created. If the handler fails,
|
|
@@ -232865,12 +233724,12 @@ export declare namespace postgresql {
|
|
|
232865
233724
|
valueFrom?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersEnvValueFrom>;
|
|
232866
233725
|
}
|
|
232867
233726
|
/**
|
|
232868
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
233727
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
232869
233728
|
*/
|
|
232870
233729
|
interface PoolerSpecTemplateSpecEphemeralContainersEnvFrom {
|
|
232871
233730
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersEnvFromConfigMapRef>;
|
|
232872
233731
|
/**
|
|
232873
|
-
*
|
|
233732
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
232874
233733
|
*/
|
|
232875
233734
|
prefix?: pulumi.Input<string>;
|
|
232876
233735
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersEnvFromSecretRef>;
|
|
@@ -232910,12 +233769,12 @@ export declare namespace postgresql {
|
|
|
232910
233769
|
optional?: pulumi.Input<boolean>;
|
|
232911
233770
|
}
|
|
232912
233771
|
/**
|
|
232913
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
233772
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
232914
233773
|
*/
|
|
232915
233774
|
interface PoolerSpecTemplateSpecEphemeralContainersEnvFromPatch {
|
|
232916
233775
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersEnvFromConfigMapRefPatch>;
|
|
232917
233776
|
/**
|
|
232918
|
-
*
|
|
233777
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
232919
233778
|
*/
|
|
232920
233779
|
prefix?: pulumi.Input<string>;
|
|
232921
233780
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersEnvFromSecretRefPatch>;
|
|
@@ -233148,6 +234007,12 @@ export declare namespace postgresql {
|
|
|
233148
234007
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecycle {
|
|
233149
234008
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStart>;
|
|
233150
234009
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStop>;
|
|
234010
|
+
/**
|
|
234011
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
234012
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
234013
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
234014
|
+
*/
|
|
234015
|
+
stopSignal?: pulumi.Input<string>;
|
|
233151
234016
|
}
|
|
233152
234017
|
/**
|
|
233153
234018
|
* Lifecycle is not allowed for ephemeral containers.
|
|
@@ -233155,6 +234020,12 @@ export declare namespace postgresql {
|
|
|
233155
234020
|
interface PoolerSpecTemplateSpecEphemeralContainersLifecyclePatch {
|
|
233156
234021
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartPatch>;
|
|
233157
234022
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopPatch>;
|
|
234023
|
+
/**
|
|
234024
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
234025
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
234026
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
234027
|
+
*/
|
|
234028
|
+
stopSignal?: pulumi.Input<string>;
|
|
233158
234029
|
}
|
|
233159
234030
|
/**
|
|
233160
234031
|
* PostStart is called immediately after a container is created. If the handler fails,
|
|
@@ -235447,12 +236318,12 @@ export declare namespace postgresql {
|
|
|
235447
236318
|
valueFrom?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersEnvValueFrom>;
|
|
235448
236319
|
}
|
|
235449
236320
|
/**
|
|
235450
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
236321
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
235451
236322
|
*/
|
|
235452
236323
|
interface PoolerSpecTemplateSpecInitContainersEnvFrom {
|
|
235453
236324
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersEnvFromConfigMapRef>;
|
|
235454
236325
|
/**
|
|
235455
|
-
*
|
|
236326
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
235456
236327
|
*/
|
|
235457
236328
|
prefix?: pulumi.Input<string>;
|
|
235458
236329
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersEnvFromSecretRef>;
|
|
@@ -235492,12 +236363,12 @@ export declare namespace postgresql {
|
|
|
235492
236363
|
optional?: pulumi.Input<boolean>;
|
|
235493
236364
|
}
|
|
235494
236365
|
/**
|
|
235495
|
-
* EnvFromSource represents the source of a set of ConfigMaps
|
|
236366
|
+
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
|
|
235496
236367
|
*/
|
|
235497
236368
|
interface PoolerSpecTemplateSpecInitContainersEnvFromPatch {
|
|
235498
236369
|
configMapRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersEnvFromConfigMapRefPatch>;
|
|
235499
236370
|
/**
|
|
235500
|
-
*
|
|
236371
|
+
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
|
|
235501
236372
|
*/
|
|
235502
236373
|
prefix?: pulumi.Input<string>;
|
|
235503
236374
|
secretRef?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersEnvFromSecretRefPatch>;
|
|
@@ -235731,6 +236602,12 @@ export declare namespace postgresql {
|
|
|
235731
236602
|
interface PoolerSpecTemplateSpecInitContainersLifecycle {
|
|
235732
236603
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStart>;
|
|
235733
236604
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStop>;
|
|
236605
|
+
/**
|
|
236606
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
236607
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
236608
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
236609
|
+
*/
|
|
236610
|
+
stopSignal?: pulumi.Input<string>;
|
|
235734
236611
|
}
|
|
235735
236612
|
/**
|
|
235736
236613
|
* Actions that the management system should take in response to container lifecycle events.
|
|
@@ -235739,6 +236616,12 @@ export declare namespace postgresql {
|
|
|
235739
236616
|
interface PoolerSpecTemplateSpecInitContainersLifecyclePatch {
|
|
235740
236617
|
postStart?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePostStartPatch>;
|
|
235741
236618
|
preStop?: pulumi.Input<inputs.postgresql.v1.PoolerSpecTemplateSpecInitContainersLifecyclePreStopPatch>;
|
|
236619
|
+
/**
|
|
236620
|
+
* StopSignal defines which signal will be sent to a container when it is being stopped.
|
|
236621
|
+
* If not specified, the default is defined by the container runtime in use.
|
|
236622
|
+
* StopSignal can only be set for Pods with a non-empty .spec.os.name
|
|
236623
|
+
*/
|
|
236624
|
+
stopSignal?: pulumi.Input<string>;
|
|
235742
236625
|
}
|
|
235743
236626
|
/**
|
|
235744
236627
|
* PostStart is called immediately after a container is created. If the handler fails,
|
|
@@ -238010,7 +238893,7 @@ export declare namespace postgresql {
|
|
|
238010
238893
|
* Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes.
|
|
238011
238894
|
* The resourceRequirements of an init container are taken into account during scheduling
|
|
238012
238895
|
* by finding the highest request/limit for each resource type, and then using the max of
|
|
238013
|
-
*
|
|
238896
|
+
* that value or the sum of the normal containers. Limits are applied to init containers
|
|
238014
238897
|
* in a similar fashion.
|
|
238015
238898
|
* Init containers cannot currently be added or removed.
|
|
238016
238899
|
* Cannot be updated.
|
|
@@ -238997,7 +239880,6 @@ export declare namespace postgresql {
|
|
|
238997
239880
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
238998
239881
|
*
|
|
238999
239882
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
239000
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
239001
239883
|
*/
|
|
239002
239884
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
239003
239885
|
/**
|
|
@@ -239008,7 +239890,6 @@ export declare namespace postgresql {
|
|
|
239008
239890
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
239009
239891
|
*
|
|
239010
239892
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
239011
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
239012
239893
|
*/
|
|
239013
239894
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
239014
239895
|
/**
|
|
@@ -239195,7 +240076,6 @@ export declare namespace postgresql {
|
|
|
239195
240076
|
* - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
|
|
239196
240077
|
*
|
|
239197
240078
|
* If this value is nil, the behavior is equivalent to the Honor policy.
|
|
239198
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
239199
240079
|
*/
|
|
239200
240080
|
nodeAffinityPolicy?: pulumi.Input<string>;
|
|
239201
240081
|
/**
|
|
@@ -239206,7 +240086,6 @@ export declare namespace postgresql {
|
|
|
239206
240086
|
* - Ignore: node taints are ignored. All nodes are included.
|
|
239207
240087
|
*
|
|
239208
240088
|
* If this value is nil, the behavior is equivalent to the Ignore policy.
|
|
239209
|
-
* This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
|
|
239210
240089
|
*/
|
|
239211
240090
|
nodeTaintsPolicy?: pulumi.Input<string>;
|
|
239212
240091
|
/**
|
|
@@ -240924,7 +241803,7 @@ export declare namespace postgresql {
|
|
|
240924
241803
|
* The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
|
|
240925
241804
|
* The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
|
|
240926
241805
|
* The volume will be mounted read-only (ro) and non-executable files (noexec).
|
|
240927
|
-
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
|
|
241806
|
+
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
|
|
240928
241807
|
* The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
|
|
240929
241808
|
*/
|
|
240930
241809
|
interface PoolerSpecTemplateSpecVolumesImage {
|
|
@@ -240959,7 +241838,7 @@ export declare namespace postgresql {
|
|
|
240959
241838
|
* The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
|
|
240960
241839
|
* The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
|
|
240961
241840
|
* The volume will be mounted read-only (ro) and non-executable files (noexec).
|
|
240962
|
-
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
|
|
241841
|
+
* Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
|
|
240963
241842
|
* The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
|
|
240964
241843
|
*/
|
|
240965
241844
|
interface PoolerSpecTemplateSpecVolumesImagePatch {
|
|
@@ -243189,6 +244068,10 @@ export declare namespace velero {
|
|
|
243189
244068
|
*/
|
|
243190
244069
|
ttl?: pulumi.Input<string>;
|
|
243191
244070
|
uploaderConfig?: pulumi.Input<inputs.velero.v1.BackupSpecUploaderConfig>;
|
|
244071
|
+
/**
|
|
244072
|
+
* VolumeGroupSnapshotLabelKey specifies the label key to group PVCs under a VGS.
|
|
244073
|
+
*/
|
|
244074
|
+
volumeGroupSnapshotLabelKey?: pulumi.Input<string>;
|
|
243192
244075
|
/**
|
|
243193
244076
|
* VolumeSnapshotLocations is a list containing names of VolumeSnapshotLocations associated with this backup.
|
|
243194
244077
|
*/
|
|
@@ -243783,6 +244666,10 @@ export declare namespace velero {
|
|
|
243783
244666
|
*/
|
|
243784
244667
|
ttl?: pulumi.Input<string>;
|
|
243785
244668
|
uploaderConfig?: pulumi.Input<inputs.velero.v1.BackupSpecUploaderConfigPatch>;
|
|
244669
|
+
/**
|
|
244670
|
+
* VolumeGroupSnapshotLabelKey specifies the label key to group PVCs under a VGS.
|
|
244671
|
+
*/
|
|
244672
|
+
volumeGroupSnapshotLabelKey?: pulumi.Input<string>;
|
|
243786
244673
|
/**
|
|
243787
244674
|
* VolumeSnapshotLocations is a list containing names of VolumeSnapshotLocations associated with this backup.
|
|
243788
244675
|
*/
|
|
@@ -245731,6 +246618,10 @@ export declare namespace velero {
|
|
|
245731
246618
|
*/
|
|
245732
246619
|
ttl?: pulumi.Input<string>;
|
|
245733
246620
|
uploaderConfig?: pulumi.Input<inputs.velero.v1.ScheduleSpecTemplateUploaderConfig>;
|
|
246621
|
+
/**
|
|
246622
|
+
* VolumeGroupSnapshotLabelKey specifies the label key to group PVCs under a VGS.
|
|
246623
|
+
*/
|
|
246624
|
+
volumeGroupSnapshotLabelKey?: pulumi.Input<string>;
|
|
245734
246625
|
/**
|
|
245735
246626
|
* VolumeSnapshotLocations is a list containing names of VolumeSnapshotLocations associated with this backup.
|
|
245736
246627
|
*/
|
|
@@ -246326,6 +247217,10 @@ export declare namespace velero {
|
|
|
246326
247217
|
*/
|
|
246327
247218
|
ttl?: pulumi.Input<string>;
|
|
246328
247219
|
uploaderConfig?: pulumi.Input<inputs.velero.v1.ScheduleSpecTemplateUploaderConfigPatch>;
|
|
247220
|
+
/**
|
|
247221
|
+
* VolumeGroupSnapshotLabelKey specifies the label key to group PVCs under a VGS.
|
|
247222
|
+
*/
|
|
247223
|
+
volumeGroupSnapshotLabelKey?: pulumi.Input<string>;
|
|
246329
247224
|
/**
|
|
246330
247225
|
* VolumeSnapshotLocations is a list containing names of VolumeSnapshotLocations associated with this backup.
|
|
246331
247226
|
*/
|