aws-cdk.aws-eks-v2-alpha 2.197.0a0__py3-none-any.whl → 2.199.0a0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk.aws-eks-v2-alpha might be problematic. Click here for more details.

@@ -1095,10 +1095,13 @@ load_balancer_address = cluster.get_service_load_balancer_address("my-service")
1095
1095
 
1096
1096
  eks.Addon(self, "Addon",
1097
1097
  cluster=cluster,
1098
- addon_name="aws-guardduty-agent",
1099
- addon_version="v1.6.1",
1098
+ addon_name="coredns",
1099
+ addon_version="v1.11.4-eksbuild.2",
1100
1100
  # whether to preserve the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
1101
- preserve_on_delete=False
1101
+ preserve_on_delete=False,
1102
+ configuration_values={
1103
+ "replica_count": 2
1104
+ }
1102
1105
  )
1103
1106
  ```
1104
1107
 
@@ -1941,6 +1944,7 @@ class AddonAttributes:
1941
1944
  "addon_name": "addonName",
1942
1945
  "cluster": "cluster",
1943
1946
  "addon_version": "addonVersion",
1947
+ "configuration_values": "configurationValues",
1944
1948
  "preserve_on_delete": "preserveOnDelete",
1945
1949
  },
1946
1950
  )
@@ -1951,6 +1955,7 @@ class AddonProps:
1951
1955
  addon_name: builtins.str,
1952
1956
  cluster: "ICluster",
1953
1957
  addon_version: typing.Optional[builtins.str] = None,
1958
+ configuration_values: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
1954
1959
  preserve_on_delete: typing.Optional[builtins.bool] = None,
1955
1960
  ) -> None:
1956
1961
  '''(experimental) Properties for creating an Amazon EKS Add-On.
@@ -1958,6 +1963,7 @@ class AddonProps:
1958
1963
  :param addon_name: (experimental) Name of the Add-On.
1959
1964
  :param cluster: (experimental) The EKS cluster the Add-On is associated with.
1960
1965
  :param addon_version: (experimental) Version of the Add-On. You can check all available versions with describe-addon-versions. For example, this lists all available versions for the ``eks-pod-identity-agent`` addon: $ aws eks describe-addon-versions --addon-name eks-pod-identity-agent --query 'addons[*].addonVersions[*].addonVersion' Default: the latest version.
1966
+ :param configuration_values: (experimental) The configuration values for the Add-on. Default: - Use default configuration.
1961
1967
  :param preserve_on_delete: (experimental) Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed. Default: true
1962
1968
 
1963
1969
  :stability: experimental
@@ -1970,10 +1976,13 @@ class AddonProps:
1970
1976
 
1971
1977
  eks.Addon(self, "Addon",
1972
1978
  cluster=cluster,
1973
- addon_name="aws-guardduty-agent",
1974
- addon_version="v1.6.1",
1979
+ addon_name="coredns",
1980
+ addon_version="v1.11.4-eksbuild.2",
1975
1981
  # whether to preserve the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
1976
- preserve_on_delete=False
1982
+ preserve_on_delete=False,
1983
+ configuration_values={
1984
+ "replica_count": 2
1985
+ }
1977
1986
  )
1978
1987
  '''
1979
1988
  if __debug__:
@@ -1981,6 +1990,7 @@ class AddonProps:
1981
1990
  check_type(argname="argument addon_name", value=addon_name, expected_type=type_hints["addon_name"])
1982
1991
  check_type(argname="argument cluster", value=cluster, expected_type=type_hints["cluster"])
1983
1992
  check_type(argname="argument addon_version", value=addon_version, expected_type=type_hints["addon_version"])
1993
+ check_type(argname="argument configuration_values", value=configuration_values, expected_type=type_hints["configuration_values"])
1984
1994
  check_type(argname="argument preserve_on_delete", value=preserve_on_delete, expected_type=type_hints["preserve_on_delete"])
1985
1995
  self._values: typing.Dict[builtins.str, typing.Any] = {
1986
1996
  "addon_name": addon_name,
@@ -1988,6 +1998,8 @@ class AddonProps:
1988
1998
  }
1989
1999
  if addon_version is not None:
1990
2000
  self._values["addon_version"] = addon_version
2001
+ if configuration_values is not None:
2002
+ self._values["configuration_values"] = configuration_values
1991
2003
  if preserve_on_delete is not None:
1992
2004
  self._values["preserve_on_delete"] = preserve_on_delete
1993
2005
 
@@ -2027,6 +2039,19 @@ class AddonProps:
2027
2039
  result = self._values.get("addon_version")
2028
2040
  return typing.cast(typing.Optional[builtins.str], result)
2029
2041
 
2042
+ @builtins.property
2043
+ def configuration_values(
2044
+ self,
2045
+ ) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
2046
+ '''(experimental) The configuration values for the Add-on.
2047
+
2048
+ :default: - Use default configuration.
2049
+
2050
+ :stability: experimental
2051
+ '''
2052
+ result = self._values.get("configuration_values")
2053
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
2054
+
2030
2055
  @builtins.property
2031
2056
  def preserve_on_delete(self) -> typing.Optional[builtins.bool]:
2032
2057
  '''(experimental) Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
@@ -12313,10 +12338,13 @@ class Addon(
12313
12338
 
12314
12339
  eks.Addon(self, "Addon",
12315
12340
  cluster=cluster,
12316
- addon_name="aws-guardduty-agent",
12317
- addon_version="v1.6.1",
12341
+ addon_name="coredns",
12342
+ addon_version="v1.11.4-eksbuild.2",
12318
12343
  # whether to preserve the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
12319
- preserve_on_delete=False
12344
+ preserve_on_delete=False,
12345
+ configuration_values={
12346
+ "replica_count": 2
12347
+ }
12320
12348
  )
12321
12349
  '''
12322
12350
 
@@ -12328,6 +12356,7 @@ class Addon(
12328
12356
  addon_name: builtins.str,
12329
12357
  cluster: ICluster,
12330
12358
  addon_version: typing.Optional[builtins.str] = None,
12359
+ configuration_values: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
12331
12360
  preserve_on_delete: typing.Optional[builtins.bool] = None,
12332
12361
  ) -> None:
12333
12362
  '''(experimental) Creates a new Amazon EKS Add-On.
@@ -12337,6 +12366,7 @@ class Addon(
12337
12366
  :param addon_name: (experimental) Name of the Add-On.
12338
12367
  :param cluster: (experimental) The EKS cluster the Add-On is associated with.
12339
12368
  :param addon_version: (experimental) Version of the Add-On. You can check all available versions with describe-addon-versions. For example, this lists all available versions for the ``eks-pod-identity-agent`` addon: $ aws eks describe-addon-versions --addon-name eks-pod-identity-agent --query 'addons[*].addonVersions[*].addonVersion' Default: the latest version.
12369
+ :param configuration_values: (experimental) The configuration values for the Add-on. Default: - Use default configuration.
12340
12370
  :param preserve_on_delete: (experimental) Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed. Default: true
12341
12371
 
12342
12372
  :stability: experimental
@@ -12349,6 +12379,7 @@ class Addon(
12349
12379
  addon_name=addon_name,
12350
12380
  cluster=cluster,
12351
12381
  addon_version=addon_version,
12382
+ configuration_values=configuration_values,
12352
12383
  preserve_on_delete=preserve_on_delete,
12353
12384
  )
12354
12385
 
@@ -13708,6 +13739,7 @@ def _typecheckingstub__ce116d5a90e7137ae9a49817a403d4e436125d6de14d8cc0d64941c9b
13708
13739
  addon_name: builtins.str,
13709
13740
  cluster: ICluster,
13710
13741
  addon_version: typing.Optional[builtins.str] = None,
13742
+ configuration_values: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
13711
13743
  preserve_on_delete: typing.Optional[builtins.bool] = None,
13712
13744
  ) -> None:
13713
13745
  """Type checking stubs"""
@@ -14508,6 +14540,7 @@ def _typecheckingstub__49ab56d851f25a3b483cf3839b4b364bfa85f97144cd71c949220f736
14508
14540
  addon_name: builtins.str,
14509
14541
  cluster: ICluster,
14510
14542
  addon_version: typing.Optional[builtins.str] = None,
14543
+ configuration_values: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
14511
14544
  preserve_on_delete: typing.Optional[builtins.bool] = None,
14512
14545
  ) -> None:
14513
14546
  """Type checking stubs"""
@@ -33,9 +33,9 @@ import constructs._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
35
  "@aws-cdk/aws-eks-v2-alpha",
36
- "2.197.0-alpha.0",
36
+ "2.199.0-alpha.0",
37
37
  __name__[0:-6],
38
- "aws-eks-v2-alpha@2.197.0-alpha.0.jsii.tgz",
38
+ "aws-eks-v2-alpha@2.199.0-alpha.0.jsii.tgz",
39
39
  )
40
40
 
41
41
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.aws-eks-v2-alpha
3
- Version: 2.197.0a0
3
+ Version: 2.199.0a0
4
4
  Summary: The CDK Construct Library for AWS::EKS
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -22,7 +22,7 @@ Requires-Python: ~=3.9
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  License-File: NOTICE
25
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.197.0
25
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.199.0
26
26
  Requires-Dist: constructs<11.0.0,>=10.0.0
27
27
  Requires-Dist: jsii<2.0.0,>=1.112.0
28
28
  Requires-Dist: publication>=0.0.3
@@ -1124,10 +1124,13 @@ load_balancer_address = cluster.get_service_load_balancer_address("my-service")
1124
1124
 
1125
1125
  eks.Addon(self, "Addon",
1126
1126
  cluster=cluster,
1127
- addon_name="aws-guardduty-agent",
1128
- addon_version="v1.6.1",
1127
+ addon_name="coredns",
1128
+ addon_version="v1.11.4-eksbuild.2",
1129
1129
  # whether to preserve the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
1130
- preserve_on_delete=False
1130
+ preserve_on_delete=False,
1131
+ configuration_values={
1132
+ "replica_count": 2
1133
+ }
1131
1134
  )
1132
1135
  ```
1133
1136
 
@@ -0,0 +1,10 @@
1
+ aws_cdk/aws_eks_v2_alpha/__init__.py,sha256=u2qM3QzOTqxgEuc28Wz12mm6tgbR2J2kMskId_4jOu4,702556
2
+ aws_cdk/aws_eks_v2_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_cdk/aws_eks_v2_alpha/_jsii/__init__.py,sha256=fsffIyyXm8BfJ7R_wBs7efDPIhD9poIM5sJQhgrmz_g,1485
4
+ aws_cdk/aws_eks_v2_alpha/_jsii/aws-eks-v2-alpha@2.199.0-alpha.0.jsii.tgz,sha256=ffliKwDml88PxBAjuyaAFcca99FPACNv3uKf6H2Wcbs,402895
5
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
6
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/METADATA,sha256=PE3EXGBzxQ1hLz-nRTeoHtlcCWuy872bVt3u3u-tV2Y,42850
7
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/NOTICE,sha256=6Jdq-MQvHIyOFx_9SdfwJrEmcxlScjONPAJru73PESY,919
8
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
9
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
10
+ aws_cdk_aws_eks_v2_alpha-2.199.0a0.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- aws_cdk/aws_eks_v2_alpha/__init__.py,sha256=ZEOC76QxZuDn4TItxBJNthqXpt306J3wDhzJ9Ya7nuU,700857
2
- aws_cdk/aws_eks_v2_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/aws_eks_v2_alpha/_jsii/__init__.py,sha256=xQTIKAJhrk3PfaqwLWgW-w2qyl9v4lSIiUk650_7Mus,1485
4
- aws_cdk/aws_eks_v2_alpha/_jsii/aws-eks-v2-alpha@2.197.0-alpha.0.jsii.tgz,sha256=13LRN_YszIt-C6YS7GczTPO9K47huLL8SQDwFk533dQ,402276
5
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
6
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/METADATA,sha256=PYgCIfGRp6wiVZ3avJFevWTjoqabcxBCjS4UnFsGizI,42789
7
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/NOTICE,sha256=6Jdq-MQvHIyOFx_9SdfwJrEmcxlScjONPAJru73PESY,919
8
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
9
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
10
- aws_cdk_aws_eks_v2_alpha-2.197.0a0.dist-info/RECORD,,