cdk8s-plus-31 2.1.17 → 2.2.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/.jsii +220 -186
- package/docs/java.md +234 -0
- package/docs/plus/service.md +1 -1
- package/docs/python.md +234 -0
- package/docs/typescript.md +130 -0
- package/lib/api-resource.js +2 -2
- package/lib/base.js +2 -2
- package/lib/config-map.js +1 -1
- package/lib/container.js +6 -6
- package/lib/cron-job.js +1 -1
- package/lib/daemon-set.js +1 -1
- package/lib/deployment.js +3 -3
- package/lib/handler.js +1 -1
- package/lib/horizontal-pod-autoscaler.js +4 -4
- package/lib/imports/k8s.js +154 -154
- package/lib/ingress.js +2 -2
- package/lib/job.js +1 -1
- package/lib/namespace.js +2 -2
- package/lib/network-policy.js +3 -3
- package/lib/pod.d.ts +9 -0
- package/lib/pod.js +19 -17
- package/lib/probe.js +1 -1
- package/lib/pv.js +4 -4
- package/lib/pvc.js +1 -1
- package/lib/role-binding.js +4 -4
- package/lib/role.js +2 -2
- package/lib/secret.js +6 -6
- package/lib/service-account.js +1 -1
- package/lib/service.js +1 -1
- package/lib/stateful-set.js +2 -2
- package/lib/volume.js +1 -1
- package/lib/workload.js +2 -2
- package/package.json +1 -1
package/docs/python.md
CHANGED
|
@@ -19,6 +19,7 @@ cdk8s_plus_31.AbstractPod(
|
|
|
19
19
|
containers: typing.List[ContainerProps] = None,
|
|
20
20
|
dns: PodDnsProps = None,
|
|
21
21
|
docker_registry_auth: ISecret = None,
|
|
22
|
+
enable_service_links: bool = None,
|
|
22
23
|
host_aliases: typing.List[HostAlias] = None,
|
|
23
24
|
host_network: bool = None,
|
|
24
25
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -98,6 +99,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
98
99
|
|
|
99
100
|
---
|
|
100
101
|
|
|
102
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPodProps.parameter.enable_service_links"></a>
|
|
103
|
+
|
|
104
|
+
- *Type:* `bool`
|
|
105
|
+
- *Default:* true
|
|
106
|
+
|
|
107
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
108
|
+
|
|
109
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
101
113
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPodProps.parameter.host_aliases"></a>
|
|
102
114
|
|
|
103
115
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -902,6 +914,16 @@ docker_registry_auth: ISecret
|
|
|
902
914
|
|
|
903
915
|
---
|
|
904
916
|
|
|
917
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPod.property.enable_service_links"></a>
|
|
918
|
+
|
|
919
|
+
```python
|
|
920
|
+
enable_service_links: bool
|
|
921
|
+
```
|
|
922
|
+
|
|
923
|
+
- *Type:* `bool`
|
|
924
|
+
|
|
925
|
+
---
|
|
926
|
+
|
|
905
927
|
##### `host_network`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPod.property.host_network"></a>
|
|
906
928
|
|
|
907
929
|
```python
|
|
@@ -2281,6 +2303,7 @@ cdk8s_plus_31.CronJob(
|
|
|
2281
2303
|
containers: typing.List[ContainerProps] = None,
|
|
2282
2304
|
dns: PodDnsProps = None,
|
|
2283
2305
|
docker_registry_auth: ISecret = None,
|
|
2306
|
+
enable_service_links: bool = None,
|
|
2284
2307
|
host_aliases: typing.List[HostAlias] = None,
|
|
2285
2308
|
host_network: bool = None,
|
|
2286
2309
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -2373,6 +2396,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
2373
2396
|
|
|
2374
2397
|
---
|
|
2375
2398
|
|
|
2399
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.CronJobProps.parameter.enable_service_links"></a>
|
|
2400
|
+
|
|
2401
|
+
- *Type:* `bool`
|
|
2402
|
+
- *Default:* true
|
|
2403
|
+
|
|
2404
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
2405
|
+
|
|
2406
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
2407
|
+
|
|
2408
|
+
---
|
|
2409
|
+
|
|
2376
2410
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.CronJobProps.parameter.host_aliases"></a>
|
|
2377
2411
|
|
|
2378
2412
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -2785,6 +2819,7 @@ cdk8s_plus_31.DaemonSet(
|
|
|
2785
2819
|
containers: typing.List[ContainerProps] = None,
|
|
2786
2820
|
dns: PodDnsProps = None,
|
|
2787
2821
|
docker_registry_auth: ISecret = None,
|
|
2822
|
+
enable_service_links: bool = None,
|
|
2788
2823
|
host_aliases: typing.List[HostAlias] = None,
|
|
2789
2824
|
host_network: bool = None,
|
|
2790
2825
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -2868,6 +2903,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
2868
2903
|
|
|
2869
2904
|
---
|
|
2870
2905
|
|
|
2906
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.DaemonSetProps.parameter.enable_service_links"></a>
|
|
2907
|
+
|
|
2908
|
+
- *Type:* `bool`
|
|
2909
|
+
- *Default:* true
|
|
2910
|
+
|
|
2911
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
2912
|
+
|
|
2913
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
2914
|
+
|
|
2915
|
+
---
|
|
2916
|
+
|
|
2871
2917
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.DaemonSetProps.parameter.host_aliases"></a>
|
|
2872
2918
|
|
|
2873
2919
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -3098,6 +3144,7 @@ cdk8s_plus_31.Deployment(
|
|
|
3098
3144
|
containers: typing.List[ContainerProps] = None,
|
|
3099
3145
|
dns: PodDnsProps = None,
|
|
3100
3146
|
docker_registry_auth: ISecret = None,
|
|
3147
|
+
enable_service_links: bool = None,
|
|
3101
3148
|
host_aliases: typing.List[HostAlias] = None,
|
|
3102
3149
|
host_network: bool = None,
|
|
3103
3150
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -3184,6 +3231,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
3184
3231
|
|
|
3185
3232
|
---
|
|
3186
3233
|
|
|
3234
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.DeploymentProps.parameter.enable_service_links"></a>
|
|
3235
|
+
|
|
3236
|
+
- *Type:* `bool`
|
|
3237
|
+
- *Default:* true
|
|
3238
|
+
|
|
3239
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
3240
|
+
|
|
3241
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
3242
|
+
|
|
3243
|
+
---
|
|
3244
|
+
|
|
3187
3245
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.DeploymentProps.parameter.host_aliases"></a>
|
|
3188
3246
|
|
|
3189
3247
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -4508,6 +4566,7 @@ cdk8s_plus_31.Job(
|
|
|
4508
4566
|
containers: typing.List[ContainerProps] = None,
|
|
4509
4567
|
dns: PodDnsProps = None,
|
|
4510
4568
|
docker_registry_auth: ISecret = None,
|
|
4569
|
+
enable_service_links: bool = None,
|
|
4511
4570
|
host_aliases: typing.List[HostAlias] = None,
|
|
4512
4571
|
host_network: bool = None,
|
|
4513
4572
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -4593,6 +4652,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
4593
4652
|
|
|
4594
4653
|
---
|
|
4595
4654
|
|
|
4655
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.JobProps.parameter.enable_service_links"></a>
|
|
4656
|
+
|
|
4657
|
+
- *Type:* `bool`
|
|
4658
|
+
- *Default:* true
|
|
4659
|
+
|
|
4660
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
4661
|
+
|
|
4662
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
4663
|
+
|
|
4664
|
+
---
|
|
4665
|
+
|
|
4596
4666
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.JobProps.parameter.host_aliases"></a>
|
|
4597
4667
|
|
|
4598
4668
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -5960,6 +6030,7 @@ cdk8s_plus_31.Pod(
|
|
|
5960
6030
|
containers: typing.List[ContainerProps] = None,
|
|
5961
6031
|
dns: PodDnsProps = None,
|
|
5962
6032
|
docker_registry_auth: ISecret = None,
|
|
6033
|
+
enable_service_links: bool = None,
|
|
5963
6034
|
host_aliases: typing.List[HostAlias] = None,
|
|
5964
6035
|
host_network: bool = None,
|
|
5965
6036
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -6039,6 +6110,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
6039
6110
|
|
|
6040
6111
|
---
|
|
6041
6112
|
|
|
6113
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.PodProps.parameter.enable_service_links"></a>
|
|
6114
|
+
|
|
6115
|
+
- *Type:* `bool`
|
|
6116
|
+
- *Default:* true
|
|
6117
|
+
|
|
6118
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
6119
|
+
|
|
6120
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
6121
|
+
|
|
6122
|
+
---
|
|
6123
|
+
|
|
6042
6124
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.PodProps.parameter.host_aliases"></a>
|
|
6043
6125
|
|
|
6044
6126
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -7874,6 +7956,7 @@ cdk8s_plus_31.StatefulSet(
|
|
|
7874
7956
|
containers: typing.List[ContainerProps] = None,
|
|
7875
7957
|
dns: PodDnsProps = None,
|
|
7876
7958
|
docker_registry_auth: ISecret = None,
|
|
7959
|
+
enable_service_links: bool = None,
|
|
7877
7960
|
host_aliases: typing.List[HostAlias] = None,
|
|
7878
7961
|
host_network: bool = None,
|
|
7879
7962
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -7961,6 +8044,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
7961
8044
|
|
|
7962
8045
|
---
|
|
7963
8046
|
|
|
8047
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.StatefulSetProps.parameter.enable_service_links"></a>
|
|
8048
|
+
|
|
8049
|
+
- *Type:* `bool`
|
|
8050
|
+
- *Default:* true
|
|
8051
|
+
|
|
8052
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
8053
|
+
|
|
8054
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
8055
|
+
|
|
8056
|
+
---
|
|
8057
|
+
|
|
7964
8058
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.StatefulSetProps.parameter.host_aliases"></a>
|
|
7965
8059
|
|
|
7966
8060
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -9208,6 +9302,7 @@ cdk8s_plus_31.Workload(
|
|
|
9208
9302
|
containers: typing.List[ContainerProps] = None,
|
|
9209
9303
|
dns: PodDnsProps = None,
|
|
9210
9304
|
docker_registry_auth: ISecret = None,
|
|
9305
|
+
enable_service_links: bool = None,
|
|
9211
9306
|
host_aliases: typing.List[HostAlias] = None,
|
|
9212
9307
|
host_network: bool = None,
|
|
9213
9308
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -9290,6 +9385,17 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
9290
9385
|
|
|
9291
9386
|
---
|
|
9292
9387
|
|
|
9388
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.WorkloadProps.parameter.enable_service_links"></a>
|
|
9389
|
+
|
|
9390
|
+
- *Type:* `bool`
|
|
9391
|
+
- *Default:* true
|
|
9392
|
+
|
|
9393
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
9394
|
+
|
|
9395
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
9396
|
+
|
|
9397
|
+
---
|
|
9398
|
+
|
|
9293
9399
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.WorkloadProps.parameter.host_aliases"></a>
|
|
9294
9400
|
|
|
9295
9401
|
- *Type:* typing.List[[`cdk8s_plus_31.HostAlias`](#cdk8s_plus_31.HostAlias)]
|
|
@@ -9540,6 +9646,7 @@ cdk8s_plus_31.AbstractPodProps(
|
|
|
9540
9646
|
containers: typing.List[ContainerProps] = None,
|
|
9541
9647
|
dns: PodDnsProps = None,
|
|
9542
9648
|
docker_registry_auth: ISecret = None,
|
|
9649
|
+
enable_service_links: bool = None,
|
|
9543
9650
|
host_aliases: typing.List[HostAlias] = None,
|
|
9544
9651
|
host_network: bool = None,
|
|
9545
9652
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -9627,6 +9734,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
9627
9734
|
|
|
9628
9735
|
---
|
|
9629
9736
|
|
|
9737
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPodProps.property.enable_service_links"></a>
|
|
9738
|
+
|
|
9739
|
+
```python
|
|
9740
|
+
enable_service_links: bool
|
|
9741
|
+
```
|
|
9742
|
+
|
|
9743
|
+
- *Type:* `bool`
|
|
9744
|
+
- *Default:* true
|
|
9745
|
+
|
|
9746
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
9747
|
+
|
|
9748
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
9749
|
+
|
|
9750
|
+
---
|
|
9751
|
+
|
|
9630
9752
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.AbstractPodProps.property.host_aliases"></a>
|
|
9631
9753
|
|
|
9632
9754
|
```python
|
|
@@ -12131,6 +12253,7 @@ cdk8s_plus_31.CronJobProps(
|
|
|
12131
12253
|
containers: typing.List[ContainerProps] = None,
|
|
12132
12254
|
dns: PodDnsProps = None,
|
|
12133
12255
|
docker_registry_auth: ISecret = None,
|
|
12256
|
+
enable_service_links: bool = None,
|
|
12134
12257
|
host_aliases: typing.List[HostAlias] = None,
|
|
12135
12258
|
host_network: bool = None,
|
|
12136
12259
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -12231,6 +12354,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
12231
12354
|
|
|
12232
12355
|
---
|
|
12233
12356
|
|
|
12357
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.CronJobProps.property.enable_service_links"></a>
|
|
12358
|
+
|
|
12359
|
+
```python
|
|
12360
|
+
enable_service_links: bool
|
|
12361
|
+
```
|
|
12362
|
+
|
|
12363
|
+
- *Type:* `bool`
|
|
12364
|
+
- *Default:* true
|
|
12365
|
+
|
|
12366
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
12367
|
+
|
|
12368
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
12369
|
+
|
|
12370
|
+
---
|
|
12371
|
+
|
|
12234
12372
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.CronJobProps.property.host_aliases"></a>
|
|
12235
12373
|
|
|
12236
12374
|
```python
|
|
@@ -12689,6 +12827,7 @@ cdk8s_plus_31.DaemonSetProps(
|
|
|
12689
12827
|
containers: typing.List[ContainerProps] = None,
|
|
12690
12828
|
dns: PodDnsProps = None,
|
|
12691
12829
|
docker_registry_auth: ISecret = None,
|
|
12830
|
+
enable_service_links: bool = None,
|
|
12692
12831
|
host_aliases: typing.List[HostAlias] = None,
|
|
12693
12832
|
host_network: bool = None,
|
|
12694
12833
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -12780,6 +12919,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
12780
12919
|
|
|
12781
12920
|
---
|
|
12782
12921
|
|
|
12922
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.DaemonSetProps.property.enable_service_links"></a>
|
|
12923
|
+
|
|
12924
|
+
```python
|
|
12925
|
+
enable_service_links: bool
|
|
12926
|
+
```
|
|
12927
|
+
|
|
12928
|
+
- *Type:* `bool`
|
|
12929
|
+
- *Default:* true
|
|
12930
|
+
|
|
12931
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
12932
|
+
|
|
12933
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
12934
|
+
|
|
12935
|
+
---
|
|
12936
|
+
|
|
12783
12937
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.DaemonSetProps.property.host_aliases"></a>
|
|
12784
12938
|
|
|
12785
12939
|
```python
|
|
@@ -13071,6 +13225,7 @@ cdk8s_plus_31.DeploymentProps(
|
|
|
13071
13225
|
containers: typing.List[ContainerProps] = None,
|
|
13072
13226
|
dns: PodDnsProps = None,
|
|
13073
13227
|
docker_registry_auth: ISecret = None,
|
|
13228
|
+
enable_service_links: bool = None,
|
|
13074
13229
|
host_aliases: typing.List[HostAlias] = None,
|
|
13075
13230
|
host_network: bool = None,
|
|
13076
13231
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -13165,6 +13320,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
13165
13320
|
|
|
13166
13321
|
---
|
|
13167
13322
|
|
|
13323
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.DeploymentProps.property.enable_service_links"></a>
|
|
13324
|
+
|
|
13325
|
+
```python
|
|
13326
|
+
enable_service_links: bool
|
|
13327
|
+
```
|
|
13328
|
+
|
|
13329
|
+
- *Type:* `bool`
|
|
13330
|
+
- *Default:* true
|
|
13331
|
+
|
|
13332
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
13333
|
+
|
|
13334
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
13335
|
+
|
|
13336
|
+
---
|
|
13337
|
+
|
|
13168
13338
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.DeploymentProps.property.host_aliases"></a>
|
|
13169
13339
|
|
|
13170
13340
|
```python
|
|
@@ -14926,6 +15096,7 @@ cdk8s_plus_31.JobProps(
|
|
|
14926
15096
|
containers: typing.List[ContainerProps] = None,
|
|
14927
15097
|
dns: PodDnsProps = None,
|
|
14928
15098
|
docker_registry_auth: ISecret = None,
|
|
15099
|
+
enable_service_links: bool = None,
|
|
14929
15100
|
host_aliases: typing.List[HostAlias] = None,
|
|
14930
15101
|
host_network: bool = None,
|
|
14931
15102
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -15019,6 +15190,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
15019
15190
|
|
|
15020
15191
|
---
|
|
15021
15192
|
|
|
15193
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.JobProps.property.enable_service_links"></a>
|
|
15194
|
+
|
|
15195
|
+
```python
|
|
15196
|
+
enable_service_links: bool
|
|
15197
|
+
```
|
|
15198
|
+
|
|
15199
|
+
- *Type:* `bool`
|
|
15200
|
+
- *Default:* true
|
|
15201
|
+
|
|
15202
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
15203
|
+
|
|
15204
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
15205
|
+
|
|
15206
|
+
---
|
|
15207
|
+
|
|
15022
15208
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.JobProps.property.host_aliases"></a>
|
|
15023
15209
|
|
|
15024
15210
|
```python
|
|
@@ -16723,6 +16909,7 @@ cdk8s_plus_31.PodProps(
|
|
|
16723
16909
|
containers: typing.List[ContainerProps] = None,
|
|
16724
16910
|
dns: PodDnsProps = None,
|
|
16725
16911
|
docker_registry_auth: ISecret = None,
|
|
16912
|
+
enable_service_links: bool = None,
|
|
16726
16913
|
host_aliases: typing.List[HostAlias] = None,
|
|
16727
16914
|
host_network: bool = None,
|
|
16728
16915
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -16810,6 +16997,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
16810
16997
|
|
|
16811
16998
|
---
|
|
16812
16999
|
|
|
17000
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.PodProps.property.enable_service_links"></a>
|
|
17001
|
+
|
|
17002
|
+
```python
|
|
17003
|
+
enable_service_links: bool
|
|
17004
|
+
```
|
|
17005
|
+
|
|
17006
|
+
- *Type:* `bool`
|
|
17007
|
+
- *Default:* true
|
|
17008
|
+
|
|
17009
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
17010
|
+
|
|
17011
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
17012
|
+
|
|
17013
|
+
---
|
|
17014
|
+
|
|
16813
17015
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.PodProps.property.host_aliases"></a>
|
|
16814
17016
|
|
|
16815
17017
|
```python
|
|
@@ -18538,6 +18740,7 @@ cdk8s_plus_31.StatefulSetProps(
|
|
|
18538
18740
|
containers: typing.List[ContainerProps] = None,
|
|
18539
18741
|
dns: PodDnsProps = None,
|
|
18540
18742
|
docker_registry_auth: ISecret = None,
|
|
18743
|
+
enable_service_links: bool = None,
|
|
18541
18744
|
host_aliases: typing.List[HostAlias] = None,
|
|
18542
18745
|
host_network: bool = None,
|
|
18543
18746
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -18633,6 +18836,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
18633
18836
|
|
|
18634
18837
|
---
|
|
18635
18838
|
|
|
18839
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.StatefulSetProps.property.enable_service_links"></a>
|
|
18840
|
+
|
|
18841
|
+
```python
|
|
18842
|
+
enable_service_links: bool
|
|
18843
|
+
```
|
|
18844
|
+
|
|
18845
|
+
- *Type:* `bool`
|
|
18846
|
+
- *Default:* true
|
|
18847
|
+
|
|
18848
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
18849
|
+
|
|
18850
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
18851
|
+
|
|
18852
|
+
---
|
|
18853
|
+
|
|
18636
18854
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.StatefulSetProps.property.host_aliases"></a>
|
|
18637
18855
|
|
|
18638
18856
|
```python
|
|
@@ -19378,6 +19596,7 @@ cdk8s_plus_31.WorkloadProps(
|
|
|
19378
19596
|
containers: typing.List[ContainerProps] = None,
|
|
19379
19597
|
dns: PodDnsProps = None,
|
|
19380
19598
|
docker_registry_auth: ISecret = None,
|
|
19599
|
+
enable_service_links: bool = None,
|
|
19381
19600
|
host_aliases: typing.List[HostAlias] = None,
|
|
19382
19601
|
host_network: bool = None,
|
|
19383
19602
|
init_containers: typing.List[ContainerProps] = None,
|
|
@@ -19468,6 +19687,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
19468
19687
|
|
|
19469
19688
|
---
|
|
19470
19689
|
|
|
19690
|
+
##### `enable_service_links`<sup>Optional</sup> <a name="cdk8s_plus_31.WorkloadProps.property.enable_service_links"></a>
|
|
19691
|
+
|
|
19692
|
+
```python
|
|
19693
|
+
enable_service_links: bool
|
|
19694
|
+
```
|
|
19695
|
+
|
|
19696
|
+
- *Type:* `bool`
|
|
19697
|
+
- *Default:* true
|
|
19698
|
+
|
|
19699
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
19700
|
+
|
|
19701
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
19702
|
+
|
|
19703
|
+
---
|
|
19704
|
+
|
|
19471
19705
|
##### `host_aliases`<sup>Optional</sup> <a name="cdk8s_plus_31.WorkloadProps.property.host_aliases"></a>
|
|
19472
19706
|
|
|
19473
19707
|
```python
|
package/docs/typescript.md
CHANGED
|
@@ -221,6 +221,16 @@ public readonly dockerRegistryAuth: ISecret;
|
|
|
221
221
|
|
|
222
222
|
---
|
|
223
223
|
|
|
224
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.AbstractPod.property.enableServiceLinks"></a>
|
|
225
|
+
|
|
226
|
+
```typescript
|
|
227
|
+
public readonly enableServiceLinks: boolean;
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
- *Type:* `boolean`
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
224
234
|
##### `hostNetwork`<sup>Optional</sup> <a name="cdk8s-plus-31.AbstractPod.property.hostNetwork"></a>
|
|
225
235
|
|
|
226
236
|
```typescript
|
|
@@ -5032,6 +5042,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
5032
5042
|
|
|
5033
5043
|
---
|
|
5034
5044
|
|
|
5045
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.AbstractPodProps.property.enableServiceLinks"></a>
|
|
5046
|
+
|
|
5047
|
+
```typescript
|
|
5048
|
+
public readonly enableServiceLinks: boolean;
|
|
5049
|
+
```
|
|
5050
|
+
|
|
5051
|
+
- *Type:* `boolean`
|
|
5052
|
+
- *Default:* true
|
|
5053
|
+
|
|
5054
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
5055
|
+
|
|
5056
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
5057
|
+
|
|
5058
|
+
---
|
|
5059
|
+
|
|
5035
5060
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.AbstractPodProps.property.hostAliases"></a>
|
|
5036
5061
|
|
|
5037
5062
|
```typescript
|
|
@@ -7455,6 +7480,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
7455
7480
|
|
|
7456
7481
|
---
|
|
7457
7482
|
|
|
7483
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.CronJobProps.property.enableServiceLinks"></a>
|
|
7484
|
+
|
|
7485
|
+
```typescript
|
|
7486
|
+
public readonly enableServiceLinks: boolean;
|
|
7487
|
+
```
|
|
7488
|
+
|
|
7489
|
+
- *Type:* `boolean`
|
|
7490
|
+
- *Default:* true
|
|
7491
|
+
|
|
7492
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
7493
|
+
|
|
7494
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
7495
|
+
|
|
7496
|
+
---
|
|
7497
|
+
|
|
7458
7498
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.CronJobProps.property.hostAliases"></a>
|
|
7459
7499
|
|
|
7460
7500
|
```typescript
|
|
@@ -7979,6 +8019,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
7979
8019
|
|
|
7980
8020
|
---
|
|
7981
8021
|
|
|
8022
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.DaemonSetProps.property.enableServiceLinks"></a>
|
|
8023
|
+
|
|
8024
|
+
```typescript
|
|
8025
|
+
public readonly enableServiceLinks: boolean;
|
|
8026
|
+
```
|
|
8027
|
+
|
|
8028
|
+
- *Type:* `boolean`
|
|
8029
|
+
- *Default:* true
|
|
8030
|
+
|
|
8031
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
8032
|
+
|
|
8033
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
8034
|
+
|
|
8035
|
+
---
|
|
8036
|
+
|
|
7982
8037
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.DaemonSetProps.property.hostAliases"></a>
|
|
7983
8038
|
|
|
7984
8039
|
```typescript
|
|
@@ -8337,6 +8392,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
8337
8392
|
|
|
8338
8393
|
---
|
|
8339
8394
|
|
|
8395
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.DeploymentProps.property.enableServiceLinks"></a>
|
|
8396
|
+
|
|
8397
|
+
```typescript
|
|
8398
|
+
public readonly enableServiceLinks: boolean;
|
|
8399
|
+
```
|
|
8400
|
+
|
|
8401
|
+
- *Type:* `boolean`
|
|
8402
|
+
- *Default:* true
|
|
8403
|
+
|
|
8404
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
8405
|
+
|
|
8406
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
8407
|
+
|
|
8408
|
+
---
|
|
8409
|
+
|
|
8340
8410
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.DeploymentProps.property.hostAliases"></a>
|
|
8341
8411
|
|
|
8342
8412
|
```typescript
|
|
@@ -10069,6 +10139,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
10069
10139
|
|
|
10070
10140
|
---
|
|
10071
10141
|
|
|
10142
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.JobProps.property.enableServiceLinks"></a>
|
|
10143
|
+
|
|
10144
|
+
```typescript
|
|
10145
|
+
public readonly enableServiceLinks: boolean;
|
|
10146
|
+
```
|
|
10147
|
+
|
|
10148
|
+
- *Type:* `boolean`
|
|
10149
|
+
- *Default:* true
|
|
10150
|
+
|
|
10151
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
10152
|
+
|
|
10153
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
10154
|
+
|
|
10155
|
+
---
|
|
10156
|
+
|
|
10072
10157
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.JobProps.property.hostAliases"></a>
|
|
10073
10158
|
|
|
10074
10159
|
```typescript
|
|
@@ -11745,6 +11830,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
11745
11830
|
|
|
11746
11831
|
---
|
|
11747
11832
|
|
|
11833
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.PodProps.property.enableServiceLinks"></a>
|
|
11834
|
+
|
|
11835
|
+
```typescript
|
|
11836
|
+
public readonly enableServiceLinks: boolean;
|
|
11837
|
+
```
|
|
11838
|
+
|
|
11839
|
+
- *Type:* `boolean`
|
|
11840
|
+
- *Default:* true
|
|
11841
|
+
|
|
11842
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
11843
|
+
|
|
11844
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
11845
|
+
|
|
11846
|
+
---
|
|
11847
|
+
|
|
11748
11848
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.PodProps.property.hostAliases"></a>
|
|
11749
11849
|
|
|
11750
11850
|
```typescript
|
|
@@ -13439,6 +13539,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
13439
13539
|
|
|
13440
13540
|
---
|
|
13441
13541
|
|
|
13542
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.StatefulSetProps.property.enableServiceLinks"></a>
|
|
13543
|
+
|
|
13544
|
+
```typescript
|
|
13545
|
+
public readonly enableServiceLinks: boolean;
|
|
13546
|
+
```
|
|
13547
|
+
|
|
13548
|
+
- *Type:* `boolean`
|
|
13549
|
+
- *Default:* true
|
|
13550
|
+
|
|
13551
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
13552
|
+
|
|
13553
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
13554
|
+
|
|
13555
|
+
---
|
|
13556
|
+
|
|
13442
13557
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.StatefulSetProps.property.hostAliases"></a>
|
|
13443
13558
|
|
|
13444
13559
|
```typescript
|
|
@@ -14225,6 +14340,21 @@ A secret containing docker credentials for authenticating to a registry.
|
|
|
14225
14340
|
|
|
14226
14341
|
---
|
|
14227
14342
|
|
|
14343
|
+
##### `enableServiceLinks`<sup>Optional</sup> <a name="cdk8s-plus-31.WorkloadProps.property.enableServiceLinks"></a>
|
|
14344
|
+
|
|
14345
|
+
```typescript
|
|
14346
|
+
public readonly enableServiceLinks: boolean;
|
|
14347
|
+
```
|
|
14348
|
+
|
|
14349
|
+
- *Type:* `boolean`
|
|
14350
|
+
- *Default:* true
|
|
14351
|
+
|
|
14352
|
+
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
|
|
14353
|
+
|
|
14354
|
+
> https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service
|
|
14355
|
+
|
|
14356
|
+
---
|
|
14357
|
+
|
|
14228
14358
|
##### `hostAliases`<sup>Optional</sup> <a name="cdk8s-plus-31.WorkloadProps.property.hostAliases"></a>
|
|
14229
14359
|
|
|
14230
14360
|
```typescript
|