cloudsnorkel.cdk-github-runners 0.14.2__py3-none-any.whl → 0.14.3__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 cloudsnorkel.cdk-github-runners might be problematic. Click here for more details.
- cloudsnorkel/cdk_github_runners/__init__.py +20 -0
- cloudsnorkel/cdk_github_runners/_jsii/__init__.py +2 -2
- cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.3.jsii.tgz +0 -0
- {cloudsnorkel.cdk_github_runners-0.14.2.dist-info → cloudsnorkel.cdk_github_runners-0.14.3.dist-info}/METADATA +1 -1
- cloudsnorkel.cdk_github_runners-0.14.3.dist-info/RECORD +9 -0
- cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.2.jsii.tgz +0 -0
- cloudsnorkel.cdk_github_runners-0.14.2.dist-info/RECORD +0 -9
- {cloudsnorkel.cdk_github_runners-0.14.2.dist-info → cloudsnorkel.cdk_github_runners-0.14.3.dist-info}/LICENSE +0 -0
- {cloudsnorkel.cdk_github_runners-0.14.2.dist-info → cloudsnorkel.cdk_github_runners-0.14.3.dist-info}/WHEEL +0 -0
- {cloudsnorkel.cdk_github_runners-0.14.2.dist-info → cloudsnorkel.cdk_github_runners-0.14.3.dist-info}/top_level.txt +0 -0
|
@@ -889,6 +889,7 @@ class Architecture(
|
|
|
889
889
|
name_mapping={
|
|
890
890
|
"fast_launch_options": "fastLaunchOptions",
|
|
891
891
|
"instance_type": "instanceType",
|
|
892
|
+
"storage_size": "storageSize",
|
|
892
893
|
},
|
|
893
894
|
)
|
|
894
895
|
class AwsImageBuilderRunnerImageBuilderProps:
|
|
@@ -897,10 +898,12 @@ class AwsImageBuilderRunnerImageBuilderProps:
|
|
|
897
898
|
*,
|
|
898
899
|
fast_launch_options: typing.Optional[typing.Union["FastLaunchOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
899
900
|
instance_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType] = None,
|
|
901
|
+
storage_size: typing.Optional[_aws_cdk_ceddda9d.Size] = None,
|
|
900
902
|
) -> None:
|
|
901
903
|
'''
|
|
902
904
|
:param fast_launch_options: (experimental) Options for fast launch. This is only supported for Windows AMIs. Default: disabled
|
|
903
905
|
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
906
|
+
:param storage_size: (experimental) Size of volume available for builder instances. This modifies the boot volume size and doesn't add any additional volumes. Use this if you're building images with big components and need more space. Default: default size for AMI (usually 30GB for Linux and 50GB for Windows)
|
|
904
907
|
|
|
905
908
|
:stability: experimental
|
|
906
909
|
'''
|
|
@@ -910,11 +913,14 @@ class AwsImageBuilderRunnerImageBuilderProps:
|
|
|
910
913
|
type_hints = typing.get_type_hints(_typecheckingstub__fe17585d38b67015c3f03db2aefab095f171e0e0900c9a4564679bbc5a29fd07)
|
|
911
914
|
check_type(argname="argument fast_launch_options", value=fast_launch_options, expected_type=type_hints["fast_launch_options"])
|
|
912
915
|
check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
|
|
916
|
+
check_type(argname="argument storage_size", value=storage_size, expected_type=type_hints["storage_size"])
|
|
913
917
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
914
918
|
if fast_launch_options is not None:
|
|
915
919
|
self._values["fast_launch_options"] = fast_launch_options
|
|
916
920
|
if instance_type is not None:
|
|
917
921
|
self._values["instance_type"] = instance_type
|
|
922
|
+
if storage_size is not None:
|
|
923
|
+
self._values["storage_size"] = storage_size
|
|
918
924
|
|
|
919
925
|
@builtins.property
|
|
920
926
|
def fast_launch_options(self) -> typing.Optional["FastLaunchOptions"]:
|
|
@@ -940,6 +946,19 @@ class AwsImageBuilderRunnerImageBuilderProps:
|
|
|
940
946
|
result = self._values.get("instance_type")
|
|
941
947
|
return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType], result)
|
|
942
948
|
|
|
949
|
+
@builtins.property
|
|
950
|
+
def storage_size(self) -> typing.Optional[_aws_cdk_ceddda9d.Size]:
|
|
951
|
+
'''(experimental) Size of volume available for builder instances. This modifies the boot volume size and doesn't add any additional volumes.
|
|
952
|
+
|
|
953
|
+
Use this if you're building images with big components and need more space.
|
|
954
|
+
|
|
955
|
+
:default: default size for AMI (usually 30GB for Linux and 50GB for Windows)
|
|
956
|
+
|
|
957
|
+
:stability: experimental
|
|
958
|
+
'''
|
|
959
|
+
result = self._values.get("storage_size")
|
|
960
|
+
return typing.cast(typing.Optional[_aws_cdk_ceddda9d.Size], result)
|
|
961
|
+
|
|
943
962
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
944
963
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
945
964
|
|
|
@@ -10615,6 +10634,7 @@ def _typecheckingstub__fe17585d38b67015c3f03db2aefab095f171e0e0900c9a4564679bbc5
|
|
|
10615
10634
|
*,
|
|
10616
10635
|
fast_launch_options: typing.Optional[typing.Union[FastLaunchOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
10617
10636
|
instance_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType] = None,
|
|
10637
|
+
storage_size: typing.Optional[_aws_cdk_ceddda9d.Size] = None,
|
|
10618
10638
|
) -> None:
|
|
10619
10639
|
"""Type checking stubs"""
|
|
10620
10640
|
pass
|
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
35
|
"@cloudsnorkel/cdk-github-runners",
|
|
36
|
-
"0.14.
|
|
36
|
+
"0.14.3",
|
|
37
37
|
__name__[0:-6],
|
|
38
|
-
"cdk-github-runners@0.14.
|
|
38
|
+
"cdk-github-runners@0.14.3.jsii.tgz",
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-github-runners
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.3
|
|
4
4
|
Summary: CDK construct to create GitHub Actions self-hosted runners. A webhook listens to events and creates ephemeral runners on the fly.
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-github-runners.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
cloudsnorkel/cdk_github_runners/__init__.py,sha256=M3hgtBkFxgbAvLrWGw1bW3Ts0bs_lGRoF8wqdbBoyOA,606649
|
|
2
|
+
cloudsnorkel/cdk_github_runners/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
cloudsnorkel/cdk_github_runners/_jsii/__init__.py,sha256=Tkyo-J3R8v5HCPC7Lyo260IUwal4HQCtZNeH0vNQy8I,1476
|
|
4
|
+
cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.3.jsii.tgz,sha256=ryPNbvq-Okg_IpUUffwom-5543pEvHmB6bwWP0Ctxgc,1445343
|
|
5
|
+
cloudsnorkel.cdk_github_runners-0.14.3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
+
cloudsnorkel.cdk_github_runners-0.14.3.dist-info/METADATA,sha256=cUNQKmiBAwcmrQJvdBz9EmkjGeEUJBoA18S1VSW3Ko4,17619
|
|
7
|
+
cloudsnorkel.cdk_github_runners-0.14.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
8
|
+
cloudsnorkel.cdk_github_runners-0.14.3.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
+
cloudsnorkel.cdk_github_runners-0.14.3.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
cloudsnorkel/cdk_github_runners/__init__.py,sha256=XILvg4fiFgJDz1vLoLyJhQV1QxaEfR8PHXEaOiQa-50,605357
|
|
2
|
-
cloudsnorkel/cdk_github_runners/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
cloudsnorkel/cdk_github_runners/_jsii/__init__.py,sha256=EKEj4-LFjgbMIOW92iuHPI8WBQxnmwXWU7CY_noFXQQ,1476
|
|
4
|
-
cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.2.jsii.tgz,sha256=dzk99sQyu7D-fL-Ixu6fTHOAfTOXUu4E8wkbyacetbg,1443281
|
|
5
|
-
cloudsnorkel.cdk_github_runners-0.14.2.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
-
cloudsnorkel.cdk_github_runners-0.14.2.dist-info/METADATA,sha256=DjJn2PQmd_s8-4fhJpD06WzDP8xW0kp0NXdmfaWvNsQ,17619
|
|
7
|
-
cloudsnorkel.cdk_github_runners-0.14.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
8
|
-
cloudsnorkel.cdk_github_runners-0.14.2.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
-
cloudsnorkel.cdk_github_runners-0.14.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|