@cloudsnorkel/cdk-github-runners 0.8.0 → 0.8.2
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/.gitattributes +9 -0
- package/.jsii +386 -183
- package/API.md +1724 -500
- package/README.md +2 -2
- package/{lib/providers → assets}/docker-images/lambda/linux-arm64/runner.sh +1 -1
- package/{lib/providers → assets}/docker-images/lambda/linux-x64/runner.sh +1 -1
- package/{lib/lambdas/aws-image-builder-versioner → assets/lambdas/aws-image-builder-versioner.lambda}/index.js +5 -5
- package/{lib/lambdas/build-image → assets/lambdas/build-image.lambda}/index.js +5 -5
- package/{lib/lambdas/delete-ami → assets/lambdas/delete-ami.lambda}/index.js +2 -2
- package/{lib/lambdas/delete-runner → assets/lambdas/delete-runner.lambda}/index.js +18 -16
- package/{lib/lambdas/setup → assets/lambdas/setup.lambda}/index.js +5 -3
- package/{lib/lambdas/status → assets/lambdas/status.lambda}/index.js +19 -17
- package/{lib/lambdas/token-retriever → assets/lambdas/token-retriever.lambda}/index.js +18 -16
- package/assets/lambdas/update-lambda.lambda/index.js +63 -0
- package/{lib/lambdas/webhook-handler → assets/lambdas/webhook-handler.lambda}/index.js +2 -2
- package/lib/lambdas/aws-image-builder-versioner-function.d.ts +13 -0
- package/lib/lambdas/aws-image-builder-versioner-function.js +23 -0
- package/lib/lambdas/aws-image-builder-versioner.lambda.d.ts +2 -0
- package/lib/lambdas/aws-image-builder-versioner.lambda.js +80 -0
- package/lib/lambdas/build-image-function.d.ts +13 -0
- package/lib/lambdas/build-image-function.js +23 -0
- package/lib/lambdas/build-image.lambda.d.ts +2 -0
- package/lib/lambdas/build-image.lambda.js +92 -0
- package/lib/lambdas/delete-ami-function.d.ts +13 -0
- package/lib/lambdas/delete-ami-function.js +23 -0
- package/lib/lambdas/delete-ami.lambda.d.ts +1 -0
- package/lib/lambdas/delete-ami.lambda.js +87 -0
- package/lib/lambdas/delete-runner-function.d.ts +13 -0
- package/lib/lambdas/delete-runner-function.js +23 -0
- package/lib/lambdas/delete-runner.lambda.d.ts +1 -0
- package/lib/lambdas/delete-runner.lambda.js +69 -0
- package/lib/lambdas/github.d.ts +7 -0
- package/lib/lambdas/github.js +50 -0
- package/lib/lambdas/helpers.d.ts +12 -0
- package/lib/lambdas/helpers.js +66 -0
- package/lib/lambdas/setup-function.d.ts +13 -0
- package/lib/lambdas/setup-function.js +23 -0
- package/lib/lambdas/setup.lambda.d.ts +1 -0
- package/lib/lambdas/setup.lambda.js +148 -0
- package/lib/lambdas/status-function.d.ts +13 -0
- package/lib/lambdas/status-function.js +23 -0
- package/lib/lambdas/status.lambda.d.ts +1 -0
- package/lib/lambdas/status.lambda.js +285 -0
- package/lib/lambdas/token-retriever-function.d.ts +13 -0
- package/lib/lambdas/token-retriever-function.js +23 -0
- package/lib/lambdas/token-retriever.lambda.d.ts +1 -0
- package/lib/lambdas/token-retriever.lambda.js +15 -0
- package/lib/lambdas/update-lambda-function.d.ts +13 -0
- package/lib/lambdas/update-lambda-function.js +23 -0
- package/lib/lambdas/update-lambda.lambda.d.ts +7 -0
- package/lib/lambdas/update-lambda.lambda.js +34 -0
- package/lib/lambdas/webhook-handler-function.d.ts +13 -0
- package/lib/lambdas/webhook-handler-function.js +23 -0
- package/lib/lambdas/webhook-handler.lambda.d.ts +1 -0
- package/lib/lambdas/webhook-handler.lambda.js +107 -0
- package/lib/providers/codebuild.d.ts +8 -3
- package/lib/providers/codebuild.js +17 -9
- package/lib/providers/common.js +3 -3
- package/lib/providers/ec2.d.ts +9 -4
- package/lib/providers/ec2.js +14 -6
- package/lib/providers/fargate.d.ts +8 -3
- package/lib/providers/fargate.js +17 -9
- package/lib/providers/image-builders/ami.js +6 -3
- package/lib/providers/image-builders/codebuild.d.ts +8 -0
- package/lib/providers/image-builders/codebuild.js +9 -6
- package/lib/providers/image-builders/common.js +5 -3
- package/lib/providers/image-builders/container.js +5 -3
- package/lib/providers/image-builders/linux-components.js +1 -1
- package/lib/providers/image-builders/static.js +3 -3
- package/lib/providers/image-builders/windows-components.js +1 -1
- package/lib/providers/lambda.d.ts +8 -3
- package/lib/providers/lambda.js +20 -10
- package/lib/runner.js +17 -10
- package/lib/secrets.js +1 -1
- package/lib/utils.d.ts +2 -6
- package/lib/utils.js +11 -26
- package/lib/webhook.d.ts +2 -2
- package/lib/webhook.js +5 -3
- package/package.json +32 -18
- package/lib/lambdas/update-lambda/index.js +0 -29155
- package/setup/index.html +0 -12
- package/setup/src/App.svelte +0 -291
- package/setup/src/app.scss +0 -15
- package/setup/src/main.ts +0 -8
- package/setup/src/vite-env.d.ts +0 -2
- package/setup/svelte.config.mjs +0 -7
- package/setup/tsconfig.json +0 -21
- package/setup/tsconfig.node.json +0 -8
- package/setup/vite.config.ts +0 -15
- /package/{lib/providers → assets}/docker-images/codebuild/linux-arm64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/codebuild/linux-x64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/fargate/linux-arm64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/fargate/linux-x64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/lambda/linux-arm64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/lambda/linux-arm64/runner.js +0 -0
- /package/{lib/providers → assets}/docker-images/lambda/linux-x64/Dockerfile +0 -0
- /package/{lib/providers → assets}/docker-images/lambda/linux-x64/runner.js +0 -0
- /package/{lib/lambdas/setup → assets/lambdas/setup.lambda}/index.html +0 -0
package/.jsii
CHANGED
|
@@ -3114,7 +3114,7 @@
|
|
|
3114
3114
|
"stability": "experimental"
|
|
3115
3115
|
},
|
|
3116
3116
|
"homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
|
|
3117
|
-
"jsiiVersion": "1.
|
|
3117
|
+
"jsiiVersion": "1.75.0 (build 63bb957)",
|
|
3118
3118
|
"keywords": [
|
|
3119
3119
|
"aws",
|
|
3120
3120
|
"aws-cdk",
|
|
@@ -3138,7 +3138,7 @@
|
|
|
3138
3138
|
},
|
|
3139
3139
|
"name": "@cloudsnorkel/cdk-github-runners",
|
|
3140
3140
|
"readme": {
|
|
3141
|
-
"markdown": "# GitHub Self-Hosted Runners CDK Constructs\n\n[][7]\n[][6]\n[][8]\n[][11]\n[][12]\n[](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml)\n[](https://github.com/CloudSnorkel/cdk-github-runners/blob/main/LICENSE)\n\nUse this CDK construct to create ephemeral [self-hosted GitHub runners][1] on-demand inside your AWS account.\n\n* Easy to configure GitHub integration with a web-based interface\n* Customizable runners with decent defaults\n* Multiple runner configurations controlled by labels\n* Everything fully hosted in your account\n* Automatically updated build environment with latest runner version\n\nSelf-hosted runners in AWS are useful when:\n\n* You need easy access to internal resources in your actions\n* You want to pre-install some software for your actions\n* You want to provide some basic AWS API access (but [aws-actions/configure-aws-credentials][2] has more security controls)\n\nEphemeral (or on-demand) runners are the [recommended way by GitHub][14] for auto-scaling, and they make sure all jobs run with a clean image. Runners are started on-demand. You don't pay unless a job is running.\n\n## API\n\nThe best way to browse API documentation is on [Constructs Hub][13]. It is available in all supported programming languages.\n\n## Providers\n\nA runner provider creates compute resources on-demand and uses [actions/runner][5] to start a runner.\n\n| | EC2 | CodeBuild | Fargate | Lambda |\n|------------------|-------------------|----------------------------|----------------|---------------|\n| **Time limit** | Unlimited | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | Unlimited | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | Unlimited | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | Unlimited | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 |\n| **sudo** | ✔ | ✔ | ✔ | ❌ |\n| **Docker** | ✔ | ✔ (Linux only) | ❌ | ❌ |\n| **Spot pricing** | ✔ | ❌ | ✔ | ❌ |\n| **OS** | Linux, Windows | Linux, Windows | Linux, Windows | Linux |\n\nThe best provider to use mostly depends on your current infrastructure. When in doubt, CodeBuild is always a good choice. Execution history and logs are easy to view, and it has no restrictive limits unless you need to run for more than 8 hours.\n\nYou can also create your own provider by implementing `IRunnerProvider`.\n\n## Installation\n\n1. Confirm you're using CDK v2\n2. Install the appropriate package\n 1. [Python][6]\n ```\n pip install cloudsnorkel.cdk-github-runners\n ```\n 2. [TypeScript or JavaScript][7]\n ```\n npm i @cloudsnorkel/cdk-github-runners\n ```\n 3. [Java][8]\n ```xml\n <dependency>\n <groupId>com.cloudsnorkel</groupId>\n <artifactId>cdk.github.runners</artifactId>\n </dependency>\n ```\n 4. [Go][11]\n ```\n go get github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n ```\n 5. [.NET][12]\n ```\n dotnet add package CloudSnorkel.Cdk.Github.Runners\n ```\n3. Use `GitHubRunners` construct in your code (starting with default arguments is fine)\n4. Deploy your stack\n5. Look for the status command output similar to `aws --region us-east-1 lambda invoke --function-name status-XYZ123 status.json`\n6. Execute the status command (you may need to specify `--profile` too) and open the resulting `status.json` file\n7. Open the URL in `github.setup.url` from `status.json` or [manually setup GitHub](SETUP_GITHUB.md) integration as an app or with personal access token\n8. Run status command again to confirm `github.auth.status` and `github.webhook.status` are OK\n9. Trigger a GitHub action that has a `self-hosted` label with `runs-on: [self-hosted, linux, codebuild]` or similar\n10. If the action is not successful, see [troubleshooting](#Troubleshooting)\n\n[](https://youtu.be/wlyv_3V8lIw)\n\n## Customizing\n\nThe default providers configured by `GitHubRunners` are useful for testing but probably not too much for actual production work. They run in the default VPC or no VPC and have no added IAM permissions. You would usually want to configure the providers yourself.\n\nFor example:\n\n```typescript\nlet vpc: ec2.Vpc;\nlet runnerSg: ec2.SecurityGroup;\nlet dbSg: ec2.SecurityGroup;\nlet bucket: s3.Bucket;\n\n// create a custom CodeBuild provider\nconst myProvider = new CodeBuildRunner(this, 'codebuild runner', {\n label: 'my-codebuild',\n vpc: vpc,\n securityGroup: runnerSg,\n});\n// grant some permissions to the provider\nbucket.grantReadWrite(myProvider);\ndbSg.connections.allowFrom(runnerSg, ec2.Port.tcp(3306), 'allow runners to connect to MySQL database');\n\n// create the runner infrastructure\nnew GitHubRunners(this, 'runners', {\n providers: [myProvider],\n});\n```\n\nAnother way to customize runners is by modifying the image used to spin them up. The image contains the [runner][5], any required dependencies, and integration code with the provider. You may choose to customize this image by adding more packages, for example.\n\n```typescript\nconst myBuilder = new CodeBuildImageBuilder(this, 'image builder', {\n dockerfilePath: FargateRunner.LINUX_X64_DOCKERFILE_PATH,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyBuilder.setBuildArg('EXTRA_PACKAGES', 'nginx xz-utils');\n\nconst myProvider = new FargateRunner(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuilder: myBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\nYour workflow will then look like:\n\n```yaml\nname: self-hosted example\non: push\njobs:\n self-hosted:\n runs-on: [self-hosted, customized-fargate]\n steps:\n - run: echo hello world\n```\n\nWindows images must be built with AWS Image Builder.\n\n```typescript\nconst myWindowsBuilder = new ContainerImageBuilder(this, 'Windows image builder', {\n architecture: Architecture.X86_64,\n os: Os.WINDOWS,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyWindowsBuilder.addComponent(new ImageBuilderComponent(this, 'Ninja Component',\n {\n displayName: 'Ninja',\n description: 'Download and install Ninja build system',\n platform: 'Windows',\n commands: [\n 'Invoke-WebRequest -UseBasicParsing -Uri \"https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip\" -OutFile ninja.zip',\n 'Expand-Archive ninja.zip -DestinationPath C:\\\\actions',\n 'del ninja.zip',\n ],\n }\n));\n\nconst myProvider = new FargateRunner(this, 'fargate runner', {\n label: 'customized-windows-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuiler: myWindowsBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\n## Architecture\n\n\n\n## Troubleshooting\n\n1. Always start with the status function, make sure no errors are reported, and confirm all status codes are OK\n2. If jobs are stuck on pending:\n 1. Make sure `runs-on` in the workflow matches the expected labels set in the runner provider\n 2. If it happens every time, cancel the job and start it again\n4. Confirm the webhook Lambda was called by visiting the URL in `troubleshooting.webhookHandlerUrl` from `status.json`\n 1. If it's not called or logs errors, confirm the webhook settings on the GitHub side\n 2. If you see too many errors, make sure you're only sending `workflow_job` events\n5. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n6. Check execution details of the orchestrator step function by visiting the URL in `troubleshooting.stepFunctionUrl` from `status.json`\n 1. Use the details tab to find the specific execution of the provider (Lambda, CodeBuild, Fargate, etc.)\n 2. Every step function execution should be successful, even if the runner action inside it failed\n\n## Other Options\n\n1. [philips-labs/terraform-aws-github-runner][3] if you're using Terraform\n2. [actions/actions-runner-controller][4] if you're using Kubernetes\n\n\n[1]: https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners\n[2]: https://github.com/marketplace/actions/configure-aws-credentials-action-for-github-actions\n[3]: https://github.com/philips-labs/terraform-aws-github-runner\n[4]: https://github.com/actions/actions-runner-controller\n[5]: https://github.com/actions/runner\n[6]: https://pypi.org/project/cloudsnorkel.cdk-github-runners\n[7]: https://www.npmjs.com/package/@cloudsnorkel/cdk-github-runners\n[8]: https://search.maven.org/search?q=g:%22com.cloudsnorkel%22%20AND%20a:%22cdk.github.runners%22\n[9]: https://docs.github.com/en/developers/apps/getting-started-with-apps/about-apps\n[10]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token\n[11]: https://pkg.go.dev/github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n[12]: https://www.nuget.org/packages/CloudSnorkel.Cdk.Github.Runners/\n[13]: https://constructs.dev/packages/@cloudsnorkel/cdk-github-runners/\n[14]: https://docs.github.com/en/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners#using-ephemeral-runners-for-autoscaling\n"
|
|
3141
|
+
"markdown": "# GitHub Self-Hosted Runners CDK Constructs\n\n[][7]\n[][6]\n[][8]\n[][11]\n[][12]\n[](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml)\n[](https://github.com/CloudSnorkel/cdk-github-runners/blob/main/LICENSE)\n\nUse this CDK construct to create ephemeral [self-hosted GitHub runners][1] on-demand inside your AWS account.\n\n* Easy to configure GitHub integration with a web-based interface\n* Customizable runners with decent defaults\n* Multiple runner configurations controlled by labels\n* Everything fully hosted in your account\n* Automatically updated build environment with latest runner version\n\nSelf-hosted runners in AWS are useful when:\n\n* You need easy access to internal resources in your actions\n* You want to pre-install some software for your actions\n* You want to provide some basic AWS API access (but [aws-actions/configure-aws-credentials][2] has more security controls)\n\nEphemeral (or on-demand) runners are the [recommended way by GitHub][14] for auto-scaling, and they make sure all jobs run with a clean image. Runners are started on-demand. You don't pay unless a job is running.\n\n## API\n\nThe best way to browse API documentation is on [Constructs Hub][13]. It is available in all supported programming languages.\n\n## Providers\n\nA runner provider creates compute resources on-demand and uses [actions/runner][5] to start a runner.\n\n| | EC2 | CodeBuild | Fargate | Lambda |\n|------------------|-------------------|----------------------------|----------------|---------------|\n| **Time limit** | Unlimited | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | Unlimited | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | Unlimited | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | Unlimited | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 |\n| **sudo** | ✔ | ✔ | ✔ | ❌ |\n| **Docker** | ✔ | ✔ (Linux only) | ❌ | ❌ |\n| **Spot pricing** | ✔ | ❌ | ✔ | ❌ |\n| **OS** | Linux, Windows | Linux, Windows | Linux, Windows | Linux |\n\nThe best provider to use mostly depends on your current infrastructure. When in doubt, CodeBuild is always a good choice. Execution history and logs are easy to view, and it has no restrictive limits unless you need to run for more than 8 hours.\n\nYou can also create your own provider by implementing `IRunnerProvider`.\n\n## Installation\n\n1. Confirm you're using CDK v2\n2. Install the appropriate package\n 1. [Python][6]\n ```\n pip install cloudsnorkel.cdk-github-runners\n ```\n 2. [TypeScript or JavaScript][7]\n ```\n npm i @cloudsnorkel/cdk-github-runners\n ```\n 3. [Java][8]\n ```xml\n <dependency>\n <groupId>com.cloudsnorkel</groupId>\n <artifactId>cdk.github.runners</artifactId>\n </dependency>\n ```\n 4. [Go][11]\n ```\n go get github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n ```\n 5. [.NET][12]\n ```\n dotnet add package CloudSnorkel.Cdk.Github.Runners\n ```\n3. Use `GitHubRunners` construct in your code (starting with default arguments is fine)\n4. Deploy your stack\n5. Look for the status command output similar to `aws --region us-east-1 lambda invoke --function-name status-XYZ123 status.json`\n6. Execute the status command (you may need to specify `--profile` too) and open the resulting `status.json` file\n7. Open the URL in `github.setup.url` from `status.json` or [manually setup GitHub](SETUP_GITHUB.md) integration as an app or with personal access token\n8. Run status command again to confirm `github.auth.status` and `github.webhook.status` are OK\n9. Trigger a GitHub action that has a `self-hosted` label with `runs-on: [self-hosted, linux, codebuild]` or similar\n10. If the action is not successful, see [troubleshooting](#Troubleshooting)\n\n[](https://youtu.be/wlyv_3V8lIw)\n\n## Customizing\n\nThe default providers configured by `GitHubRunners` are useful for testing but probably not too much for actual production work. They run in the default VPC or no VPC and have no added IAM permissions. You would usually want to configure the providers yourself.\n\nFor example:\n\n```typescript\nlet vpc: ec2.Vpc;\nlet runnerSg: ec2.SecurityGroup;\nlet dbSg: ec2.SecurityGroup;\nlet bucket: s3.Bucket;\n\n// create a custom CodeBuild provider\nconst myProvider = new CodeBuildRunner(this, 'codebuild runner', {\n label: 'my-codebuild',\n vpc: vpc,\n securityGroup: runnerSg,\n});\n// grant some permissions to the provider\nbucket.grantReadWrite(myProvider);\ndbSg.connections.allowFrom(runnerSg, ec2.Port.tcp(3306), 'allow runners to connect to MySQL database');\n\n// create the runner infrastructure\nnew GitHubRunners(this, 'runners', {\n providers: [myProvider],\n});\n```\n\nAnother way to customize runners is by modifying the image used to spin them up. The image contains the [runner][5], any required dependencies, and integration code with the provider. You may choose to customize this image by adding more packages, for example.\n\n```typescript\nconst myBuilder = new CodeBuildImageBuilder(this, 'image builder', {\n dockerfilePath: FargateRunner.LINUX_X64_DOCKERFILE_PATH,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyBuilder.setBuildArg('EXTRA_PACKAGES', 'nginx xz-utils');\n\nconst myProvider = new FargateRunnerProvider(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuilder: myBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\nYour workflow will then look like:\n\n```yaml\nname: self-hosted example\non: push\njobs:\n self-hosted:\n runs-on: [self-hosted, customized-fargate]\n steps:\n - run: echo hello world\n```\n\nWindows images must be built with AWS Image Builder.\n\n```typescript\nconst myWindowsBuilder = new ContainerImageBuilder(this, 'Windows image builder', {\n architecture: Architecture.X86_64,\n os: Os.WINDOWS,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyWindowsBuilder.addComponent(new ImageBuilderComponent(this, 'Ninja Component',\n {\n displayName: 'Ninja',\n description: 'Download and install Ninja build system',\n platform: 'Windows',\n commands: [\n 'Invoke-WebRequest -UseBasicParsing -Uri \"https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip\" -OutFile ninja.zip',\n 'Expand-Archive ninja.zip -DestinationPath C:\\\\actions',\n 'del ninja.zip',\n ],\n }\n));\n\nconst myProvider = new FargateRunnerProvider(this, 'fargate runner', {\n label: 'customized-windows-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuiler: myWindowsBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\n## Architecture\n\n\n\n## Troubleshooting\n\n1. Always start with the status function, make sure no errors are reported, and confirm all status codes are OK\n2. If jobs are stuck on pending:\n 1. Make sure `runs-on` in the workflow matches the expected labels set in the runner provider\n 2. If it happens every time, cancel the job and start it again\n4. Confirm the webhook Lambda was called by visiting the URL in `troubleshooting.webhookHandlerUrl` from `status.json`\n 1. If it's not called or logs errors, confirm the webhook settings on the GitHub side\n 2. If you see too many errors, make sure you're only sending `workflow_job` events\n5. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n6. Check execution details of the orchestrator step function by visiting the URL in `troubleshooting.stepFunctionUrl` from `status.json`\n 1. Use the details tab to find the specific execution of the provider (Lambda, CodeBuild, Fargate, etc.)\n 2. Every step function execution should be successful, even if the runner action inside it failed\n\n## Other Options\n\n1. [philips-labs/terraform-aws-github-runner][3] if you're using Terraform\n2. [actions/actions-runner-controller][4] if you're using Kubernetes\n\n\n[1]: https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners\n[2]: https://github.com/marketplace/actions/configure-aws-credentials-action-for-github-actions\n[3]: https://github.com/philips-labs/terraform-aws-github-runner\n[4]: https://github.com/actions/actions-runner-controller\n[5]: https://github.com/actions/runner\n[6]: https://pypi.org/project/cloudsnorkel.cdk-github-runners\n[7]: https://www.npmjs.com/package/@cloudsnorkel/cdk-github-runners\n[8]: https://search.maven.org/search?q=g:%22com.cloudsnorkel%22%20AND%20a:%22cdk.github.runners%22\n[9]: https://docs.github.com/en/developers/apps/getting-started-with-apps/about-apps\n[10]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token\n[11]: https://pkg.go.dev/github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n[12]: https://www.nuget.org/packages/CloudSnorkel.Cdk.Github.Runners/\n[13]: https://constructs.dev/packages/@cloudsnorkel/cdk-github-runners/\n[14]: https://docs.github.com/en/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners#using-ephemeral-runners-for-autoscaling\n"
|
|
3142
3142
|
},
|
|
3143
3143
|
"repository": {
|
|
3144
3144
|
"type": "git",
|
|
@@ -3184,7 +3184,7 @@
|
|
|
3184
3184
|
},
|
|
3185
3185
|
"locationInModule": {
|
|
3186
3186
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3187
|
-
"line":
|
|
3187
|
+
"line": 231
|
|
3188
3188
|
},
|
|
3189
3189
|
"parameters": [
|
|
3190
3190
|
{
|
|
@@ -3215,7 +3215,7 @@
|
|
|
3215
3215
|
"kind": "class",
|
|
3216
3216
|
"locationInModule": {
|
|
3217
3217
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3218
|
-
"line":
|
|
3218
|
+
"line": 228
|
|
3219
3219
|
},
|
|
3220
3220
|
"methods": [
|
|
3221
3221
|
{
|
|
@@ -3225,7 +3225,7 @@
|
|
|
3225
3225
|
},
|
|
3226
3226
|
"locationInModule": {
|
|
3227
3227
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3228
|
-
"line":
|
|
3228
|
+
"line": 297
|
|
3229
3229
|
},
|
|
3230
3230
|
"name": "addComponent",
|
|
3231
3231
|
"parameters": [
|
|
@@ -3245,7 +3245,7 @@
|
|
|
3245
3245
|
},
|
|
3246
3246
|
"locationInModule": {
|
|
3247
3247
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3248
|
-
"line":
|
|
3248
|
+
"line": 312
|
|
3249
3249
|
},
|
|
3250
3250
|
"name": "addExtraCertificates",
|
|
3251
3251
|
"parameters": [
|
|
@@ -3267,7 +3267,7 @@
|
|
|
3267
3267
|
},
|
|
3268
3268
|
"locationInModule": {
|
|
3269
3269
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3270
|
-
"line":
|
|
3270
|
+
"line": 325
|
|
3271
3271
|
},
|
|
3272
3272
|
"name": "bind",
|
|
3273
3273
|
"overrides": "@cloudsnorkel/cdk-github-runners.IAmiBuilder",
|
|
@@ -3283,7 +3283,7 @@
|
|
|
3283
3283
|
},
|
|
3284
3284
|
"locationInModule": {
|
|
3285
3285
|
"filename": "src/providers/image-builders/common.ts",
|
|
3286
|
-
"line":
|
|
3286
|
+
"line": 454
|
|
3287
3287
|
},
|
|
3288
3288
|
"name": "createImage",
|
|
3289
3289
|
"parameters": [
|
|
@@ -3333,7 +3333,7 @@
|
|
|
3333
3333
|
},
|
|
3334
3334
|
"locationInModule": {
|
|
3335
3335
|
"filename": "src/providers/image-builders/common.ts",
|
|
3336
|
-
"line":
|
|
3336
|
+
"line": 430
|
|
3337
3337
|
},
|
|
3338
3338
|
"name": "createInfrastructure",
|
|
3339
3339
|
"parameters": [
|
|
@@ -3362,7 +3362,7 @@
|
|
|
3362
3362
|
},
|
|
3363
3363
|
"locationInModule": {
|
|
3364
3364
|
"filename": "src/providers/image-builders/common.ts",
|
|
3365
|
-
"line":
|
|
3365
|
+
"line": 422
|
|
3366
3366
|
},
|
|
3367
3367
|
"name": "createLog",
|
|
3368
3368
|
"parameters": [
|
|
@@ -3386,7 +3386,7 @@
|
|
|
3386
3386
|
},
|
|
3387
3387
|
"locationInModule": {
|
|
3388
3388
|
"filename": "src/providers/image-builders/common.ts",
|
|
3389
|
-
"line":
|
|
3389
|
+
"line": 471
|
|
3390
3390
|
},
|
|
3391
3391
|
"name": "createPipeline",
|
|
3392
3392
|
"parameters": [
|
|
@@ -3438,7 +3438,7 @@
|
|
|
3438
3438
|
},
|
|
3439
3439
|
"locationInModule": {
|
|
3440
3440
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3441
|
-
"line":
|
|
3441
|
+
"line": 283
|
|
3442
3442
|
},
|
|
3443
3443
|
"name": "prependComponent",
|
|
3444
3444
|
"parameters": [
|
|
@@ -3460,7 +3460,7 @@
|
|
|
3460
3460
|
"immutable": true,
|
|
3461
3461
|
"locationInModule": {
|
|
3462
3462
|
"filename": "src/providers/image-builders/common.ts",
|
|
3463
|
-
"line":
|
|
3463
|
+
"line": 345
|
|
3464
3464
|
},
|
|
3465
3465
|
"name": "architecture",
|
|
3466
3466
|
"protected": true,
|
|
@@ -3476,7 +3476,7 @@
|
|
|
3476
3476
|
"immutable": true,
|
|
3477
3477
|
"locationInModule": {
|
|
3478
3478
|
"filename": "src/providers/image-builders/common.ts",
|
|
3479
|
-
"line":
|
|
3479
|
+
"line": 501
|
|
3480
3480
|
},
|
|
3481
3481
|
"name": "connections",
|
|
3482
3482
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -3491,7 +3491,7 @@
|
|
|
3491
3491
|
"immutable": true,
|
|
3492
3492
|
"locationInModule": {
|
|
3493
3493
|
"filename": "src/providers/image-builders/common.ts",
|
|
3494
|
-
"line":
|
|
3494
|
+
"line": 349
|
|
3495
3495
|
},
|
|
3496
3496
|
"name": "description",
|
|
3497
3497
|
"protected": true,
|
|
@@ -3506,7 +3506,7 @@
|
|
|
3506
3506
|
"immutable": true,
|
|
3507
3507
|
"locationInModule": {
|
|
3508
3508
|
"filename": "src/providers/image-builders/common.ts",
|
|
3509
|
-
"line":
|
|
3509
|
+
"line": 346
|
|
3510
3510
|
},
|
|
3511
3511
|
"name": "os",
|
|
3512
3512
|
"protected": true,
|
|
@@ -3521,7 +3521,7 @@
|
|
|
3521
3521
|
"immutable": true,
|
|
3522
3522
|
"locationInModule": {
|
|
3523
3523
|
"filename": "src/providers/image-builders/common.ts",
|
|
3524
|
-
"line":
|
|
3524
|
+
"line": 347
|
|
3525
3525
|
},
|
|
3526
3526
|
"name": "platform",
|
|
3527
3527
|
"protected": true,
|
|
@@ -3536,7 +3536,7 @@
|
|
|
3536
3536
|
"immutable": true,
|
|
3537
3537
|
"locationInModule": {
|
|
3538
3538
|
"filename": "src/providers/image-builders/common.ts",
|
|
3539
|
-
"line":
|
|
3539
|
+
"line": 351
|
|
3540
3540
|
},
|
|
3541
3541
|
"name": "runnerVersion",
|
|
3542
3542
|
"protected": true,
|
|
@@ -3550,7 +3550,7 @@
|
|
|
3550
3550
|
},
|
|
3551
3551
|
"locationInModule": {
|
|
3552
3552
|
"filename": "src/providers/image-builders/common.ts",
|
|
3553
|
-
"line":
|
|
3553
|
+
"line": 353
|
|
3554
3554
|
},
|
|
3555
3555
|
"name": "components",
|
|
3556
3556
|
"protected": true,
|
|
@@ -3577,7 +3577,7 @@
|
|
|
3577
3577
|
"kind": "interface",
|
|
3578
3578
|
"locationInModule": {
|
|
3579
3579
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3580
|
-
"line":
|
|
3580
|
+
"line": 25
|
|
3581
3581
|
},
|
|
3582
3582
|
"name": "AmiBuilderProps",
|
|
3583
3583
|
"properties": [
|
|
@@ -3591,7 +3591,7 @@
|
|
|
3591
3591
|
"immutable": true,
|
|
3592
3592
|
"locationInModule": {
|
|
3593
3593
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3594
|
-
"line":
|
|
3594
|
+
"line": 31
|
|
3595
3595
|
},
|
|
3596
3596
|
"name": "architecture",
|
|
3597
3597
|
"optional": true,
|
|
@@ -3610,7 +3610,7 @@
|
|
|
3610
3610
|
"immutable": true,
|
|
3611
3611
|
"locationInModule": {
|
|
3612
3612
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3613
|
-
"line":
|
|
3613
|
+
"line": 116
|
|
3614
3614
|
},
|
|
3615
3615
|
"name": "installDocker",
|
|
3616
3616
|
"optional": true,
|
|
@@ -3628,7 +3628,7 @@
|
|
|
3628
3628
|
"immutable": true,
|
|
3629
3629
|
"locationInModule": {
|
|
3630
3630
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3631
|
-
"line":
|
|
3631
|
+
"line": 91
|
|
3632
3632
|
},
|
|
3633
3633
|
"name": "instanceType",
|
|
3634
3634
|
"optional": true,
|
|
@@ -3647,7 +3647,7 @@
|
|
|
3647
3647
|
"immutable": true,
|
|
3648
3648
|
"locationInModule": {
|
|
3649
3649
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3650
|
-
"line":
|
|
3650
|
+
"line": 109
|
|
3651
3651
|
},
|
|
3652
3652
|
"name": "logRemovalPolicy",
|
|
3653
3653
|
"optional": true,
|
|
@@ -3666,7 +3666,7 @@
|
|
|
3666
3666
|
"immutable": true,
|
|
3667
3667
|
"locationInModule": {
|
|
3668
3668
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3669
|
-
"line":
|
|
3669
|
+
"line": 100
|
|
3670
3670
|
},
|
|
3671
3671
|
"name": "logRetention",
|
|
3672
3672
|
"optional": true,
|
|
@@ -3684,7 +3684,7 @@
|
|
|
3684
3684
|
"immutable": true,
|
|
3685
3685
|
"locationInModule": {
|
|
3686
3686
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3687
|
-
"line":
|
|
3687
|
+
"line": 38
|
|
3688
3688
|
},
|
|
3689
3689
|
"name": "os",
|
|
3690
3690
|
"optional": true,
|
|
@@ -3703,7 +3703,7 @@
|
|
|
3703
3703
|
"immutable": true,
|
|
3704
3704
|
"locationInModule": {
|
|
3705
3705
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3706
|
-
"line":
|
|
3706
|
+
"line": 54
|
|
3707
3707
|
},
|
|
3708
3708
|
"name": "rebuildInterval",
|
|
3709
3709
|
"optional": true,
|
|
@@ -3721,7 +3721,7 @@
|
|
|
3721
3721
|
"immutable": true,
|
|
3722
3722
|
"locationInModule": {
|
|
3723
3723
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3724
|
-
"line":
|
|
3724
|
+
"line": 45
|
|
3725
3725
|
},
|
|
3726
3726
|
"name": "runnerVersion",
|
|
3727
3727
|
"optional": true,
|
|
@@ -3740,7 +3740,7 @@
|
|
|
3740
3740
|
"immutable": true,
|
|
3741
3741
|
"locationInModule": {
|
|
3742
3742
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3743
|
-
"line":
|
|
3743
|
+
"line": 70
|
|
3744
3744
|
},
|
|
3745
3745
|
"name": "securityGroup",
|
|
3746
3746
|
"optional": true,
|
|
@@ -3758,7 +3758,7 @@
|
|
|
3758
3758
|
"immutable": true,
|
|
3759
3759
|
"locationInModule": {
|
|
3760
3760
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3761
|
-
"line":
|
|
3761
|
+
"line": 77
|
|
3762
3762
|
},
|
|
3763
3763
|
"name": "securityGroups",
|
|
3764
3764
|
"optional": true,
|
|
@@ -3782,7 +3782,7 @@
|
|
|
3782
3782
|
"immutable": true,
|
|
3783
3783
|
"locationInModule": {
|
|
3784
3784
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3785
|
-
"line":
|
|
3785
|
+
"line": 84
|
|
3786
3786
|
},
|
|
3787
3787
|
"name": "subnetSelection",
|
|
3788
3788
|
"optional": true,
|
|
@@ -3800,7 +3800,7 @@
|
|
|
3800
3800
|
"immutable": true,
|
|
3801
3801
|
"locationInModule": {
|
|
3802
3802
|
"filename": "src/providers/image-builders/ami.ts",
|
|
3803
|
-
"line":
|
|
3803
|
+
"line": 61
|
|
3804
3804
|
},
|
|
3805
3805
|
"name": "vpc",
|
|
3806
3806
|
"optional": true,
|
|
@@ -3979,7 +3979,7 @@
|
|
|
3979
3979
|
},
|
|
3980
3980
|
"locationInModule": {
|
|
3981
3981
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
3982
|
-
"line":
|
|
3982
|
+
"line": 178
|
|
3983
3983
|
},
|
|
3984
3984
|
"parameters": [
|
|
3985
3985
|
{
|
|
@@ -4008,7 +4008,7 @@
|
|
|
4008
4008
|
"kind": "class",
|
|
4009
4009
|
"locationInModule": {
|
|
4010
4010
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4011
|
-
"line":
|
|
4011
|
+
"line": 159
|
|
4012
4012
|
},
|
|
4013
4013
|
"methods": [
|
|
4014
4014
|
{
|
|
@@ -4019,7 +4019,7 @@
|
|
|
4019
4019
|
},
|
|
4020
4020
|
"locationInModule": {
|
|
4021
4021
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4022
|
-
"line":
|
|
4022
|
+
"line": 285
|
|
4023
4023
|
},
|
|
4024
4024
|
"name": "addExtraCertificates",
|
|
4025
4025
|
"parameters": [
|
|
@@ -4041,7 +4041,7 @@
|
|
|
4041
4041
|
},
|
|
4042
4042
|
"locationInModule": {
|
|
4043
4043
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4044
|
-
"line":
|
|
4044
|
+
"line": 219
|
|
4045
4045
|
},
|
|
4046
4046
|
"name": "addFiles",
|
|
4047
4047
|
"parameters": [
|
|
@@ -4072,7 +4072,7 @@
|
|
|
4072
4072
|
},
|
|
4073
4073
|
"locationInModule": {
|
|
4074
4074
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4075
|
-
"line":
|
|
4075
|
+
"line": 271
|
|
4076
4076
|
},
|
|
4077
4077
|
"name": "addPolicyStatement",
|
|
4078
4078
|
"parameters": [
|
|
@@ -4094,7 +4094,7 @@
|
|
|
4094
4094
|
},
|
|
4095
4095
|
"locationInModule": {
|
|
4096
4096
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4097
|
-
"line":
|
|
4097
|
+
"line": 246
|
|
4098
4098
|
},
|
|
4099
4099
|
"name": "addPostBuildCommand",
|
|
4100
4100
|
"parameters": [
|
|
@@ -4116,7 +4116,7 @@
|
|
|
4116
4116
|
},
|
|
4117
4117
|
"locationInModule": {
|
|
4118
4118
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4119
|
-
"line":
|
|
4119
|
+
"line": 234
|
|
4120
4120
|
},
|
|
4121
4121
|
"name": "addPreBuildCommand",
|
|
4122
4122
|
"parameters": [
|
|
@@ -4138,7 +4138,7 @@
|
|
|
4138
4138
|
},
|
|
4139
4139
|
"locationInModule": {
|
|
4140
4140
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4141
|
-
"line":
|
|
4141
|
+
"line": 295
|
|
4142
4142
|
},
|
|
4143
4143
|
"name": "bind",
|
|
4144
4144
|
"overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
|
|
@@ -4156,7 +4156,7 @@
|
|
|
4156
4156
|
},
|
|
4157
4157
|
"locationInModule": {
|
|
4158
4158
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4159
|
-
"line":
|
|
4159
|
+
"line": 259
|
|
4160
4160
|
},
|
|
4161
4161
|
"name": "setBuildArg",
|
|
4162
4162
|
"parameters": [
|
|
@@ -4190,7 +4190,7 @@
|
|
|
4190
4190
|
"immutable": true,
|
|
4191
4191
|
"locationInModule": {
|
|
4192
4192
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4193
|
-
"line":
|
|
4193
|
+
"line": 178
|
|
4194
4194
|
},
|
|
4195
4195
|
"name": "props",
|
|
4196
4196
|
"type": {
|
|
@@ -4211,7 +4211,7 @@
|
|
|
4211
4211
|
"kind": "interface",
|
|
4212
4212
|
"locationInModule": {
|
|
4213
4213
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4214
|
-
"line":
|
|
4214
|
+
"line": 35
|
|
4215
4215
|
},
|
|
4216
4216
|
"name": "CodeBuildImageBuilderProps",
|
|
4217
4217
|
"properties": [
|
|
@@ -4225,7 +4225,7 @@
|
|
|
4225
4225
|
"immutable": true,
|
|
4226
4226
|
"locationInModule": {
|
|
4227
4227
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4228
|
-
"line":
|
|
4228
|
+
"line": 53
|
|
4229
4229
|
},
|
|
4230
4230
|
"name": "dockerfilePath",
|
|
4231
4231
|
"type": {
|
|
@@ -4242,7 +4242,7 @@
|
|
|
4242
4242
|
"immutable": true,
|
|
4243
4243
|
"locationInModule": {
|
|
4244
4244
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4245
|
-
"line":
|
|
4245
|
+
"line": 41
|
|
4246
4246
|
},
|
|
4247
4247
|
"name": "architecture",
|
|
4248
4248
|
"optional": true,
|
|
@@ -4250,6 +4250,25 @@
|
|
|
4250
4250
|
"fqn": "@cloudsnorkel/cdk-github-runners.Architecture"
|
|
4251
4251
|
}
|
|
4252
4252
|
},
|
|
4253
|
+
{
|
|
4254
|
+
"abstract": true,
|
|
4255
|
+
"docs": {
|
|
4256
|
+
"default": "Ubuntu 20.04 for x64 and Amazon Linux 2 for ARM64",
|
|
4257
|
+
"remarks": "This is the image that's going to run the code that builds the runner image.\n\nThe only action taken in CodeBuild is running `docker build`. You would therefore not need to change this setting often.",
|
|
4258
|
+
"stability": "experimental",
|
|
4259
|
+
"summary": "Build image to use in CodeBuild."
|
|
4260
|
+
},
|
|
4261
|
+
"immutable": true,
|
|
4262
|
+
"locationInModule": {
|
|
4263
|
+
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4264
|
+
"line": 107
|
|
4265
|
+
},
|
|
4266
|
+
"name": "buildImage",
|
|
4267
|
+
"optional": true,
|
|
4268
|
+
"type": {
|
|
4269
|
+
"fqn": "aws-cdk-lib.aws_codebuild.IBuildImage"
|
|
4270
|
+
}
|
|
4271
|
+
},
|
|
4253
4272
|
{
|
|
4254
4273
|
"abstract": true,
|
|
4255
4274
|
"docs": {
|
|
@@ -4261,7 +4280,7 @@
|
|
|
4261
4280
|
"immutable": true,
|
|
4262
4281
|
"locationInModule": {
|
|
4263
4282
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4264
|
-
"line":
|
|
4283
|
+
"line": 98
|
|
4265
4284
|
},
|
|
4266
4285
|
"name": "computeType",
|
|
4267
4286
|
"optional": true,
|
|
@@ -4280,7 +4299,7 @@
|
|
|
4280
4299
|
"immutable": true,
|
|
4281
4300
|
"locationInModule": {
|
|
4282
4301
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4283
|
-
"line":
|
|
4302
|
+
"line": 134
|
|
4284
4303
|
},
|
|
4285
4304
|
"name": "logRemovalPolicy",
|
|
4286
4305
|
"optional": true,
|
|
@@ -4299,7 +4318,7 @@
|
|
|
4299
4318
|
"immutable": true,
|
|
4300
4319
|
"locationInModule": {
|
|
4301
4320
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4302
|
-
"line":
|
|
4321
|
+
"line": 125
|
|
4303
4322
|
},
|
|
4304
4323
|
"name": "logRetention",
|
|
4305
4324
|
"optional": true,
|
|
@@ -4317,7 +4336,7 @@
|
|
|
4317
4336
|
"immutable": true,
|
|
4318
4337
|
"locationInModule": {
|
|
4319
4338
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4320
|
-
"line":
|
|
4339
|
+
"line": 48
|
|
4321
4340
|
},
|
|
4322
4341
|
"name": "os",
|
|
4323
4342
|
"optional": true,
|
|
@@ -4336,7 +4355,7 @@
|
|
|
4336
4355
|
"immutable": true,
|
|
4337
4356
|
"locationInModule": {
|
|
4338
4357
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4339
|
-
"line":
|
|
4358
|
+
"line": 69
|
|
4340
4359
|
},
|
|
4341
4360
|
"name": "rebuildInterval",
|
|
4342
4361
|
"optional": true,
|
|
@@ -4354,7 +4373,7 @@
|
|
|
4354
4373
|
"immutable": true,
|
|
4355
4374
|
"locationInModule": {
|
|
4356
4375
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4357
|
-
"line":
|
|
4376
|
+
"line": 60
|
|
4358
4377
|
},
|
|
4359
4378
|
"name": "runnerVersion",
|
|
4360
4379
|
"optional": true,
|
|
@@ -4372,7 +4391,7 @@
|
|
|
4372
4391
|
"immutable": true,
|
|
4373
4392
|
"locationInModule": {
|
|
4374
4393
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4375
|
-
"line":
|
|
4394
|
+
"line": 83
|
|
4376
4395
|
},
|
|
4377
4396
|
"name": "securityGroup",
|
|
4378
4397
|
"optional": true,
|
|
@@ -4390,7 +4409,7 @@
|
|
|
4390
4409
|
"immutable": true,
|
|
4391
4410
|
"locationInModule": {
|
|
4392
4411
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4393
|
-
"line":
|
|
4412
|
+
"line": 90
|
|
4394
4413
|
},
|
|
4395
4414
|
"name": "subnetSelection",
|
|
4396
4415
|
"optional": true,
|
|
@@ -4409,7 +4428,7 @@
|
|
|
4409
4428
|
"immutable": true,
|
|
4410
4429
|
"locationInModule": {
|
|
4411
4430
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4412
|
-
"line":
|
|
4431
|
+
"line": 116
|
|
4413
4432
|
},
|
|
4414
4433
|
"name": "timeout",
|
|
4415
4434
|
"optional": true,
|
|
@@ -4427,7 +4446,7 @@
|
|
|
4427
4446
|
"immutable": true,
|
|
4428
4447
|
"locationInModule": {
|
|
4429
4448
|
"filename": "src/providers/image-builders/codebuild.ts",
|
|
4430
|
-
"line":
|
|
4449
|
+
"line": 76
|
|
4431
4450
|
},
|
|
4432
4451
|
"name": "vpc",
|
|
4433
4452
|
"optional": true,
|
|
@@ -4439,6 +4458,52 @@
|
|
|
4439
4458
|
"symbolId": "src/providers/image-builders/codebuild:CodeBuildImageBuilderProps"
|
|
4440
4459
|
},
|
|
4441
4460
|
"@cloudsnorkel/cdk-github-runners.CodeBuildRunner": {
|
|
4461
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
4462
|
+
"base": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider",
|
|
4463
|
+
"docs": {
|
|
4464
|
+
"deprecated": "use {@link CodeBuildRunnerProvider}",
|
|
4465
|
+
"stability": "deprecated"
|
|
4466
|
+
},
|
|
4467
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunner",
|
|
4468
|
+
"initializer": {
|
|
4469
|
+
"docs": {
|
|
4470
|
+
"stability": "experimental"
|
|
4471
|
+
},
|
|
4472
|
+
"locationInModule": {
|
|
4473
|
+
"filename": "src/providers/codebuild.ts",
|
|
4474
|
+
"line": 178
|
|
4475
|
+
},
|
|
4476
|
+
"parameters": [
|
|
4477
|
+
{
|
|
4478
|
+
"name": "scope",
|
|
4479
|
+
"type": {
|
|
4480
|
+
"fqn": "constructs.Construct"
|
|
4481
|
+
}
|
|
4482
|
+
},
|
|
4483
|
+
{
|
|
4484
|
+
"name": "id",
|
|
4485
|
+
"type": {
|
|
4486
|
+
"primitive": "string"
|
|
4487
|
+
}
|
|
4488
|
+
},
|
|
4489
|
+
{
|
|
4490
|
+
"name": "props",
|
|
4491
|
+
"optional": true,
|
|
4492
|
+
"type": {
|
|
4493
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps"
|
|
4494
|
+
}
|
|
4495
|
+
}
|
|
4496
|
+
]
|
|
4497
|
+
},
|
|
4498
|
+
"kind": "class",
|
|
4499
|
+
"locationInModule": {
|
|
4500
|
+
"filename": "src/providers/codebuild.ts",
|
|
4501
|
+
"line": 381
|
|
4502
|
+
},
|
|
4503
|
+
"name": "CodeBuildRunner",
|
|
4504
|
+
"symbolId": "src/providers/codebuild:CodeBuildRunner"
|
|
4505
|
+
},
|
|
4506
|
+
"@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider": {
|
|
4442
4507
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
4443
4508
|
"base": "constructs.Construct",
|
|
4444
4509
|
"docs": {
|
|
@@ -4446,7 +4511,7 @@
|
|
|
4446
4511
|
"stability": "experimental",
|
|
4447
4512
|
"summary": "GitHub Actions runner provider using CodeBuild to execute jobs."
|
|
4448
4513
|
},
|
|
4449
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
4514
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider",
|
|
4450
4515
|
"initializer": {
|
|
4451
4516
|
"docs": {
|
|
4452
4517
|
"stability": "experimental"
|
|
@@ -4472,7 +4537,7 @@
|
|
|
4472
4537
|
"name": "props",
|
|
4473
4538
|
"optional": true,
|
|
4474
4539
|
"type": {
|
|
4475
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
4540
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps"
|
|
4476
4541
|
}
|
|
4477
4542
|
}
|
|
4478
4543
|
]
|
|
@@ -4650,7 +4715,7 @@
|
|
|
4650
4715
|
}
|
|
4651
4716
|
}
|
|
4652
4717
|
],
|
|
4653
|
-
"name": "
|
|
4718
|
+
"name": "CodeBuildRunnerProvider",
|
|
4654
4719
|
"properties": [
|
|
4655
4720
|
{
|
|
4656
4721
|
"const": true,
|
|
@@ -4790,15 +4855,15 @@
|
|
|
4790
4855
|
}
|
|
4791
4856
|
}
|
|
4792
4857
|
],
|
|
4793
|
-
"symbolId": "src/providers/codebuild:
|
|
4858
|
+
"symbolId": "src/providers/codebuild:CodeBuildRunnerProvider"
|
|
4794
4859
|
},
|
|
4795
|
-
"@cloudsnorkel/cdk-github-runners.
|
|
4860
|
+
"@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps": {
|
|
4796
4861
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
4797
4862
|
"datatype": true,
|
|
4798
4863
|
"docs": {
|
|
4799
4864
|
"stability": "experimental"
|
|
4800
4865
|
},
|
|
4801
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
4866
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps",
|
|
4802
4867
|
"interfaces": [
|
|
4803
4868
|
"@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
|
|
4804
4869
|
],
|
|
@@ -4807,7 +4872,7 @@
|
|
|
4807
4872
|
"filename": "src/providers/codebuild.ts",
|
|
4808
4873
|
"line": 30
|
|
4809
4874
|
},
|
|
4810
|
-
"name": "
|
|
4875
|
+
"name": "CodeBuildRunnerProviderProps",
|
|
4811
4876
|
"properties": [
|
|
4812
4877
|
{
|
|
4813
4878
|
"abstract": true,
|
|
@@ -5007,7 +5072,7 @@
|
|
|
5007
5072
|
}
|
|
5008
5073
|
}
|
|
5009
5074
|
],
|
|
5010
|
-
"symbolId": "src/providers/codebuild:
|
|
5075
|
+
"symbolId": "src/providers/codebuild:CodeBuildRunnerProviderProps"
|
|
5011
5076
|
},
|
|
5012
5077
|
"@cloudsnorkel/cdk-github-runners.ContainerImageBuilder": {
|
|
5013
5078
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
@@ -5024,7 +5089,7 @@
|
|
|
5024
5089
|
},
|
|
5025
5090
|
"locationInModule": {
|
|
5026
5091
|
"filename": "src/providers/image-builders/container.ts",
|
|
5027
|
-
"line":
|
|
5092
|
+
"line": 231
|
|
5028
5093
|
},
|
|
5029
5094
|
"parameters": [
|
|
5030
5095
|
{
|
|
@@ -5055,7 +5120,7 @@
|
|
|
5055
5120
|
"kind": "class",
|
|
5056
5121
|
"locationInModule": {
|
|
5057
5122
|
"filename": "src/providers/image-builders/container.ts",
|
|
5058
|
-
"line":
|
|
5123
|
+
"line": 226
|
|
5059
5124
|
},
|
|
5060
5125
|
"methods": [
|
|
5061
5126
|
{
|
|
@@ -5065,7 +5130,7 @@
|
|
|
5065
5130
|
},
|
|
5066
5131
|
"locationInModule": {
|
|
5067
5132
|
"filename": "src/providers/image-builders/container.ts",
|
|
5068
|
-
"line":
|
|
5133
|
+
"line": 293
|
|
5069
5134
|
},
|
|
5070
5135
|
"name": "addComponent",
|
|
5071
5136
|
"parameters": [
|
|
@@ -5085,7 +5150,7 @@
|
|
|
5085
5150
|
},
|
|
5086
5151
|
"locationInModule": {
|
|
5087
5152
|
"filename": "src/providers/image-builders/container.ts",
|
|
5088
|
-
"line":
|
|
5153
|
+
"line": 310
|
|
5089
5154
|
},
|
|
5090
5155
|
"name": "addExtraCertificates",
|
|
5091
5156
|
"parameters": [
|
|
@@ -5107,7 +5172,7 @@
|
|
|
5107
5172
|
},
|
|
5108
5173
|
"locationInModule": {
|
|
5109
5174
|
"filename": "src/providers/image-builders/container.ts",
|
|
5110
|
-
"line":
|
|
5175
|
+
"line": 323
|
|
5111
5176
|
},
|
|
5112
5177
|
"name": "bind",
|
|
5113
5178
|
"overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
|
|
@@ -5123,7 +5188,7 @@
|
|
|
5123
5188
|
},
|
|
5124
5189
|
"locationInModule": {
|
|
5125
5190
|
"filename": "src/providers/image-builders/common.ts",
|
|
5126
|
-
"line":
|
|
5191
|
+
"line": 454
|
|
5127
5192
|
},
|
|
5128
5193
|
"name": "createImage",
|
|
5129
5194
|
"parameters": [
|
|
@@ -5173,7 +5238,7 @@
|
|
|
5173
5238
|
},
|
|
5174
5239
|
"locationInModule": {
|
|
5175
5240
|
"filename": "src/providers/image-builders/common.ts",
|
|
5176
|
-
"line":
|
|
5241
|
+
"line": 430
|
|
5177
5242
|
},
|
|
5178
5243
|
"name": "createInfrastructure",
|
|
5179
5244
|
"parameters": [
|
|
@@ -5202,7 +5267,7 @@
|
|
|
5202
5267
|
},
|
|
5203
5268
|
"locationInModule": {
|
|
5204
5269
|
"filename": "src/providers/image-builders/common.ts",
|
|
5205
|
-
"line":
|
|
5270
|
+
"line": 422
|
|
5206
5271
|
},
|
|
5207
5272
|
"name": "createLog",
|
|
5208
5273
|
"parameters": [
|
|
@@ -5226,7 +5291,7 @@
|
|
|
5226
5291
|
},
|
|
5227
5292
|
"locationInModule": {
|
|
5228
5293
|
"filename": "src/providers/image-builders/common.ts",
|
|
5229
|
-
"line":
|
|
5294
|
+
"line": 471
|
|
5230
5295
|
},
|
|
5231
5296
|
"name": "createPipeline",
|
|
5232
5297
|
"parameters": [
|
|
@@ -5278,7 +5343,7 @@
|
|
|
5278
5343
|
},
|
|
5279
5344
|
"locationInModule": {
|
|
5280
5345
|
"filename": "src/providers/image-builders/container.ts",
|
|
5281
|
-
"line":
|
|
5346
|
+
"line": 279
|
|
5282
5347
|
},
|
|
5283
5348
|
"name": "prependComponent",
|
|
5284
5349
|
"parameters": [
|
|
@@ -5300,7 +5365,7 @@
|
|
|
5300
5365
|
"immutable": true,
|
|
5301
5366
|
"locationInModule": {
|
|
5302
5367
|
"filename": "src/providers/image-builders/common.ts",
|
|
5303
|
-
"line":
|
|
5368
|
+
"line": 345
|
|
5304
5369
|
},
|
|
5305
5370
|
"name": "architecture",
|
|
5306
5371
|
"protected": true,
|
|
@@ -5316,7 +5381,7 @@
|
|
|
5316
5381
|
"immutable": true,
|
|
5317
5382
|
"locationInModule": {
|
|
5318
5383
|
"filename": "src/providers/image-builders/common.ts",
|
|
5319
|
-
"line":
|
|
5384
|
+
"line": 501
|
|
5320
5385
|
},
|
|
5321
5386
|
"name": "connections",
|
|
5322
5387
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -5331,7 +5396,7 @@
|
|
|
5331
5396
|
"immutable": true,
|
|
5332
5397
|
"locationInModule": {
|
|
5333
5398
|
"filename": "src/providers/image-builders/common.ts",
|
|
5334
|
-
"line":
|
|
5399
|
+
"line": 349
|
|
5335
5400
|
},
|
|
5336
5401
|
"name": "description",
|
|
5337
5402
|
"protected": true,
|
|
@@ -5346,7 +5411,7 @@
|
|
|
5346
5411
|
"immutable": true,
|
|
5347
5412
|
"locationInModule": {
|
|
5348
5413
|
"filename": "src/providers/image-builders/common.ts",
|
|
5349
|
-
"line":
|
|
5414
|
+
"line": 346
|
|
5350
5415
|
},
|
|
5351
5416
|
"name": "os",
|
|
5352
5417
|
"protected": true,
|
|
@@ -5361,7 +5426,7 @@
|
|
|
5361
5426
|
"immutable": true,
|
|
5362
5427
|
"locationInModule": {
|
|
5363
5428
|
"filename": "src/providers/image-builders/common.ts",
|
|
5364
|
-
"line":
|
|
5429
|
+
"line": 347
|
|
5365
5430
|
},
|
|
5366
5431
|
"name": "platform",
|
|
5367
5432
|
"protected": true,
|
|
@@ -5376,7 +5441,7 @@
|
|
|
5376
5441
|
"immutable": true,
|
|
5377
5442
|
"locationInModule": {
|
|
5378
5443
|
"filename": "src/providers/image-builders/container.ts",
|
|
5379
|
-
"line":
|
|
5444
|
+
"line": 227
|
|
5380
5445
|
},
|
|
5381
5446
|
"name": "repository",
|
|
5382
5447
|
"type": {
|
|
@@ -5390,7 +5455,7 @@
|
|
|
5390
5455
|
"immutable": true,
|
|
5391
5456
|
"locationInModule": {
|
|
5392
5457
|
"filename": "src/providers/image-builders/common.ts",
|
|
5393
|
-
"line":
|
|
5458
|
+
"line": 351
|
|
5394
5459
|
},
|
|
5395
5460
|
"name": "runnerVersion",
|
|
5396
5461
|
"protected": true,
|
|
@@ -5404,7 +5469,7 @@
|
|
|
5404
5469
|
},
|
|
5405
5470
|
"locationInModule": {
|
|
5406
5471
|
"filename": "src/providers/image-builders/common.ts",
|
|
5407
|
-
"line":
|
|
5472
|
+
"line": 353
|
|
5408
5473
|
},
|
|
5409
5474
|
"name": "components",
|
|
5410
5475
|
"protected": true,
|
|
@@ -5431,7 +5496,7 @@
|
|
|
5431
5496
|
"kind": "interface",
|
|
5432
5497
|
"locationInModule": {
|
|
5433
5498
|
"filename": "src/providers/image-builders/container.ts",
|
|
5434
|
-
"line":
|
|
5499
|
+
"line": 30
|
|
5435
5500
|
},
|
|
5436
5501
|
"name": "ContainerImageBuilderProps",
|
|
5437
5502
|
"properties": [
|
|
@@ -5445,7 +5510,7 @@
|
|
|
5445
5510
|
"immutable": true,
|
|
5446
5511
|
"locationInModule": {
|
|
5447
5512
|
"filename": "src/providers/image-builders/container.ts",
|
|
5448
|
-
"line":
|
|
5513
|
+
"line": 36
|
|
5449
5514
|
},
|
|
5450
5515
|
"name": "architecture",
|
|
5451
5516
|
"optional": true,
|
|
@@ -5463,7 +5528,7 @@
|
|
|
5463
5528
|
"immutable": true,
|
|
5464
5529
|
"locationInModule": {
|
|
5465
5530
|
"filename": "src/providers/image-builders/container.ts",
|
|
5466
|
-
"line":
|
|
5531
|
+
"line": 103
|
|
5467
5532
|
},
|
|
5468
5533
|
"name": "instanceType",
|
|
5469
5534
|
"optional": true,
|
|
@@ -5482,7 +5547,7 @@
|
|
|
5482
5547
|
"immutable": true,
|
|
5483
5548
|
"locationInModule": {
|
|
5484
5549
|
"filename": "src/providers/image-builders/container.ts",
|
|
5485
|
-
"line":
|
|
5550
|
+
"line": 121
|
|
5486
5551
|
},
|
|
5487
5552
|
"name": "logRemovalPolicy",
|
|
5488
5553
|
"optional": true,
|
|
@@ -5501,7 +5566,7 @@
|
|
|
5501
5566
|
"immutable": true,
|
|
5502
5567
|
"locationInModule": {
|
|
5503
5568
|
"filename": "src/providers/image-builders/container.ts",
|
|
5504
|
-
"line":
|
|
5569
|
+
"line": 112
|
|
5505
5570
|
},
|
|
5506
5571
|
"name": "logRetention",
|
|
5507
5572
|
"optional": true,
|
|
@@ -5519,7 +5584,7 @@
|
|
|
5519
5584
|
"immutable": true,
|
|
5520
5585
|
"locationInModule": {
|
|
5521
5586
|
"filename": "src/providers/image-builders/container.ts",
|
|
5522
|
-
"line":
|
|
5587
|
+
"line": 43
|
|
5523
5588
|
},
|
|
5524
5589
|
"name": "os",
|
|
5525
5590
|
"optional": true,
|
|
@@ -5538,7 +5603,7 @@
|
|
|
5538
5603
|
"immutable": true,
|
|
5539
5604
|
"locationInModule": {
|
|
5540
5605
|
"filename": "src/providers/image-builders/container.ts",
|
|
5541
|
-
"line":
|
|
5606
|
+
"line": 50
|
|
5542
5607
|
},
|
|
5543
5608
|
"name": "parentImage",
|
|
5544
5609
|
"optional": true,
|
|
@@ -5557,7 +5622,7 @@
|
|
|
5557
5622
|
"immutable": true,
|
|
5558
5623
|
"locationInModule": {
|
|
5559
5624
|
"filename": "src/providers/image-builders/container.ts",
|
|
5560
|
-
"line":
|
|
5625
|
+
"line": 66
|
|
5561
5626
|
},
|
|
5562
5627
|
"name": "rebuildInterval",
|
|
5563
5628
|
"optional": true,
|
|
@@ -5575,7 +5640,7 @@
|
|
|
5575
5640
|
"immutable": true,
|
|
5576
5641
|
"locationInModule": {
|
|
5577
5642
|
"filename": "src/providers/image-builders/container.ts",
|
|
5578
|
-
"line":
|
|
5643
|
+
"line": 57
|
|
5579
5644
|
},
|
|
5580
5645
|
"name": "runnerVersion",
|
|
5581
5646
|
"optional": true,
|
|
@@ -5594,7 +5659,7 @@
|
|
|
5594
5659
|
"immutable": true,
|
|
5595
5660
|
"locationInModule": {
|
|
5596
5661
|
"filename": "src/providers/image-builders/container.ts",
|
|
5597
|
-
"line":
|
|
5662
|
+
"line": 82
|
|
5598
5663
|
},
|
|
5599
5664
|
"name": "securityGroup",
|
|
5600
5665
|
"optional": true,
|
|
@@ -5612,7 +5677,7 @@
|
|
|
5612
5677
|
"immutable": true,
|
|
5613
5678
|
"locationInModule": {
|
|
5614
5679
|
"filename": "src/providers/image-builders/container.ts",
|
|
5615
|
-
"line":
|
|
5680
|
+
"line": 89
|
|
5616
5681
|
},
|
|
5617
5682
|
"name": "securityGroups",
|
|
5618
5683
|
"optional": true,
|
|
@@ -5635,7 +5700,7 @@
|
|
|
5635
5700
|
"immutable": true,
|
|
5636
5701
|
"locationInModule": {
|
|
5637
5702
|
"filename": "src/providers/image-builders/container.ts",
|
|
5638
|
-
"line":
|
|
5703
|
+
"line": 96
|
|
5639
5704
|
},
|
|
5640
5705
|
"name": "subnetSelection",
|
|
5641
5706
|
"optional": true,
|
|
@@ -5653,7 +5718,7 @@
|
|
|
5653
5718
|
"immutable": true,
|
|
5654
5719
|
"locationInModule": {
|
|
5655
5720
|
"filename": "src/providers/image-builders/container.ts",
|
|
5656
|
-
"line":
|
|
5721
|
+
"line": 73
|
|
5657
5722
|
},
|
|
5658
5723
|
"name": "vpc",
|
|
5659
5724
|
"optional": true,
|
|
@@ -5665,6 +5730,52 @@
|
|
|
5665
5730
|
"symbolId": "src/providers/image-builders/container:ContainerImageBuilderProps"
|
|
5666
5731
|
},
|
|
5667
5732
|
"@cloudsnorkel/cdk-github-runners.Ec2Runner": {
|
|
5733
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
5734
|
+
"base": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider",
|
|
5735
|
+
"docs": {
|
|
5736
|
+
"deprecated": "use {@link Ec2RunnerProvider}",
|
|
5737
|
+
"stability": "deprecated"
|
|
5738
|
+
},
|
|
5739
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.Ec2Runner",
|
|
5740
|
+
"initializer": {
|
|
5741
|
+
"docs": {
|
|
5742
|
+
"stability": "experimental"
|
|
5743
|
+
},
|
|
5744
|
+
"locationInModule": {
|
|
5745
|
+
"filename": "src/providers/ec2.ts",
|
|
5746
|
+
"line": 252
|
|
5747
|
+
},
|
|
5748
|
+
"parameters": [
|
|
5749
|
+
{
|
|
5750
|
+
"name": "scope",
|
|
5751
|
+
"type": {
|
|
5752
|
+
"fqn": "constructs.Construct"
|
|
5753
|
+
}
|
|
5754
|
+
},
|
|
5755
|
+
{
|
|
5756
|
+
"name": "id",
|
|
5757
|
+
"type": {
|
|
5758
|
+
"primitive": "string"
|
|
5759
|
+
}
|
|
5760
|
+
},
|
|
5761
|
+
{
|
|
5762
|
+
"name": "props",
|
|
5763
|
+
"optional": true,
|
|
5764
|
+
"type": {
|
|
5765
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps"
|
|
5766
|
+
}
|
|
5767
|
+
}
|
|
5768
|
+
]
|
|
5769
|
+
},
|
|
5770
|
+
"kind": "class",
|
|
5771
|
+
"locationInModule": {
|
|
5772
|
+
"filename": "src/providers/ec2.ts",
|
|
5773
|
+
"line": 469
|
|
5774
|
+
},
|
|
5775
|
+
"name": "Ec2Runner",
|
|
5776
|
+
"symbolId": "src/providers/ec2:Ec2Runner"
|
|
5777
|
+
},
|
|
5778
|
+
"@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider": {
|
|
5668
5779
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
5669
5780
|
"base": "constructs.Construct",
|
|
5670
5781
|
"docs": {
|
|
@@ -5672,7 +5783,7 @@
|
|
|
5672
5783
|
"stability": "experimental",
|
|
5673
5784
|
"summary": "GitHub Actions runner provider using EC2 to execute jobs."
|
|
5674
5785
|
},
|
|
5675
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
5786
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider",
|
|
5676
5787
|
"initializer": {
|
|
5677
5788
|
"docs": {
|
|
5678
5789
|
"stability": "experimental"
|
|
@@ -5698,7 +5809,7 @@
|
|
|
5698
5809
|
"name": "props",
|
|
5699
5810
|
"optional": true,
|
|
5700
5811
|
"type": {
|
|
5701
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
5812
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps"
|
|
5702
5813
|
}
|
|
5703
5814
|
}
|
|
5704
5815
|
]
|
|
@@ -5876,7 +5987,7 @@
|
|
|
5876
5987
|
}
|
|
5877
5988
|
}
|
|
5878
5989
|
],
|
|
5879
|
-
"name": "
|
|
5990
|
+
"name": "Ec2RunnerProvider",
|
|
5880
5991
|
"properties": [
|
|
5881
5992
|
{
|
|
5882
5993
|
"docs": {
|
|
@@ -5949,16 +6060,16 @@
|
|
|
5949
6060
|
}
|
|
5950
6061
|
}
|
|
5951
6062
|
],
|
|
5952
|
-
"symbolId": "src/providers/ec2:
|
|
6063
|
+
"symbolId": "src/providers/ec2:Ec2RunnerProvider"
|
|
5953
6064
|
},
|
|
5954
|
-
"@cloudsnorkel/cdk-github-runners.
|
|
6065
|
+
"@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps": {
|
|
5955
6066
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
5956
6067
|
"datatype": true,
|
|
5957
6068
|
"docs": {
|
|
5958
6069
|
"stability": "experimental",
|
|
5959
|
-
"summary": "Properties for {@link
|
|
6070
|
+
"summary": "Properties for {@link Ec2RunnerProvider} construct."
|
|
5960
6071
|
},
|
|
5961
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
6072
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps",
|
|
5962
6073
|
"interfaces": [
|
|
5963
6074
|
"@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
|
|
5964
6075
|
],
|
|
@@ -5967,7 +6078,7 @@
|
|
|
5967
6078
|
"filename": "src/providers/ec2.ts",
|
|
5968
6079
|
"line": 132
|
|
5969
6080
|
},
|
|
5970
|
-
"name": "
|
|
6081
|
+
"name": "Ec2RunnerProviderProps",
|
|
5971
6082
|
"properties": [
|
|
5972
6083
|
{
|
|
5973
6084
|
"abstract": true,
|
|
@@ -6185,9 +6296,55 @@
|
|
|
6185
6296
|
}
|
|
6186
6297
|
}
|
|
6187
6298
|
],
|
|
6188
|
-
"symbolId": "src/providers/ec2:
|
|
6299
|
+
"symbolId": "src/providers/ec2:Ec2RunnerProviderProps"
|
|
6189
6300
|
},
|
|
6190
6301
|
"@cloudsnorkel/cdk-github-runners.FargateRunner": {
|
|
6302
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
6303
|
+
"base": "@cloudsnorkel/cdk-github-runners.FargateRunnerProvider",
|
|
6304
|
+
"docs": {
|
|
6305
|
+
"deprecated": "use {@link FargateRunnerProvider}",
|
|
6306
|
+
"stability": "deprecated"
|
|
6307
|
+
},
|
|
6308
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.FargateRunner",
|
|
6309
|
+
"initializer": {
|
|
6310
|
+
"docs": {
|
|
6311
|
+
"stability": "experimental"
|
|
6312
|
+
},
|
|
6313
|
+
"locationInModule": {
|
|
6314
|
+
"filename": "src/providers/fargate.ts",
|
|
6315
|
+
"line": 288
|
|
6316
|
+
},
|
|
6317
|
+
"parameters": [
|
|
6318
|
+
{
|
|
6319
|
+
"name": "scope",
|
|
6320
|
+
"type": {
|
|
6321
|
+
"fqn": "constructs.Construct"
|
|
6322
|
+
}
|
|
6323
|
+
},
|
|
6324
|
+
{
|
|
6325
|
+
"name": "id",
|
|
6326
|
+
"type": {
|
|
6327
|
+
"primitive": "string"
|
|
6328
|
+
}
|
|
6329
|
+
},
|
|
6330
|
+
{
|
|
6331
|
+
"name": "props",
|
|
6332
|
+
"optional": true,
|
|
6333
|
+
"type": {
|
|
6334
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps"
|
|
6335
|
+
}
|
|
6336
|
+
}
|
|
6337
|
+
]
|
|
6338
|
+
},
|
|
6339
|
+
"kind": "class",
|
|
6340
|
+
"locationInModule": {
|
|
6341
|
+
"filename": "src/providers/fargate.ts",
|
|
6342
|
+
"line": 479
|
|
6343
|
+
},
|
|
6344
|
+
"name": "FargateRunner",
|
|
6345
|
+
"symbolId": "src/providers/fargate:FargateRunner"
|
|
6346
|
+
},
|
|
6347
|
+
"@cloudsnorkel/cdk-github-runners.FargateRunnerProvider": {
|
|
6191
6348
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
6192
6349
|
"base": "constructs.Construct",
|
|
6193
6350
|
"docs": {
|
|
@@ -6195,7 +6352,7 @@
|
|
|
6195
6352
|
"stability": "experimental",
|
|
6196
6353
|
"summary": "GitHub Actions runner provider using Fargate to execute jobs."
|
|
6197
6354
|
},
|
|
6198
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
6355
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProvider",
|
|
6199
6356
|
"initializer": {
|
|
6200
6357
|
"docs": {
|
|
6201
6358
|
"stability": "experimental"
|
|
@@ -6221,7 +6378,7 @@
|
|
|
6221
6378
|
"name": "props",
|
|
6222
6379
|
"optional": true,
|
|
6223
6380
|
"type": {
|
|
6224
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
6381
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps"
|
|
6225
6382
|
}
|
|
6226
6383
|
}
|
|
6227
6384
|
]
|
|
@@ -6399,7 +6556,7 @@
|
|
|
6399
6556
|
}
|
|
6400
6557
|
}
|
|
6401
6558
|
],
|
|
6402
|
-
"name": "
|
|
6559
|
+
"name": "FargateRunnerProvider",
|
|
6403
6560
|
"properties": [
|
|
6404
6561
|
{
|
|
6405
6562
|
"const": true,
|
|
@@ -6631,16 +6788,16 @@
|
|
|
6631
6788
|
}
|
|
6632
6789
|
}
|
|
6633
6790
|
],
|
|
6634
|
-
"symbolId": "src/providers/fargate:
|
|
6791
|
+
"symbolId": "src/providers/fargate:FargateRunnerProvider"
|
|
6635
6792
|
},
|
|
6636
|
-
"@cloudsnorkel/cdk-github-runners.
|
|
6793
|
+
"@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps": {
|
|
6637
6794
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
6638
6795
|
"datatype": true,
|
|
6639
6796
|
"docs": {
|
|
6640
6797
|
"stability": "experimental",
|
|
6641
6798
|
"summary": "Properties for FargateRunner."
|
|
6642
6799
|
},
|
|
6643
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
6800
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps",
|
|
6644
6801
|
"interfaces": [
|
|
6645
6802
|
"@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
|
|
6646
6803
|
],
|
|
@@ -6649,7 +6806,7 @@
|
|
|
6649
6806
|
"filename": "src/providers/fargate.ts",
|
|
6650
6807
|
"line": 31
|
|
6651
6808
|
},
|
|
6652
|
-
"name": "
|
|
6809
|
+
"name": "FargateRunnerProviderProps",
|
|
6653
6810
|
"properties": [
|
|
6654
6811
|
{
|
|
6655
6812
|
"abstract": true,
|
|
@@ -6905,7 +7062,7 @@
|
|
|
6905
7062
|
}
|
|
6906
7063
|
}
|
|
6907
7064
|
],
|
|
6908
|
-
"symbolId": "src/providers/fargate:
|
|
7065
|
+
"symbolId": "src/providers/fargate:FargateRunnerProviderProps"
|
|
6909
7066
|
},
|
|
6910
7067
|
"@cloudsnorkel/cdk-github-runners.GitHubRunners": {
|
|
6911
7068
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
@@ -6922,7 +7079,7 @@
|
|
|
6922
7079
|
},
|
|
6923
7080
|
"locationInModule": {
|
|
6924
7081
|
"filename": "src/runner.ts",
|
|
6925
|
-
"line":
|
|
7082
|
+
"line": 193
|
|
6926
7083
|
},
|
|
6927
7084
|
"parameters": [
|
|
6928
7085
|
{
|
|
@@ -6949,7 +7106,7 @@
|
|
|
6949
7106
|
"kind": "class",
|
|
6950
7107
|
"locationInModule": {
|
|
6951
7108
|
"filename": "src/runner.ts",
|
|
6952
|
-
"line":
|
|
7109
|
+
"line": 174
|
|
6953
7110
|
},
|
|
6954
7111
|
"methods": [
|
|
6955
7112
|
{
|
|
@@ -6960,7 +7117,7 @@
|
|
|
6960
7117
|
},
|
|
6961
7118
|
"locationInModule": {
|
|
6962
7119
|
"filename": "src/runner.ts",
|
|
6963
|
-
"line":
|
|
7120
|
+
"line": 567
|
|
6964
7121
|
},
|
|
6965
7122
|
"name": "metricFailed",
|
|
6966
7123
|
"parameters": [
|
|
@@ -6986,7 +7143,7 @@
|
|
|
6986
7143
|
},
|
|
6987
7144
|
"locationInModule": {
|
|
6988
7145
|
"filename": "src/runner.ts",
|
|
6989
|
-
"line":
|
|
7146
|
+
"line": 512
|
|
6990
7147
|
},
|
|
6991
7148
|
"name": "metricJobCompleted",
|
|
6992
7149
|
"parameters": [
|
|
@@ -7012,7 +7169,7 @@
|
|
|
7012
7169
|
},
|
|
7013
7170
|
"locationInModule": {
|
|
7014
7171
|
"filename": "src/runner.ts",
|
|
7015
|
-
"line":
|
|
7172
|
+
"line": 558
|
|
7016
7173
|
},
|
|
7017
7174
|
"name": "metricSucceeded",
|
|
7018
7175
|
"parameters": [
|
|
@@ -7038,7 +7195,7 @@
|
|
|
7038
7195
|
},
|
|
7039
7196
|
"locationInModule": {
|
|
7040
7197
|
"filename": "src/runner.ts",
|
|
7041
|
-
"line":
|
|
7198
|
+
"line": 574
|
|
7042
7199
|
},
|
|
7043
7200
|
"name": "metricTime",
|
|
7044
7201
|
"parameters": [
|
|
@@ -7067,7 +7224,7 @@
|
|
|
7067
7224
|
"immutable": true,
|
|
7068
7225
|
"locationInModule": {
|
|
7069
7226
|
"filename": "src/runner.ts",
|
|
7070
|
-
"line":
|
|
7227
|
+
"line": 178
|
|
7071
7228
|
},
|
|
7072
7229
|
"name": "providers",
|
|
7073
7230
|
"type": {
|
|
@@ -7087,7 +7244,7 @@
|
|
|
7087
7244
|
"immutable": true,
|
|
7088
7245
|
"locationInModule": {
|
|
7089
7246
|
"filename": "src/runner.ts",
|
|
7090
|
-
"line":
|
|
7247
|
+
"line": 183
|
|
7091
7248
|
},
|
|
7092
7249
|
"name": "secrets",
|
|
7093
7250
|
"type": {
|
|
@@ -7101,7 +7258,7 @@
|
|
|
7101
7258
|
"immutable": true,
|
|
7102
7259
|
"locationInModule": {
|
|
7103
7260
|
"filename": "src/runner.ts",
|
|
7104
|
-
"line":
|
|
7261
|
+
"line": 193
|
|
7105
7262
|
},
|
|
7106
7263
|
"name": "props",
|
|
7107
7264
|
"optional": true,
|
|
@@ -7123,7 +7280,7 @@
|
|
|
7123
7280
|
"kind": "interface",
|
|
7124
7281
|
"locationInModule": {
|
|
7125
7282
|
"filename": "src/runner.ts",
|
|
7126
|
-
"line":
|
|
7283
|
+
"line": 29
|
|
7127
7284
|
},
|
|
7128
7285
|
"name": "GitHubRunnersProps",
|
|
7129
7286
|
"properties": [
|
|
@@ -7138,7 +7295,7 @@
|
|
|
7138
7295
|
"immutable": true,
|
|
7139
7296
|
"locationInModule": {
|
|
7140
7297
|
"filename": "src/runner.ts",
|
|
7141
|
-
"line":
|
|
7298
|
+
"line": 52
|
|
7142
7299
|
},
|
|
7143
7300
|
"name": "allowPublicSubnet",
|
|
7144
7301
|
"optional": true,
|
|
@@ -7156,7 +7313,7 @@
|
|
|
7156
7313
|
"immutable": true,
|
|
7157
7314
|
"locationInModule": {
|
|
7158
7315
|
"filename": "src/runner.ts",
|
|
7159
|
-
"line":
|
|
7316
|
+
"line": 84
|
|
7160
7317
|
},
|
|
7161
7318
|
"name": "extraCertificates",
|
|
7162
7319
|
"optional": true,
|
|
@@ -7175,7 +7332,7 @@
|
|
|
7175
7332
|
"immutable": true,
|
|
7176
7333
|
"locationInModule": {
|
|
7177
7334
|
"filename": "src/runner.ts",
|
|
7178
|
-
"line":
|
|
7335
|
+
"line": 91
|
|
7179
7336
|
},
|
|
7180
7337
|
"name": "idleTimeout",
|
|
7181
7338
|
"optional": true,
|
|
@@ -7193,7 +7350,7 @@
|
|
|
7193
7350
|
"immutable": true,
|
|
7194
7351
|
"locationInModule": {
|
|
7195
7352
|
"filename": "src/runner.ts",
|
|
7196
|
-
"line":
|
|
7353
|
+
"line": 98
|
|
7197
7354
|
},
|
|
7198
7355
|
"name": "logOptions",
|
|
7199
7356
|
"optional": true,
|
|
@@ -7212,7 +7369,7 @@
|
|
|
7212
7369
|
"immutable": true,
|
|
7213
7370
|
"locationInModule": {
|
|
7214
7371
|
"filename": "src/runner.ts",
|
|
7215
|
-
"line":
|
|
7372
|
+
"line": 35
|
|
7216
7373
|
},
|
|
7217
7374
|
"name": "providers",
|
|
7218
7375
|
"optional": true,
|
|
@@ -7235,7 +7392,7 @@
|
|
|
7235
7392
|
"immutable": true,
|
|
7236
7393
|
"locationInModule": {
|
|
7237
7394
|
"filename": "src/runner.ts",
|
|
7238
|
-
"line":
|
|
7395
|
+
"line": 57
|
|
7239
7396
|
},
|
|
7240
7397
|
"name": "securityGroup",
|
|
7241
7398
|
"optional": true,
|
|
@@ -7253,7 +7410,7 @@
|
|
|
7253
7410
|
"immutable": true,
|
|
7254
7411
|
"locationInModule": {
|
|
7255
7412
|
"filename": "src/runner.ts",
|
|
7256
|
-
"line":
|
|
7413
|
+
"line": 40
|
|
7257
7414
|
},
|
|
7258
7415
|
"name": "vpc",
|
|
7259
7416
|
"optional": true,
|
|
@@ -7271,7 +7428,7 @@
|
|
|
7271
7428
|
"immutable": true,
|
|
7272
7429
|
"locationInModule": {
|
|
7273
7430
|
"filename": "src/runner.ts",
|
|
7274
|
-
"line":
|
|
7431
|
+
"line": 45
|
|
7275
7432
|
},
|
|
7276
7433
|
"name": "vpcSubnets",
|
|
7277
7434
|
"optional": true,
|
|
@@ -7790,7 +7947,7 @@
|
|
|
7790
7947
|
"kind": "interface",
|
|
7791
7948
|
"locationInModule": {
|
|
7792
7949
|
"filename": "src/providers/image-builders/common.ts",
|
|
7793
|
-
"line":
|
|
7950
|
+
"line": 71
|
|
7794
7951
|
},
|
|
7795
7952
|
"name": "ImageBuilderAsset",
|
|
7796
7953
|
"properties": [
|
|
@@ -7803,7 +7960,7 @@
|
|
|
7803
7960
|
"immutable": true,
|
|
7804
7961
|
"locationInModule": {
|
|
7805
7962
|
"filename": "src/providers/image-builders/common.ts",
|
|
7806
|
-
"line":
|
|
7963
|
+
"line": 80
|
|
7807
7964
|
},
|
|
7808
7965
|
"name": "asset",
|
|
7809
7966
|
"type": {
|
|
@@ -7819,7 +7976,7 @@
|
|
|
7819
7976
|
"immutable": true,
|
|
7820
7977
|
"locationInModule": {
|
|
7821
7978
|
"filename": "src/providers/image-builders/common.ts",
|
|
7822
|
-
"line":
|
|
7979
|
+
"line": 75
|
|
7823
7980
|
},
|
|
7824
7981
|
"name": "path",
|
|
7825
7982
|
"type": {
|
|
@@ -7844,7 +8001,7 @@
|
|
|
7844
8001
|
},
|
|
7845
8002
|
"locationInModule": {
|
|
7846
8003
|
"filename": "src/providers/image-builders/common.ts",
|
|
7847
|
-
"line":
|
|
8004
|
+
"line": 145
|
|
7848
8005
|
},
|
|
7849
8006
|
"parameters": [
|
|
7850
8007
|
{
|
|
@@ -7870,7 +8027,7 @@
|
|
|
7870
8027
|
"kind": "class",
|
|
7871
8028
|
"locationInModule": {
|
|
7872
8029
|
"filename": "src/providers/image-builders/common.ts",
|
|
7873
|
-
"line":
|
|
8030
|
+
"line": 132
|
|
7874
8031
|
},
|
|
7875
8032
|
"methods": [
|
|
7876
8033
|
{
|
|
@@ -7880,7 +8037,7 @@
|
|
|
7880
8037
|
},
|
|
7881
8038
|
"locationInModule": {
|
|
7882
8039
|
"filename": "src/providers/image-builders/common.ts",
|
|
7883
|
-
"line":
|
|
8040
|
+
"line": 238
|
|
7884
8041
|
},
|
|
7885
8042
|
"name": "grantAssetsRead",
|
|
7886
8043
|
"parameters": [
|
|
@@ -7898,7 +8055,7 @@
|
|
|
7898
8055
|
},
|
|
7899
8056
|
"locationInModule": {
|
|
7900
8057
|
"filename": "src/providers/image-builders/common.ts",
|
|
7901
|
-
"line":
|
|
8058
|
+
"line": 37
|
|
7902
8059
|
},
|
|
7903
8060
|
"name": "version",
|
|
7904
8061
|
"parameters": [
|
|
@@ -7939,7 +8096,7 @@
|
|
|
7939
8096
|
"immutable": true,
|
|
7940
8097
|
"locationInModule": {
|
|
7941
8098
|
"filename": "src/providers/image-builders/common.ts",
|
|
7942
|
-
"line":
|
|
8099
|
+
"line": 136
|
|
7943
8100
|
},
|
|
7944
8101
|
"name": "arn",
|
|
7945
8102
|
"type": {
|
|
@@ -7954,7 +8111,7 @@
|
|
|
7954
8111
|
"immutable": true,
|
|
7955
8112
|
"locationInModule": {
|
|
7956
8113
|
"filename": "src/providers/image-builders/common.ts",
|
|
7957
|
-
"line":
|
|
8114
|
+
"line": 141
|
|
7958
8115
|
},
|
|
7959
8116
|
"name": "platform",
|
|
7960
8117
|
"type": {
|
|
@@ -7975,7 +8132,7 @@
|
|
|
7975
8132
|
"kind": "interface",
|
|
7976
8133
|
"locationInModule": {
|
|
7977
8134
|
"filename": "src/providers/image-builders/common.ts",
|
|
7978
|
-
"line":
|
|
8135
|
+
"line": 86
|
|
7979
8136
|
},
|
|
7980
8137
|
"name": "ImageBuilderComponentProperties",
|
|
7981
8138
|
"properties": [
|
|
@@ -7989,7 +8146,7 @@
|
|
|
7989
8146
|
"immutable": true,
|
|
7990
8147
|
"locationInModule": {
|
|
7991
8148
|
"filename": "src/providers/image-builders/common.ts",
|
|
7992
|
-
"line":
|
|
8149
|
+
"line": 107
|
|
7993
8150
|
},
|
|
7994
8151
|
"name": "commands",
|
|
7995
8152
|
"type": {
|
|
@@ -8010,7 +8167,7 @@
|
|
|
8010
8167
|
"immutable": true,
|
|
8011
8168
|
"locationInModule": {
|
|
8012
8169
|
"filename": "src/providers/image-builders/common.ts",
|
|
8013
|
-
"line":
|
|
8170
|
+
"line": 100
|
|
8014
8171
|
},
|
|
8015
8172
|
"name": "description",
|
|
8016
8173
|
"type": {
|
|
@@ -8026,7 +8183,7 @@
|
|
|
8026
8183
|
"immutable": true,
|
|
8027
8184
|
"locationInModule": {
|
|
8028
8185
|
"filename": "src/providers/image-builders/common.ts",
|
|
8029
|
-
"line":
|
|
8186
|
+
"line": 95
|
|
8030
8187
|
},
|
|
8031
8188
|
"name": "displayName",
|
|
8032
8189
|
"type": {
|
|
@@ -8043,7 +8200,7 @@
|
|
|
8043
8200
|
"immutable": true,
|
|
8044
8201
|
"locationInModule": {
|
|
8045
8202
|
"filename": "src/providers/image-builders/common.ts",
|
|
8046
|
-
"line":
|
|
8203
|
+
"line": 90
|
|
8047
8204
|
},
|
|
8048
8205
|
"name": "platform",
|
|
8049
8206
|
"type": {
|
|
@@ -8059,7 +8216,7 @@
|
|
|
8059
8216
|
"immutable": true,
|
|
8060
8217
|
"locationInModule": {
|
|
8061
8218
|
"filename": "src/providers/image-builders/common.ts",
|
|
8062
|
-
"line":
|
|
8219
|
+
"line": 112
|
|
8063
8220
|
},
|
|
8064
8221
|
"name": "assets",
|
|
8065
8222
|
"optional": true,
|
|
@@ -8076,6 +8233,52 @@
|
|
|
8076
8233
|
"symbolId": "src/providers/image-builders/common:ImageBuilderComponentProperties"
|
|
8077
8234
|
},
|
|
8078
8235
|
"@cloudsnorkel/cdk-github-runners.LambdaRunner": {
|
|
8236
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
8237
|
+
"base": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider",
|
|
8238
|
+
"docs": {
|
|
8239
|
+
"deprecated": "use {@link LambdaRunnerProvider}",
|
|
8240
|
+
"stability": "deprecated"
|
|
8241
|
+
},
|
|
8242
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunner",
|
|
8243
|
+
"initializer": {
|
|
8244
|
+
"docs": {
|
|
8245
|
+
"stability": "experimental"
|
|
8246
|
+
},
|
|
8247
|
+
"locationInModule": {
|
|
8248
|
+
"filename": "src/providers/lambda.ts",
|
|
8249
|
+
"line": 174
|
|
8250
|
+
},
|
|
8251
|
+
"parameters": [
|
|
8252
|
+
{
|
|
8253
|
+
"name": "scope",
|
|
8254
|
+
"type": {
|
|
8255
|
+
"fqn": "constructs.Construct"
|
|
8256
|
+
}
|
|
8257
|
+
},
|
|
8258
|
+
{
|
|
8259
|
+
"name": "id",
|
|
8260
|
+
"type": {
|
|
8261
|
+
"primitive": "string"
|
|
8262
|
+
}
|
|
8263
|
+
},
|
|
8264
|
+
{
|
|
8265
|
+
"name": "props",
|
|
8266
|
+
"optional": true,
|
|
8267
|
+
"type": {
|
|
8268
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps"
|
|
8269
|
+
}
|
|
8270
|
+
}
|
|
8271
|
+
]
|
|
8272
|
+
},
|
|
8273
|
+
"kind": "class",
|
|
8274
|
+
"locationInModule": {
|
|
8275
|
+
"filename": "src/providers/lambda.ts",
|
|
8276
|
+
"line": 400
|
|
8277
|
+
},
|
|
8278
|
+
"name": "LambdaRunner",
|
|
8279
|
+
"symbolId": "src/providers/lambda:LambdaRunner"
|
|
8280
|
+
},
|
|
8281
|
+
"@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider": {
|
|
8079
8282
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
8080
8283
|
"base": "constructs.Construct",
|
|
8081
8284
|
"docs": {
|
|
@@ -8083,14 +8286,14 @@
|
|
|
8083
8286
|
"stability": "experimental",
|
|
8084
8287
|
"summary": "GitHub Actions runner provider using Lambda to execute jobs."
|
|
8085
8288
|
},
|
|
8086
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
8289
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider",
|
|
8087
8290
|
"initializer": {
|
|
8088
8291
|
"docs": {
|
|
8089
8292
|
"stability": "experimental"
|
|
8090
8293
|
},
|
|
8091
8294
|
"locationInModule": {
|
|
8092
8295
|
"filename": "src/providers/lambda.ts",
|
|
8093
|
-
"line":
|
|
8296
|
+
"line": 174
|
|
8094
8297
|
},
|
|
8095
8298
|
"parameters": [
|
|
8096
8299
|
{
|
|
@@ -8109,7 +8312,7 @@
|
|
|
8109
8312
|
"name": "props",
|
|
8110
8313
|
"optional": true,
|
|
8111
8314
|
"type": {
|
|
8112
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
8315
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps"
|
|
8113
8316
|
}
|
|
8114
8317
|
}
|
|
8115
8318
|
]
|
|
@@ -8120,7 +8323,7 @@
|
|
|
8120
8323
|
"kind": "class",
|
|
8121
8324
|
"locationInModule": {
|
|
8122
8325
|
"filename": "src/providers/lambda.ts",
|
|
8123
|
-
"line":
|
|
8326
|
+
"line": 125
|
|
8124
8327
|
},
|
|
8125
8328
|
"methods": [
|
|
8126
8329
|
{
|
|
@@ -8170,7 +8373,7 @@
|
|
|
8170
8373
|
},
|
|
8171
8374
|
"locationInModule": {
|
|
8172
8375
|
"filename": "src/providers/lambda.ts",
|
|
8173
|
-
"line":
|
|
8376
|
+
"line": 255
|
|
8174
8377
|
},
|
|
8175
8378
|
"name": "getStepFunctionTask",
|
|
8176
8379
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8199,7 +8402,7 @@
|
|
|
8199
8402
|
},
|
|
8200
8403
|
"locationInModule": {
|
|
8201
8404
|
"filename": "src/providers/lambda.ts",
|
|
8202
|
-
"line":
|
|
8405
|
+
"line": 318
|
|
8203
8406
|
},
|
|
8204
8407
|
"name": "grantStateMachine",
|
|
8205
8408
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8268,7 +8471,7 @@
|
|
|
8268
8471
|
},
|
|
8269
8472
|
"locationInModule": {
|
|
8270
8473
|
"filename": "src/providers/lambda.ts",
|
|
8271
|
-
"line":
|
|
8474
|
+
"line": 321
|
|
8272
8475
|
},
|
|
8273
8476
|
"name": "status",
|
|
8274
8477
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8287,7 +8490,7 @@
|
|
|
8287
8490
|
}
|
|
8288
8491
|
}
|
|
8289
8492
|
],
|
|
8290
|
-
"name": "
|
|
8493
|
+
"name": "LambdaRunnerProvider",
|
|
8291
8494
|
"properties": [
|
|
8292
8495
|
{
|
|
8293
8496
|
"const": true,
|
|
@@ -8299,7 +8502,7 @@
|
|
|
8299
8502
|
"immutable": true,
|
|
8300
8503
|
"locationInModule": {
|
|
8301
8504
|
"filename": "src/providers/lambda.ts",
|
|
8302
|
-
"line":
|
|
8505
|
+
"line": 142
|
|
8303
8506
|
},
|
|
8304
8507
|
"name": "LINUX_ARM64_DOCKERFILE_PATH",
|
|
8305
8508
|
"static": true,
|
|
@@ -8317,7 +8520,7 @@
|
|
|
8317
8520
|
"immutable": true,
|
|
8318
8521
|
"locationInModule": {
|
|
8319
8522
|
"filename": "src/providers/lambda.ts",
|
|
8320
|
-
"line":
|
|
8523
|
+
"line": 133
|
|
8321
8524
|
},
|
|
8322
8525
|
"name": "LINUX_X64_DOCKERFILE_PATH",
|
|
8323
8526
|
"static": true,
|
|
@@ -8333,7 +8536,7 @@
|
|
|
8333
8536
|
"immutable": true,
|
|
8334
8537
|
"locationInModule": {
|
|
8335
8538
|
"filename": "src/providers/lambda.ts",
|
|
8336
|
-
"line":
|
|
8539
|
+
"line": 244
|
|
8337
8540
|
},
|
|
8338
8541
|
"name": "connections",
|
|
8339
8542
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -8349,7 +8552,7 @@
|
|
|
8349
8552
|
"immutable": true,
|
|
8350
8553
|
"locationInModule": {
|
|
8351
8554
|
"filename": "src/providers/lambda.ts",
|
|
8352
|
-
"line":
|
|
8555
|
+
"line": 147
|
|
8353
8556
|
},
|
|
8354
8557
|
"name": "function",
|
|
8355
8558
|
"type": {
|
|
@@ -8364,7 +8567,7 @@
|
|
|
8364
8567
|
"immutable": true,
|
|
8365
8568
|
"locationInModule": {
|
|
8366
8569
|
"filename": "src/providers/lambda.ts",
|
|
8367
|
-
"line":
|
|
8570
|
+
"line": 157
|
|
8368
8571
|
},
|
|
8369
8572
|
"name": "grantPrincipal",
|
|
8370
8573
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -8381,7 +8584,7 @@
|
|
|
8381
8584
|
"immutable": true,
|
|
8382
8585
|
"locationInModule": {
|
|
8383
8586
|
"filename": "src/providers/lambda.ts",
|
|
8384
|
-
"line":
|
|
8587
|
+
"line": 162
|
|
8385
8588
|
},
|
|
8386
8589
|
"name": "image",
|
|
8387
8590
|
"type": {
|
|
@@ -8396,7 +8599,7 @@
|
|
|
8396
8599
|
"immutable": true,
|
|
8397
8600
|
"locationInModule": {
|
|
8398
8601
|
"filename": "src/providers/lambda.ts",
|
|
8399
|
-
"line":
|
|
8602
|
+
"line": 152
|
|
8400
8603
|
},
|
|
8401
8604
|
"name": "labels",
|
|
8402
8605
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8418,7 +8621,7 @@
|
|
|
8418
8621
|
"immutable": true,
|
|
8419
8622
|
"locationInModule": {
|
|
8420
8623
|
"filename": "src/providers/lambda.ts",
|
|
8421
|
-
"line":
|
|
8624
|
+
"line": 169
|
|
8422
8625
|
},
|
|
8423
8626
|
"name": "logGroup",
|
|
8424
8627
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8427,24 +8630,24 @@
|
|
|
8427
8630
|
}
|
|
8428
8631
|
}
|
|
8429
8632
|
],
|
|
8430
|
-
"symbolId": "src/providers/lambda:
|
|
8633
|
+
"symbolId": "src/providers/lambda:LambdaRunnerProvider"
|
|
8431
8634
|
},
|
|
8432
|
-
"@cloudsnorkel/cdk-github-runners.
|
|
8635
|
+
"@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps": {
|
|
8433
8636
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
8434
8637
|
"datatype": true,
|
|
8435
8638
|
"docs": {
|
|
8436
8639
|
"stability": "experimental"
|
|
8437
8640
|
},
|
|
8438
|
-
"fqn": "@cloudsnorkel/cdk-github-runners.
|
|
8641
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps",
|
|
8439
8642
|
"interfaces": [
|
|
8440
8643
|
"@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
|
|
8441
8644
|
],
|
|
8442
8645
|
"kind": "interface",
|
|
8443
8646
|
"locationInModule": {
|
|
8444
8647
|
"filename": "src/providers/lambda.ts",
|
|
8445
|
-
"line":
|
|
8648
|
+
"line": 31
|
|
8446
8649
|
},
|
|
8447
|
-
"name": "
|
|
8650
|
+
"name": "LambdaRunnerProviderProps",
|
|
8448
8651
|
"properties": [
|
|
8449
8652
|
{
|
|
8450
8653
|
"abstract": true,
|
|
@@ -8456,7 +8659,7 @@
|
|
|
8456
8659
|
"immutable": true,
|
|
8457
8660
|
"locationInModule": {
|
|
8458
8661
|
"filename": "src/providers/lambda.ts",
|
|
8459
|
-
"line":
|
|
8662
|
+
"line": 76
|
|
8460
8663
|
},
|
|
8461
8664
|
"name": "ephemeralStorageSize",
|
|
8462
8665
|
"optional": true,
|
|
@@ -8476,7 +8679,7 @@
|
|
|
8476
8679
|
"immutable": true,
|
|
8477
8680
|
"locationInModule": {
|
|
8478
8681
|
"filename": "src/providers/lambda.ts",
|
|
8479
|
-
"line":
|
|
8682
|
+
"line": 40
|
|
8480
8683
|
},
|
|
8481
8684
|
"name": "imageBuilder",
|
|
8482
8685
|
"optional": true,
|
|
@@ -8495,7 +8698,7 @@
|
|
|
8495
8698
|
"immutable": true,
|
|
8496
8699
|
"locationInModule": {
|
|
8497
8700
|
"filename": "src/providers/lambda.ts",
|
|
8498
|
-
"line":
|
|
8701
|
+
"line": 48
|
|
8499
8702
|
},
|
|
8500
8703
|
"name": "label",
|
|
8501
8704
|
"optional": true,
|
|
@@ -8514,7 +8717,7 @@
|
|
|
8514
8717
|
"immutable": true,
|
|
8515
8718
|
"locationInModule": {
|
|
8516
8719
|
"filename": "src/providers/lambda.ts",
|
|
8517
|
-
"line":
|
|
8720
|
+
"line": 59
|
|
8518
8721
|
},
|
|
8519
8722
|
"name": "labels",
|
|
8520
8723
|
"optional": true,
|
|
@@ -8538,7 +8741,7 @@
|
|
|
8538
8741
|
"immutable": true,
|
|
8539
8742
|
"locationInModule": {
|
|
8540
8743
|
"filename": "src/providers/lambda.ts",
|
|
8541
|
-
"line":
|
|
8744
|
+
"line": 69
|
|
8542
8745
|
},
|
|
8543
8746
|
"name": "memorySize",
|
|
8544
8747
|
"optional": true,
|
|
@@ -8557,7 +8760,7 @@
|
|
|
8557
8760
|
"immutable": true,
|
|
8558
8761
|
"locationInModule": {
|
|
8559
8762
|
"filename": "src/providers/lambda.ts",
|
|
8560
|
-
"line":
|
|
8763
|
+
"line": 101
|
|
8561
8764
|
},
|
|
8562
8765
|
"name": "securityGroup",
|
|
8563
8766
|
"optional": true,
|
|
@@ -8575,7 +8778,7 @@
|
|
|
8575
8778
|
"immutable": true,
|
|
8576
8779
|
"locationInModule": {
|
|
8577
8780
|
"filename": "src/providers/lambda.ts",
|
|
8578
|
-
"line":
|
|
8781
|
+
"line": 108
|
|
8579
8782
|
},
|
|
8580
8783
|
"name": "securityGroups",
|
|
8581
8784
|
"optional": true,
|
|
@@ -8598,7 +8801,7 @@
|
|
|
8598
8801
|
"immutable": true,
|
|
8599
8802
|
"locationInModule": {
|
|
8600
8803
|
"filename": "src/providers/lambda.ts",
|
|
8601
|
-
"line":
|
|
8804
|
+
"line": 115
|
|
8602
8805
|
},
|
|
8603
8806
|
"name": "subnetSelection",
|
|
8604
8807
|
"optional": true,
|
|
@@ -8617,7 +8820,7 @@
|
|
|
8617
8820
|
"immutable": true,
|
|
8618
8821
|
"locationInModule": {
|
|
8619
8822
|
"filename": "src/providers/lambda.ts",
|
|
8620
|
-
"line":
|
|
8823
|
+
"line": 85
|
|
8621
8824
|
},
|
|
8622
8825
|
"name": "timeout",
|
|
8623
8826
|
"optional": true,
|
|
@@ -8635,7 +8838,7 @@
|
|
|
8635
8838
|
"immutable": true,
|
|
8636
8839
|
"locationInModule": {
|
|
8637
8840
|
"filename": "src/providers/lambda.ts",
|
|
8638
|
-
"line":
|
|
8841
|
+
"line": 92
|
|
8639
8842
|
},
|
|
8640
8843
|
"name": "vpc",
|
|
8641
8844
|
"optional": true,
|
|
@@ -8644,7 +8847,7 @@
|
|
|
8644
8847
|
}
|
|
8645
8848
|
}
|
|
8646
8849
|
],
|
|
8647
|
-
"symbolId": "src/providers/lambda:
|
|
8850
|
+
"symbolId": "src/providers/lambda:LambdaRunnerProviderProps"
|
|
8648
8851
|
},
|
|
8649
8852
|
"@cloudsnorkel/cdk-github-runners.LinuxUbuntuComponents": {
|
|
8650
8853
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
@@ -8974,7 +9177,7 @@
|
|
|
8974
9177
|
"kind": "interface",
|
|
8975
9178
|
"locationInModule": {
|
|
8976
9179
|
"filename": "src/runner.ts",
|
|
8977
|
-
"line":
|
|
9180
|
+
"line": 104
|
|
8978
9181
|
},
|
|
8979
9182
|
"name": "LogOptions",
|
|
8980
9183
|
"properties": [
|
|
@@ -8988,7 +9191,7 @@
|
|
|
8988
9191
|
"immutable": true,
|
|
8989
9192
|
"locationInModule": {
|
|
8990
9193
|
"filename": "src/runner.ts",
|
|
8991
|
-
"line":
|
|
9194
|
+
"line": 115
|
|
8992
9195
|
},
|
|
8993
9196
|
"name": "includeExecutionData",
|
|
8994
9197
|
"optional": true,
|
|
@@ -9006,7 +9209,7 @@
|
|
|
9006
9209
|
"immutable": true,
|
|
9007
9210
|
"locationInModule": {
|
|
9008
9211
|
"filename": "src/runner.ts",
|
|
9009
|
-
"line":
|
|
9212
|
+
"line": 122
|
|
9010
9213
|
},
|
|
9011
9214
|
"name": "level",
|
|
9012
9215
|
"optional": true,
|
|
@@ -9023,7 +9226,7 @@
|
|
|
9023
9226
|
"immutable": true,
|
|
9024
9227
|
"locationInModule": {
|
|
9025
9228
|
"filename": "src/runner.ts",
|
|
9026
|
-
"line":
|
|
9229
|
+
"line": 108
|
|
9027
9230
|
},
|
|
9028
9231
|
"name": "logGroupName",
|
|
9029
9232
|
"optional": true,
|
|
@@ -9042,7 +9245,7 @@
|
|
|
9042
9245
|
"immutable": true,
|
|
9043
9246
|
"locationInModule": {
|
|
9044
9247
|
"filename": "src/runner.ts",
|
|
9045
|
-
"line":
|
|
9248
|
+
"line": 131
|
|
9046
9249
|
},
|
|
9047
9250
|
"name": "logRetention",
|
|
9048
9251
|
"optional": true,
|
|
@@ -10258,6 +10461,6 @@
|
|
|
10258
10461
|
"symbolId": "src/providers/image-builders/windows-components:WindowsComponents"
|
|
10259
10462
|
}
|
|
10260
10463
|
},
|
|
10261
|
-
"version": "0.8.
|
|
10262
|
-
"fingerprint": "
|
|
10464
|
+
"version": "0.8.2",
|
|
10465
|
+
"fingerprint": "bNthPy5heboN527fQeALrmO+UpHzBXMira4OVkTf/ec="
|
|
10263
10466
|
}
|