@cloudsnorkel/cdk-github-runners 0.14.19 → 0.14.21
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 +125 -100
- package/API.md +73 -24
- package/README.md +3 -2
- package/assets/delete-failed-runner.lambda/index.js +3248 -11227
- package/assets/idle-runner-repear.lambda/index.js +3224 -11221
- package/assets/image-builders/aws-image-builder/delete-resources.lambda/index.js +12 -2
- package/assets/image-builders/aws-image-builder/filter-failed-builds.lambda/index.js +4 -1
- package/assets/image-builders/build-image.lambda/index.js +21 -4
- package/assets/providers/ami-root-device.lambda/index.js +45 -10
- package/assets/providers/update-lambda.lambda/index.js +6 -1
- package/assets/setup.lambda/index.js +1762 -4645
- package/assets/status.lambda/index.js +2412 -10615
- package/assets/token-retriever.lambda/index.js +3228 -11221
- package/assets/webhook-handler.lambda/index.js +3264 -11236
- package/assets/webhook-redelivery.lambda/index.js +3220 -11221
- package/lib/access.js +1 -1
- package/lib/delete-failed-runner.lambda.js +22 -4
- package/lib/idle-runner-repear.lambda.js +1 -1
- package/lib/image-builders/api.js +1 -1
- package/lib/image-builders/aws-image-builder/base-image.js +2 -2
- package/lib/image-builders/aws-image-builder/builder.js +3 -3
- package/lib/image-builders/aws-image-builder/delete-resources.lambda.js +6 -2
- package/lib/image-builders/aws-image-builder/deprecated/ami.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/container.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/linux-components.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/windows-components.js +1 -1
- package/lib/image-builders/aws-image-builder/filter-failed-builds.lambda.js +5 -2
- package/lib/image-builders/build-image.lambda.js +15 -4
- package/lib/image-builders/codebuild-deprecated.js +1 -1
- package/lib/image-builders/codebuild.d.ts +10 -0
- package/lib/image-builders/codebuild.js +1 -1
- package/lib/image-builders/components.d.ts +12 -1
- package/lib/image-builders/components.js +48 -10
- package/lib/image-builders/static.js +1 -1
- package/lib/lambda-github.d.ts +14 -7
- package/lib/lambda-github.js +34 -8
- package/lib/lambda-helpers.js +8 -2
- package/lib/providers/ami-root-device.lambda.js +39 -10
- package/lib/providers/codebuild.d.ts +12 -0
- package/lib/providers/codebuild.js +3 -3
- package/lib/providers/common.js +3 -3
- package/lib/providers/composite.js +16 -31
- package/lib/providers/ec2.js +2 -2
- package/lib/providers/ecs.d.ts +3 -1
- package/lib/providers/ecs.js +2 -2
- package/lib/providers/fargate.d.ts +14 -0
- package/lib/providers/fargate.js +3 -3
- package/lib/providers/lambda.d.ts +2 -0
- package/lib/providers/lambda.js +3 -3
- package/lib/providers/update-lambda.lambda.js +7 -2
- package/lib/runner.js +1 -1
- package/lib/secrets.js +1 -1
- package/lib/setup.lambda.js +7 -4
- package/lib/status.lambda.js +17 -8
- package/lib/token-retriever.lambda.js +8 -2
- package/lib/webhook-handler.lambda.js +39 -12
- package/lib/webhook-redelivery.lambda.js +1 -1
- package/package.json +5 -5
package/API.md
CHANGED
|
@@ -797,7 +797,7 @@ Grant principal used to add permissions to the runner role.
|
|
|
797
797
|
|
|
798
798
|
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.CodeBuildRunner.property.image"></a>
|
|
799
799
|
|
|
800
|
-
- *Deprecated:*
|
|
800
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
801
801
|
|
|
802
802
|
```typescript
|
|
803
803
|
public readonly image: RunnerImage;
|
|
@@ -1175,7 +1175,9 @@ Grant principal used to add permissions to the runner role.
|
|
|
1175
1175
|
|
|
1176
1176
|
---
|
|
1177
1177
|
|
|
1178
|
-
#####
|
|
1178
|
+
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider.property.image"></a>
|
|
1179
|
+
|
|
1180
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
1179
1181
|
|
|
1180
1182
|
```typescript
|
|
1181
1183
|
public readonly image: RunnerImage;
|
|
@@ -2318,6 +2320,7 @@ Included components:
|
|
|
2318
2320
|
| **Name** | **Type** | **Description** |
|
|
2319
2321
|
| --- | --- | --- |
|
|
2320
2322
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
2323
|
+
| <code><a href="#@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.capacityProvider">capacityProvider</a></code> | <code>aws-cdk-lib.aws_ecs.AsgCapacityProvider</code> | Capacity provider used to scale the cluster. |
|
|
2321
2324
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.connections">connections</a></code> | <code>aws-cdk-lib.aws_ec2.Connections</code> | The network connections associated with this resource. |
|
|
2322
2325
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.grantPrincipal">grantPrincipal</a></code> | <code>aws-cdk-lib.aws_iam.IPrincipal</code> | Grant principal used to add permissions to the runner role. |
|
|
2323
2326
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.labels">labels</a></code> | <code>string[]</code> | Labels associated with this provider. |
|
|
@@ -2338,6 +2341,20 @@ The tree node.
|
|
|
2338
2341
|
|
|
2339
2342
|
---
|
|
2340
2343
|
|
|
2344
|
+
##### `capacityProvider`<sup>Required</sup> <a name="capacityProvider" id="@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.capacityProvider"></a>
|
|
2345
|
+
|
|
2346
|
+
```typescript
|
|
2347
|
+
public readonly capacityProvider: AsgCapacityProvider;
|
|
2348
|
+
```
|
|
2349
|
+
|
|
2350
|
+
- *Type:* aws-cdk-lib.aws_ecs.AsgCapacityProvider
|
|
2351
|
+
|
|
2352
|
+
Capacity provider used to scale the cluster.
|
|
2353
|
+
|
|
2354
|
+
Use capacityProvider.autoScalingGroup to access the auto scaling group. This can help set up custom scaling policies.
|
|
2355
|
+
|
|
2356
|
+
---
|
|
2357
|
+
|
|
2341
2358
|
##### `connections`<sup>Required</sup> <a name="connections" id="@cloudsnorkel/cdk-github-runners.EcsRunnerProvider.property.connections"></a>
|
|
2342
2359
|
|
|
2343
2360
|
```typescript
|
|
@@ -2627,7 +2644,7 @@ The tree node.
|
|
|
2627
2644
|
|
|
2628
2645
|
##### ~~`assignPublicIp`~~<sup>Required</sup> <a name="assignPublicIp" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.assignPublicIp"></a>
|
|
2629
2646
|
|
|
2630
|
-
- *Deprecated:*
|
|
2647
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2631
2648
|
|
|
2632
2649
|
```typescript
|
|
2633
2650
|
public readonly assignPublicIp: boolean;
|
|
@@ -2669,7 +2686,7 @@ The network connections associated with this resource.
|
|
|
2669
2686
|
|
|
2670
2687
|
##### ~~`container`~~<sup>Required</sup> <a name="container" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.container"></a>
|
|
2671
2688
|
|
|
2672
|
-
- *Deprecated:*
|
|
2689
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2673
2690
|
|
|
2674
2691
|
```typescript
|
|
2675
2692
|
public readonly container: ContainerDefinition;
|
|
@@ -2697,7 +2714,7 @@ Grant principal used to add permissions to the runner role.
|
|
|
2697
2714
|
|
|
2698
2715
|
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.image"></a>
|
|
2699
2716
|
|
|
2700
|
-
- *Deprecated:*
|
|
2717
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2701
2718
|
|
|
2702
2719
|
```typescript
|
|
2703
2720
|
public readonly image: RunnerImage;
|
|
@@ -2757,7 +2774,7 @@ List of step functions errors that should be retried.
|
|
|
2757
2774
|
|
|
2758
2775
|
##### ~~`spot`~~<sup>Required</sup> <a name="spot" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.spot"></a>
|
|
2759
2776
|
|
|
2760
|
-
- *Deprecated:*
|
|
2777
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2761
2778
|
|
|
2762
2779
|
```typescript
|
|
2763
2780
|
public readonly spot: boolean;
|
|
@@ -2771,7 +2788,7 @@ Use spot pricing for Fargate tasks.
|
|
|
2771
2788
|
|
|
2772
2789
|
##### ~~`task`~~<sup>Required</sup> <a name="task" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.task"></a>
|
|
2773
2790
|
|
|
2774
|
-
- *Deprecated:*
|
|
2791
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2775
2792
|
|
|
2776
2793
|
```typescript
|
|
2777
2794
|
public readonly task: FargateTaskDefinition;
|
|
@@ -2785,7 +2802,7 @@ Fargate task hosting the runner.
|
|
|
2785
2802
|
|
|
2786
2803
|
##### ~~`subnetSelection`~~<sup>Optional</sup> <a name="subnetSelection" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.subnetSelection"></a>
|
|
2787
2804
|
|
|
2788
|
-
- *Deprecated:*
|
|
2805
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2789
2806
|
|
|
2790
2807
|
```typescript
|
|
2791
2808
|
public readonly subnetSelection: SubnetSelection;
|
|
@@ -2799,7 +2816,7 @@ Subnets used for hosting the runner task.
|
|
|
2799
2816
|
|
|
2800
2817
|
##### ~~`vpc`~~<sup>Optional</sup> <a name="vpc" id="@cloudsnorkel/cdk-github-runners.FargateRunner.property.vpc"></a>
|
|
2801
2818
|
|
|
2802
|
-
- *Deprecated:*
|
|
2819
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
2803
2820
|
|
|
2804
2821
|
```typescript
|
|
2805
2822
|
public readonly vpc: IVpc;
|
|
@@ -3090,7 +3107,9 @@ The tree node.
|
|
|
3090
3107
|
|
|
3091
3108
|
---
|
|
3092
3109
|
|
|
3093
|
-
#####
|
|
3110
|
+
##### ~~`assignPublicIp`~~<sup>Required</sup> <a name="assignPublicIp" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.assignPublicIp"></a>
|
|
3111
|
+
|
|
3112
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3094
3113
|
|
|
3095
3114
|
```typescript
|
|
3096
3115
|
public readonly assignPublicIp: boolean;
|
|
@@ -3126,7 +3145,9 @@ The network connections associated with this resource.
|
|
|
3126
3145
|
|
|
3127
3146
|
---
|
|
3128
3147
|
|
|
3129
|
-
#####
|
|
3148
|
+
##### ~~`container`~~<sup>Required</sup> <a name="container" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.container"></a>
|
|
3149
|
+
|
|
3150
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3130
3151
|
|
|
3131
3152
|
```typescript
|
|
3132
3153
|
public readonly container: ContainerDefinition;
|
|
@@ -3150,7 +3171,9 @@ Grant principal used to add permissions to the runner role.
|
|
|
3150
3171
|
|
|
3151
3172
|
---
|
|
3152
3173
|
|
|
3153
|
-
#####
|
|
3174
|
+
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.image"></a>
|
|
3175
|
+
|
|
3176
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3154
3177
|
|
|
3155
3178
|
```typescript
|
|
3156
3179
|
public readonly image: RunnerImage;
|
|
@@ -3202,7 +3225,9 @@ List of step functions errors that should be retried.
|
|
|
3202
3225
|
|
|
3203
3226
|
---
|
|
3204
3227
|
|
|
3205
|
-
#####
|
|
3228
|
+
##### ~~`spot`~~<sup>Required</sup> <a name="spot" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.spot"></a>
|
|
3229
|
+
|
|
3230
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3206
3231
|
|
|
3207
3232
|
```typescript
|
|
3208
3233
|
public readonly spot: boolean;
|
|
@@ -3214,7 +3239,9 @@ Use spot pricing for Fargate tasks.
|
|
|
3214
3239
|
|
|
3215
3240
|
---
|
|
3216
3241
|
|
|
3217
|
-
#####
|
|
3242
|
+
##### ~~`task`~~<sup>Required</sup> <a name="task" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.task"></a>
|
|
3243
|
+
|
|
3244
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3218
3245
|
|
|
3219
3246
|
```typescript
|
|
3220
3247
|
public readonly task: FargateTaskDefinition;
|
|
@@ -3226,7 +3253,9 @@ Fargate task hosting the runner.
|
|
|
3226
3253
|
|
|
3227
3254
|
---
|
|
3228
3255
|
|
|
3229
|
-
#####
|
|
3256
|
+
##### ~~`subnetSelection`~~<sup>Optional</sup> <a name="subnetSelection" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.subnetSelection"></a>
|
|
3257
|
+
|
|
3258
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3230
3259
|
|
|
3231
3260
|
```typescript
|
|
3232
3261
|
public readonly subnetSelection: SubnetSelection;
|
|
@@ -3238,7 +3267,9 @@ Subnets used for hosting the runner task.
|
|
|
3238
3267
|
|
|
3239
3268
|
---
|
|
3240
3269
|
|
|
3241
|
-
#####
|
|
3270
|
+
##### ~~`vpc`~~<sup>Optional</sup> <a name="vpc" id="@cloudsnorkel/cdk-github-runners.FargateRunnerProvider.property.vpc"></a>
|
|
3271
|
+
|
|
3272
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
3242
3273
|
|
|
3243
3274
|
```typescript
|
|
3244
3275
|
public readonly vpc: IVpc;
|
|
@@ -4162,7 +4193,7 @@ Grant principal used to add permissions to the runner role.
|
|
|
4162
4193
|
|
|
4163
4194
|
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.LambdaRunner.property.image"></a>
|
|
4164
4195
|
|
|
4165
|
-
- *Deprecated:*
|
|
4196
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
4166
4197
|
|
|
4167
4198
|
```typescript
|
|
4168
4199
|
public readonly image: RunnerImage;
|
|
@@ -4530,7 +4561,9 @@ Grant principal used to add permissions to the runner role.
|
|
|
4530
4561
|
|
|
4531
4562
|
---
|
|
4532
4563
|
|
|
4533
|
-
#####
|
|
4564
|
+
##### ~~`image`~~<sup>Required</sup> <a name="image" id="@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider.property.image"></a>
|
|
4565
|
+
|
|
4566
|
+
- *Deprecated:* This field is internal and should not be accessed directly.
|
|
4534
4567
|
|
|
4535
4568
|
```typescript
|
|
4536
4569
|
public readonly image: RunnerImage;
|
|
@@ -5627,7 +5660,7 @@ const codeBuildRunnerImageBuilderProps: CodeBuildRunnerImageBuilderProps = { ...
|
|
|
5627
5660
|
| **Name** | **Type** | **Description** |
|
|
5628
5661
|
| --- | --- | --- |
|
|
5629
5662
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerImageBuilderProps.property.buildImage">buildImage</a></code> | <code>aws-cdk-lib.aws_codebuild.IBuildImage</code> | Build image to use in CodeBuild. |
|
|
5630
|
-
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerImageBuilderProps.property.computeType">computeType</a></code> | <code>aws-cdk-lib.aws_codebuild.ComputeType</code> | The type of compute to use for this build. |
|
|
5663
|
+
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerImageBuilderProps.property.computeType">computeType</a></code> | <code>aws-cdk-lib.aws_codebuild.ComputeType</code> | The type of compute to use for this build. See the {@link ComputeType} enum for the possible values. |
|
|
5631
5664
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerImageBuilderProps.property.timeout">timeout</a></code> | <code>aws-cdk-lib.Duration</code> | The number of minutes after which AWS CodeBuild stops the build if it's not complete. |
|
|
5632
5665
|
|
|
5633
5666
|
---
|
|
@@ -5658,9 +5691,17 @@ public readonly computeType: ComputeType;
|
|
|
5658
5691
|
- *Type:* aws-cdk-lib.aws_codebuild.ComputeType
|
|
5659
5692
|
- *Default:* {@link ComputeType#SMALL }
|
|
5660
5693
|
|
|
5661
|
-
The type of compute to use for this build.
|
|
5694
|
+
The type of compute to use for this build. See the {@link ComputeType} enum for the possible values.
|
|
5662
5695
|
|
|
5663
|
-
|
|
5696
|
+
The compute type determines CPU, memory, and disk space:
|
|
5697
|
+
- SMALL: 2 vCPU, 3 GB RAM, 64 GB disk
|
|
5698
|
+
- MEDIUM: 4 vCPU, 7 GB RAM, 128 GB disk
|
|
5699
|
+
- LARGE: 8 vCPU, 15 GB RAM, 128 GB disk
|
|
5700
|
+
- X2_LARGE: 72 vCPU, 145 GB RAM, 256 GB disk (Linux) or 824 GB disk (Windows)
|
|
5701
|
+
|
|
5702
|
+
Use a larger compute type when you need more disk space for building larger Docker images.
|
|
5703
|
+
|
|
5704
|
+
For more details, see https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types
|
|
5664
5705
|
|
|
5665
5706
|
---
|
|
5666
5707
|
|
|
@@ -5697,7 +5738,7 @@ const codeBuildRunnerProviderProps: CodeBuildRunnerProviderProps = { ... }
|
|
|
5697
5738
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.defaultLabels">defaultLabels</a></code> | <code>boolean</code> | Add default labels based on OS and architecture of the runner. |
|
|
5698
5739
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.logRetention">logRetention</a></code> | <code>aws-cdk-lib.aws_logs.RetentionDays</code> | The number of days log events are kept in CloudWatch Logs. |
|
|
5699
5740
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.retryOptions">retryOptions</a></code> | <code><a href="#@cloudsnorkel/cdk-github-runners.ProviderRetryOptions">ProviderRetryOptions</a></code> | *No description.* |
|
|
5700
|
-
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.computeType">computeType</a></code> | <code>aws-cdk-lib.aws_codebuild.ComputeType</code> | The type of compute to use for this build. |
|
|
5741
|
+
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.computeType">computeType</a></code> | <code>aws-cdk-lib.aws_codebuild.ComputeType</code> | The type of compute to use for this build. See the {@link ComputeType} enum for the possible values. |
|
|
5701
5742
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.dockerInDocker">dockerInDocker</a></code> | <code>boolean</code> | Support building and running Docker images by enabling Docker-in-Docker (dind) and the required CodeBuild privileged mode. |
|
|
5702
5743
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.group">group</a></code> | <code>string</code> | GitHub Actions runner group name. |
|
|
5703
5744
|
| <code><a href="#@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps.property.imageBuilder">imageBuilder</a></code> | <code><a href="#@cloudsnorkel/cdk-github-runners.IRunnerImageBuilder">IRunnerImageBuilder</a></code> | Runner image builder used to build Docker images containing GitHub Runner and all requirements. |
|
|
@@ -5764,9 +5805,17 @@ public readonly computeType: ComputeType;
|
|
|
5764
5805
|
- *Type:* aws-cdk-lib.aws_codebuild.ComputeType
|
|
5765
5806
|
- *Default:* {@link ComputeType#SMALL }
|
|
5766
5807
|
|
|
5767
|
-
The type of compute to use for this build.
|
|
5808
|
+
The type of compute to use for this build. See the {@link ComputeType} enum for the possible values.
|
|
5768
5809
|
|
|
5769
|
-
|
|
5810
|
+
The compute type determines CPU, memory, and disk space:
|
|
5811
|
+
- SMALL: 2 vCPU, 3 GB RAM, 64 GB disk
|
|
5812
|
+
- MEDIUM: 4 vCPU, 7 GB RAM, 128 GB disk
|
|
5813
|
+
- LARGE: 8 vCPU, 15 GB RAM, 128 GB disk
|
|
5814
|
+
- X2_LARGE: 72 vCPU, 145 GB RAM, 256 GB disk (Linux) or 824 GB disk (Windows)
|
|
5815
|
+
|
|
5816
|
+
Use a larger compute type when you need more disk space for building larger Docker images.
|
|
5817
|
+
|
|
5818
|
+
For more details, see https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types
|
|
5770
5819
|
|
|
5771
5820
|
---
|
|
5772
5821
|
|
package/README.md
CHANGED
|
@@ -456,6 +456,7 @@ We provide comprehensive examples in the [`examples/`](examples/) folder to help
|
|
|
456
456
|
- **[Composite Provider](examples/typescript/composite-provider/)** - Fallback and weighted distribution strategies (also available in [Python](examples/python/composite-provider/))
|
|
457
457
|
- **[Provider Selector](examples/typescript/provider-selector/)** - Custom provider selection with Lambda function (also available in [Python](examples/python/provider-selector/))
|
|
458
458
|
- **[EC2 Windows Provider](examples/typescript/ec2-windows-provider/)** - EC2 configuration for Windows runners (also available in [Python](examples/python/ec2-windows-provider/))
|
|
459
|
+
- **[Split Stacks](examples/typescript/split-stacks/)** - Split image builders and providers across multiple stacks (also available in [Python](examples/python/split-stacks/))
|
|
459
460
|
|
|
460
461
|
### Compute & Performance
|
|
461
462
|
- **[Compute Options](examples/typescript/compute-options/)** - Configure CPU, memory, and instance types for different providers (also available in [Python](examples/python/compute-options/))
|
|
@@ -536,13 +537,13 @@ If you use and love this project, please consider contributing.
|
|
|
536
537
|
|
|
537
538
|
## Other Options
|
|
538
539
|
|
|
539
|
-
1. [
|
|
540
|
+
1. [github-aws-runners/terraform-aws-github-runner][3] if you're using Terraform
|
|
540
541
|
2. [actions/actions-runner-controller][4] if you're using Kubernetes
|
|
541
542
|
|
|
542
543
|
|
|
543
544
|
[1]: https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners
|
|
544
545
|
[2]: https://github.com/marketplace/actions/configure-aws-credentials-action-for-github-actions
|
|
545
|
-
[3]: https://github.com/
|
|
546
|
+
[3]: https://github.com/github-aws-runners/terraform-aws-github-runner
|
|
546
547
|
[4]: https://github.com/actions/actions-runner-controller
|
|
547
548
|
[5]: https://github.com/actions/runner
|
|
548
549
|
[6]: https://pypi.org/project/cloudsnorkel.cdk-github-runners
|