@cloudsnorkel/cdk-github-runners 0.5.1 → 0.5.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 +0 -1
- package/.jsii +77 -77
- package/API.md +0 -10
- package/README.md +48 -12
- package/lib/lambdas/aws-image-builder-versioner/index.js +81 -41
- package/lib/lambdas/delete-runner/index.js +7 -2
- package/lib/lambdas/setup/index.html +1 -1
- package/lib/lambdas/setup/index.js +7 -2
- package/lib/lambdas/status/index.js +7 -2
- package/lib/lambdas/token-retriever/index.js +7 -2
- package/lib/lambdas/update-lambda/index.js +25236 -27
- package/lib/providers/codebuild.js +7 -5
- package/lib/providers/common.js +3 -3
- package/lib/providers/docker-images/codebuild/linux-arm64/Dockerfile +2 -0
- package/lib/providers/docker-images/codebuild/linux-x64/Dockerfile +2 -0
- package/lib/providers/docker-images/fargate/linux-arm64/Dockerfile +1 -0
- package/lib/providers/docker-images/fargate/linux-x64/Dockerfile +1 -0
- package/lib/providers/docker-images/lambda/linux-arm64/Dockerfile +1 -0
- package/lib/providers/docker-images/lambda/linux-arm64/runner.js +1 -0
- package/lib/providers/docker-images/lambda/linux-arm64/runner.sh +2 -2
- package/lib/providers/docker-images/lambda/linux-x64/Dockerfile +1 -0
- package/lib/providers/docker-images/lambda/linux-x64/runner.js +1 -0
- package/lib/providers/docker-images/lambda/linux-x64/runner.sh +2 -2
- package/lib/providers/fargate.d.ts +0 -10
- package/lib/providers/fargate.js +4 -4
- package/lib/providers/image-builders/codebuild.js +4 -2
- package/lib/providers/image-builders/container.js +7 -4
- package/lib/providers/image-builders/static.js +1 -1
- package/lib/providers/lambda.js +3 -15
- package/lib/runner.js +1 -1
- package/lib/secrets.js +1 -1
- package/package.json +13 -13
package/.jsii
CHANGED
|
@@ -3010,7 +3010,7 @@
|
|
|
3010
3010
|
"stability": "experimental"
|
|
3011
3011
|
},
|
|
3012
3012
|
"homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
|
|
3013
|
-
"jsiiVersion": "1.
|
|
3013
|
+
"jsiiVersion": "1.69.0 (build f656c31)",
|
|
3014
3014
|
"keywords": [
|
|
3015
3015
|
"aws",
|
|
3016
3016
|
"aws-cdk",
|
|
@@ -3034,7 +3034,7 @@
|
|
|
3034
3034
|
},
|
|
3035
3035
|
"name": "@cloudsnorkel/cdk-github-runners",
|
|
3036
3036
|
"readme": {
|
|
3037
|
-
"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| | CodeBuild | Fargate | Lambda |\n|------------------|----------------------------|----------------|---------------|\n| **Time limit** | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | 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 |\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: FargateProvider.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 FargateProvider(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\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\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. 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\n3. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n4. 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-runner-controller/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-runner-controller/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"
|
|
3037
|
+
"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| | CodeBuild | Fargate | Lambda |\n|------------------|----------------------------|----------------|---------------|\n| **Time limit** | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | 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 |\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. 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\n3. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n4. 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-runner-controller/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-runner-controller/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"
|
|
3038
3038
|
},
|
|
3039
3039
|
"repository": {
|
|
3040
3040
|
"type": "git",
|
|
@@ -3688,7 +3688,7 @@
|
|
|
3688
3688
|
},
|
|
3689
3689
|
"locationInModule": {
|
|
3690
3690
|
"filename": "src/providers/codebuild.ts",
|
|
3691
|
-
"line":
|
|
3691
|
+
"line": 251
|
|
3692
3692
|
},
|
|
3693
3693
|
"name": "getStepFunctionTask",
|
|
3694
3694
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -3756,7 +3756,7 @@
|
|
|
3756
3756
|
"immutable": true,
|
|
3757
3757
|
"locationInModule": {
|
|
3758
3758
|
"filename": "src/providers/codebuild.ts",
|
|
3759
|
-
"line":
|
|
3759
|
+
"line": 291
|
|
3760
3760
|
},
|
|
3761
3761
|
"name": "connections",
|
|
3762
3762
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -4028,7 +4028,7 @@
|
|
|
4028
4028
|
},
|
|
4029
4029
|
"locationInModule": {
|
|
4030
4030
|
"filename": "src/providers/image-builders/container.ts",
|
|
4031
|
-
"line":
|
|
4031
|
+
"line": 437
|
|
4032
4032
|
},
|
|
4033
4033
|
"parameters": [
|
|
4034
4034
|
{
|
|
@@ -4058,7 +4058,7 @@
|
|
|
4058
4058
|
"kind": "class",
|
|
4059
4059
|
"locationInModule": {
|
|
4060
4060
|
"filename": "src/providers/image-builders/container.ts",
|
|
4061
|
-
"line":
|
|
4061
|
+
"line": 417
|
|
4062
4062
|
},
|
|
4063
4063
|
"methods": [
|
|
4064
4064
|
{
|
|
@@ -4068,7 +4068,7 @@
|
|
|
4068
4068
|
},
|
|
4069
4069
|
"locationInModule": {
|
|
4070
4070
|
"filename": "src/providers/image-builders/container.ts",
|
|
4071
|
-
"line":
|
|
4071
|
+
"line": 579
|
|
4072
4072
|
},
|
|
4073
4073
|
"name": "addComponent",
|
|
4074
4074
|
"parameters": [
|
|
@@ -4088,7 +4088,7 @@
|
|
|
4088
4088
|
},
|
|
4089
4089
|
"locationInModule": {
|
|
4090
4090
|
"filename": "src/providers/image-builders/container.ts",
|
|
4091
|
-
"line":
|
|
4091
|
+
"line": 596
|
|
4092
4092
|
},
|
|
4093
4093
|
"name": "addExtraCertificates",
|
|
4094
4094
|
"parameters": [
|
|
@@ -4110,7 +4110,7 @@
|
|
|
4110
4110
|
},
|
|
4111
4111
|
"locationInModule": {
|
|
4112
4112
|
"filename": "src/providers/image-builders/container.ts",
|
|
4113
|
-
"line":
|
|
4113
|
+
"line": 617
|
|
4114
4114
|
},
|
|
4115
4115
|
"name": "bind",
|
|
4116
4116
|
"overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
|
|
@@ -4128,7 +4128,7 @@
|
|
|
4128
4128
|
},
|
|
4129
4129
|
"locationInModule": {
|
|
4130
4130
|
"filename": "src/providers/image-builders/container.ts",
|
|
4131
|
-
"line":
|
|
4131
|
+
"line": 565
|
|
4132
4132
|
},
|
|
4133
4133
|
"name": "prependComponent",
|
|
4134
4134
|
"parameters": [
|
|
@@ -4150,7 +4150,7 @@
|
|
|
4150
4150
|
"immutable": true,
|
|
4151
4151
|
"locationInModule": {
|
|
4152
4152
|
"filename": "src/providers/image-builders/container.ts",
|
|
4153
|
-
"line":
|
|
4153
|
+
"line": 418
|
|
4154
4154
|
},
|
|
4155
4155
|
"name": "architecture",
|
|
4156
4156
|
"type": {
|
|
@@ -4164,7 +4164,7 @@
|
|
|
4164
4164
|
"immutable": true,
|
|
4165
4165
|
"locationInModule": {
|
|
4166
4166
|
"filename": "src/providers/image-builders/container.ts",
|
|
4167
|
-
"line":
|
|
4167
|
+
"line": 422
|
|
4168
4168
|
},
|
|
4169
4169
|
"name": "description",
|
|
4170
4170
|
"type": {
|
|
@@ -4178,7 +4178,7 @@
|
|
|
4178
4178
|
"immutable": true,
|
|
4179
4179
|
"locationInModule": {
|
|
4180
4180
|
"filename": "src/providers/image-builders/container.ts",
|
|
4181
|
-
"line":
|
|
4181
|
+
"line": 432
|
|
4182
4182
|
},
|
|
4183
4183
|
"name": "instanceTypes",
|
|
4184
4184
|
"type": {
|
|
@@ -4197,7 +4197,7 @@
|
|
|
4197
4197
|
"immutable": true,
|
|
4198
4198
|
"locationInModule": {
|
|
4199
4199
|
"filename": "src/providers/image-builders/container.ts",
|
|
4200
|
-
"line":
|
|
4200
|
+
"line": 435
|
|
4201
4201
|
},
|
|
4202
4202
|
"name": "logRemovalPolicy",
|
|
4203
4203
|
"type": {
|
|
@@ -4211,7 +4211,7 @@
|
|
|
4211
4211
|
"immutable": true,
|
|
4212
4212
|
"locationInModule": {
|
|
4213
4213
|
"filename": "src/providers/image-builders/container.ts",
|
|
4214
|
-
"line":
|
|
4214
|
+
"line": 434
|
|
4215
4215
|
},
|
|
4216
4216
|
"name": "logRetention",
|
|
4217
4217
|
"type": {
|
|
@@ -4225,7 +4225,7 @@
|
|
|
4225
4225
|
"immutable": true,
|
|
4226
4226
|
"locationInModule": {
|
|
4227
4227
|
"filename": "src/providers/image-builders/container.ts",
|
|
4228
|
-
"line":
|
|
4228
|
+
"line": 419
|
|
4229
4229
|
},
|
|
4230
4230
|
"name": "os",
|
|
4231
4231
|
"type": {
|
|
@@ -4239,7 +4239,7 @@
|
|
|
4239
4239
|
"immutable": true,
|
|
4240
4240
|
"locationInModule": {
|
|
4241
4241
|
"filename": "src/providers/image-builders/container.ts",
|
|
4242
|
-
"line":
|
|
4242
|
+
"line": 420
|
|
4243
4243
|
},
|
|
4244
4244
|
"name": "platform",
|
|
4245
4245
|
"type": {
|
|
@@ -4253,7 +4253,7 @@
|
|
|
4253
4253
|
"immutable": true,
|
|
4254
4254
|
"locationInModule": {
|
|
4255
4255
|
"filename": "src/providers/image-builders/container.ts",
|
|
4256
|
-
"line":
|
|
4256
|
+
"line": 433
|
|
4257
4257
|
},
|
|
4258
4258
|
"name": "rebuildInterval",
|
|
4259
4259
|
"type": {
|
|
@@ -4267,7 +4267,7 @@
|
|
|
4267
4267
|
"immutable": true,
|
|
4268
4268
|
"locationInModule": {
|
|
4269
4269
|
"filename": "src/providers/image-builders/container.ts",
|
|
4270
|
-
"line":
|
|
4270
|
+
"line": 426
|
|
4271
4271
|
},
|
|
4272
4272
|
"name": "repository",
|
|
4273
4273
|
"type": {
|
|
@@ -4281,7 +4281,7 @@
|
|
|
4281
4281
|
"immutable": true,
|
|
4282
4282
|
"locationInModule": {
|
|
4283
4283
|
"filename": "src/providers/image-builders/container.ts",
|
|
4284
|
-
"line":
|
|
4284
|
+
"line": 424
|
|
4285
4285
|
},
|
|
4286
4286
|
"name": "runnerVersion",
|
|
4287
4287
|
"type": {
|
|
@@ -4295,7 +4295,7 @@
|
|
|
4295
4295
|
"immutable": true,
|
|
4296
4296
|
"locationInModule": {
|
|
4297
4297
|
"filename": "src/providers/image-builders/container.ts",
|
|
4298
|
-
"line":
|
|
4298
|
+
"line": 431
|
|
4299
4299
|
},
|
|
4300
4300
|
"name": "securityGroupIds",
|
|
4301
4301
|
"optional": true,
|
|
@@ -4315,7 +4315,7 @@
|
|
|
4315
4315
|
"immutable": true,
|
|
4316
4316
|
"locationInModule": {
|
|
4317
4317
|
"filename": "src/providers/image-builders/container.ts",
|
|
4318
|
-
"line":
|
|
4318
|
+
"line": 430
|
|
4319
4319
|
},
|
|
4320
4320
|
"name": "subnetId",
|
|
4321
4321
|
"optional": true,
|
|
@@ -4337,7 +4337,7 @@
|
|
|
4337
4337
|
"kind": "interface",
|
|
4338
4338
|
"locationInModule": {
|
|
4339
4339
|
"filename": "src/providers/image-builders/container.ts",
|
|
4340
|
-
"line":
|
|
4340
|
+
"line": 28
|
|
4341
4341
|
},
|
|
4342
4342
|
"name": "ContainerImageBuilderProps",
|
|
4343
4343
|
"properties": [
|
|
@@ -4351,7 +4351,7 @@
|
|
|
4351
4351
|
"immutable": true,
|
|
4352
4352
|
"locationInModule": {
|
|
4353
4353
|
"filename": "src/providers/image-builders/container.ts",
|
|
4354
|
-
"line":
|
|
4354
|
+
"line": 34
|
|
4355
4355
|
},
|
|
4356
4356
|
"name": "architecture",
|
|
4357
4357
|
"optional": true,
|
|
@@ -4369,7 +4369,7 @@
|
|
|
4369
4369
|
"immutable": true,
|
|
4370
4370
|
"locationInModule": {
|
|
4371
4371
|
"filename": "src/providers/image-builders/container.ts",
|
|
4372
|
-
"line":
|
|
4372
|
+
"line": 85
|
|
4373
4373
|
},
|
|
4374
4374
|
"name": "instanceType",
|
|
4375
4375
|
"optional": true,
|
|
@@ -4388,7 +4388,7 @@
|
|
|
4388
4388
|
"immutable": true,
|
|
4389
4389
|
"locationInModule": {
|
|
4390
4390
|
"filename": "src/providers/image-builders/container.ts",
|
|
4391
|
-
"line":
|
|
4391
|
+
"line": 103
|
|
4392
4392
|
},
|
|
4393
4393
|
"name": "logRemovalPolicy",
|
|
4394
4394
|
"optional": true,
|
|
@@ -4407,7 +4407,7 @@
|
|
|
4407
4407
|
"immutable": true,
|
|
4408
4408
|
"locationInModule": {
|
|
4409
4409
|
"filename": "src/providers/image-builders/container.ts",
|
|
4410
|
-
"line":
|
|
4410
|
+
"line": 94
|
|
4411
4411
|
},
|
|
4412
4412
|
"name": "logRetention",
|
|
4413
4413
|
"optional": true,
|
|
@@ -4425,7 +4425,7 @@
|
|
|
4425
4425
|
"immutable": true,
|
|
4426
4426
|
"locationInModule": {
|
|
4427
4427
|
"filename": "src/providers/image-builders/container.ts",
|
|
4428
|
-
"line":
|
|
4428
|
+
"line": 41
|
|
4429
4429
|
},
|
|
4430
4430
|
"name": "os",
|
|
4431
4431
|
"optional": true,
|
|
@@ -4444,7 +4444,7 @@
|
|
|
4444
4444
|
"immutable": true,
|
|
4445
4445
|
"locationInModule": {
|
|
4446
4446
|
"filename": "src/providers/image-builders/container.ts",
|
|
4447
|
-
"line":
|
|
4447
|
+
"line": 57
|
|
4448
4448
|
},
|
|
4449
4449
|
"name": "rebuildInterval",
|
|
4450
4450
|
"optional": true,
|
|
@@ -4462,7 +4462,7 @@
|
|
|
4462
4462
|
"immutable": true,
|
|
4463
4463
|
"locationInModule": {
|
|
4464
4464
|
"filename": "src/providers/image-builders/container.ts",
|
|
4465
|
-
"line":
|
|
4465
|
+
"line": 48
|
|
4466
4466
|
},
|
|
4467
4467
|
"name": "runnerVersion",
|
|
4468
4468
|
"optional": true,
|
|
@@ -4480,7 +4480,7 @@
|
|
|
4480
4480
|
"immutable": true,
|
|
4481
4481
|
"locationInModule": {
|
|
4482
4482
|
"filename": "src/providers/image-builders/container.ts",
|
|
4483
|
-
"line":
|
|
4483
|
+
"line": 71
|
|
4484
4484
|
},
|
|
4485
4485
|
"name": "securityGroup",
|
|
4486
4486
|
"optional": true,
|
|
@@ -4498,7 +4498,7 @@
|
|
|
4498
4498
|
"immutable": true,
|
|
4499
4499
|
"locationInModule": {
|
|
4500
4500
|
"filename": "src/providers/image-builders/container.ts",
|
|
4501
|
-
"line":
|
|
4501
|
+
"line": 78
|
|
4502
4502
|
},
|
|
4503
4503
|
"name": "subnetSelection",
|
|
4504
4504
|
"optional": true,
|
|
@@ -4516,7 +4516,7 @@
|
|
|
4516
4516
|
"immutable": true,
|
|
4517
4517
|
"locationInModule": {
|
|
4518
4518
|
"filename": "src/providers/image-builders/container.ts",
|
|
4519
|
-
"line":
|
|
4519
|
+
"line": 64
|
|
4520
4520
|
},
|
|
4521
4521
|
"name": "vpc",
|
|
4522
4522
|
"optional": true,
|
|
@@ -4542,7 +4542,7 @@
|
|
|
4542
4542
|
},
|
|
4543
4543
|
"locationInModule": {
|
|
4544
4544
|
"filename": "src/providers/fargate.ts",
|
|
4545
|
-
"line":
|
|
4545
|
+
"line": 239
|
|
4546
4546
|
},
|
|
4547
4547
|
"parameters": [
|
|
4548
4548
|
{
|
|
@@ -4571,7 +4571,7 @@
|
|
|
4571
4571
|
"kind": "class",
|
|
4572
4572
|
"locationInModule": {
|
|
4573
4573
|
"filename": "src/providers/fargate.ts",
|
|
4574
|
-
"line":
|
|
4574
|
+
"line": 165
|
|
4575
4575
|
},
|
|
4576
4576
|
"methods": [
|
|
4577
4577
|
{
|
|
@@ -4582,7 +4582,7 @@
|
|
|
4582
4582
|
},
|
|
4583
4583
|
"locationInModule": {
|
|
4584
4584
|
"filename": "src/providers/fargate.ts",
|
|
4585
|
-
"line":
|
|
4585
|
+
"line": 321
|
|
4586
4586
|
},
|
|
4587
4587
|
"name": "getStepFunctionTask",
|
|
4588
4588
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -4616,7 +4616,7 @@
|
|
|
4616
4616
|
"immutable": true,
|
|
4617
4617
|
"locationInModule": {
|
|
4618
4618
|
"filename": "src/providers/fargate.ts",
|
|
4619
|
-
"line":
|
|
4619
|
+
"line": 182
|
|
4620
4620
|
},
|
|
4621
4621
|
"name": "LINUX_ARM64_DOCKERFILE_PATH",
|
|
4622
4622
|
"static": true,
|
|
@@ -4634,7 +4634,7 @@
|
|
|
4634
4634
|
"immutable": true,
|
|
4635
4635
|
"locationInModule": {
|
|
4636
4636
|
"filename": "src/providers/fargate.ts",
|
|
4637
|
-
"line":
|
|
4637
|
+
"line": 173
|
|
4638
4638
|
},
|
|
4639
4639
|
"name": "LINUX_X64_DOCKERFILE_PATH",
|
|
4640
4640
|
"static": true,
|
|
@@ -4650,7 +4650,7 @@
|
|
|
4650
4650
|
"immutable": true,
|
|
4651
4651
|
"locationInModule": {
|
|
4652
4652
|
"filename": "src/providers/fargate.ts",
|
|
4653
|
-
"line":
|
|
4653
|
+
"line": 217
|
|
4654
4654
|
},
|
|
4655
4655
|
"name": "assignPublicIp",
|
|
4656
4656
|
"type": {
|
|
@@ -4665,7 +4665,7 @@
|
|
|
4665
4665
|
"immutable": true,
|
|
4666
4666
|
"locationInModule": {
|
|
4667
4667
|
"filename": "src/providers/fargate.ts",
|
|
4668
|
-
"line":
|
|
4668
|
+
"line": 187
|
|
4669
4669
|
},
|
|
4670
4670
|
"name": "cluster",
|
|
4671
4671
|
"type": {
|
|
@@ -4680,7 +4680,7 @@
|
|
|
4680
4680
|
"immutable": true,
|
|
4681
4681
|
"locationInModule": {
|
|
4682
4682
|
"filename": "src/providers/fargate.ts",
|
|
4683
|
-
"line":
|
|
4683
|
+
"line": 227
|
|
4684
4684
|
},
|
|
4685
4685
|
"name": "connections",
|
|
4686
4686
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -4696,7 +4696,7 @@
|
|
|
4696
4696
|
"immutable": true,
|
|
4697
4697
|
"locationInModule": {
|
|
4698
4698
|
"filename": "src/providers/fargate.ts",
|
|
4699
|
-
"line":
|
|
4699
|
+
"line": 197
|
|
4700
4700
|
},
|
|
4701
4701
|
"name": "container",
|
|
4702
4702
|
"type": {
|
|
@@ -4711,7 +4711,7 @@
|
|
|
4711
4711
|
"immutable": true,
|
|
4712
4712
|
"locationInModule": {
|
|
4713
4713
|
"filename": "src/providers/fargate.ts",
|
|
4714
|
-
"line":
|
|
4714
|
+
"line": 222
|
|
4715
4715
|
},
|
|
4716
4716
|
"name": "grantPrincipal",
|
|
4717
4717
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -4727,7 +4727,7 @@
|
|
|
4727
4727
|
"immutable": true,
|
|
4728
4728
|
"locationInModule": {
|
|
4729
4729
|
"filename": "src/providers/fargate.ts",
|
|
4730
|
-
"line":
|
|
4730
|
+
"line": 237
|
|
4731
4731
|
},
|
|
4732
4732
|
"name": "image",
|
|
4733
4733
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -4743,7 +4743,7 @@
|
|
|
4743
4743
|
"immutable": true,
|
|
4744
4744
|
"locationInModule": {
|
|
4745
4745
|
"filename": "src/providers/fargate.ts",
|
|
4746
|
-
"line":
|
|
4746
|
+
"line": 202
|
|
4747
4747
|
},
|
|
4748
4748
|
"name": "label",
|
|
4749
4749
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -4759,7 +4759,7 @@
|
|
|
4759
4759
|
"immutable": true,
|
|
4760
4760
|
"locationInModule": {
|
|
4761
4761
|
"filename": "src/providers/fargate.ts",
|
|
4762
|
-
"line":
|
|
4762
|
+
"line": 232
|
|
4763
4763
|
},
|
|
4764
4764
|
"name": "spot",
|
|
4765
4765
|
"type": {
|
|
@@ -4774,7 +4774,7 @@
|
|
|
4774
4774
|
"immutable": true,
|
|
4775
4775
|
"locationInModule": {
|
|
4776
4776
|
"filename": "src/providers/fargate.ts",
|
|
4777
|
-
"line":
|
|
4777
|
+
"line": 192
|
|
4778
4778
|
},
|
|
4779
4779
|
"name": "task",
|
|
4780
4780
|
"type": {
|
|
@@ -4789,7 +4789,7 @@
|
|
|
4789
4789
|
"immutable": true,
|
|
4790
4790
|
"locationInModule": {
|
|
4791
4791
|
"filename": "src/providers/fargate.ts",
|
|
4792
|
-
"line":
|
|
4792
|
+
"line": 212
|
|
4793
4793
|
},
|
|
4794
4794
|
"name": "securityGroup",
|
|
4795
4795
|
"optional": true,
|
|
@@ -4806,7 +4806,7 @@
|
|
|
4806
4806
|
"immutable": true,
|
|
4807
4807
|
"locationInModule": {
|
|
4808
4808
|
"filename": "src/providers/fargate.ts",
|
|
4809
|
-
"line":
|
|
4809
|
+
"line": 207
|
|
4810
4810
|
},
|
|
4811
4811
|
"name": "vpc",
|
|
4812
4812
|
"optional": true,
|
|
@@ -4847,7 +4847,7 @@
|
|
|
4847
4847
|
"immutable": true,
|
|
4848
4848
|
"locationInModule": {
|
|
4849
4849
|
"filename": "src/providers/fargate.ts",
|
|
4850
|
-
"line":
|
|
4850
|
+
"line": 63
|
|
4851
4851
|
},
|
|
4852
4852
|
"name": "assignPublicIp",
|
|
4853
4853
|
"optional": true,
|
|
@@ -4865,7 +4865,7 @@
|
|
|
4865
4865
|
"immutable": true,
|
|
4866
4866
|
"locationInModule": {
|
|
4867
4867
|
"filename": "src/providers/fargate.ts",
|
|
4868
|
-
"line":
|
|
4868
|
+
"line": 54
|
|
4869
4869
|
},
|
|
4870
4870
|
"name": "cluster",
|
|
4871
4871
|
"optional": true,
|
|
@@ -4884,7 +4884,7 @@
|
|
|
4884
4884
|
"immutable": true,
|
|
4885
4885
|
"locationInModule": {
|
|
4886
4886
|
"filename": "src/providers/fargate.ts",
|
|
4887
|
-
"line":
|
|
4887
|
+
"line": 82
|
|
4888
4888
|
},
|
|
4889
4889
|
"name": "cpu",
|
|
4890
4890
|
"optional": true,
|
|
@@ -4903,7 +4903,7 @@
|
|
|
4903
4903
|
"immutable": true,
|
|
4904
4904
|
"locationInModule": {
|
|
4905
4905
|
"filename": "src/providers/fargate.ts",
|
|
4906
|
-
"line":
|
|
4906
|
+
"line": 109
|
|
4907
4907
|
},
|
|
4908
4908
|
"name": "ephemeralStorageGiB",
|
|
4909
4909
|
"optional": true,
|
|
@@ -4915,14 +4915,14 @@
|
|
|
4915
4915
|
"abstract": true,
|
|
4916
4916
|
"docs": {
|
|
4917
4917
|
"default": "image builder with `FargateRunner.LINUX_X64_DOCKERFILE_PATH` as Dockerfile",
|
|
4918
|
-
"remarks": "A user named `runner` is expected to exist
|
|
4918
|
+
"remarks": "A user named `runner` is expected to exist.",
|
|
4919
4919
|
"stability": "experimental",
|
|
4920
4920
|
"summary": "Provider running an image to run inside CodeBuild with GitHub runner pre-configured."
|
|
4921
4921
|
},
|
|
4922
4922
|
"immutable": true,
|
|
4923
4923
|
"locationInModule": {
|
|
4924
4924
|
"filename": "src/providers/fargate.ts",
|
|
4925
|
-
"line":
|
|
4925
|
+
"line": 26
|
|
4926
4926
|
},
|
|
4927
4927
|
"name": "imageBuilder",
|
|
4928
4928
|
"optional": true,
|
|
@@ -4940,7 +4940,7 @@
|
|
|
4940
4940
|
"immutable": true,
|
|
4941
4941
|
"locationInModule": {
|
|
4942
4942
|
"filename": "src/providers/fargate.ts",
|
|
4943
|
-
"line":
|
|
4943
|
+
"line": 33
|
|
4944
4944
|
},
|
|
4945
4945
|
"name": "label",
|
|
4946
4946
|
"optional": true,
|
|
@@ -4959,7 +4959,7 @@
|
|
|
4959
4959
|
"immutable": true,
|
|
4960
4960
|
"locationInModule": {
|
|
4961
4961
|
"filename": "src/providers/fargate.ts",
|
|
4962
|
-
"line":
|
|
4962
|
+
"line": 100
|
|
4963
4963
|
},
|
|
4964
4964
|
"name": "memoryLimitMiB",
|
|
4965
4965
|
"optional": true,
|
|
@@ -4977,7 +4977,7 @@
|
|
|
4977
4977
|
"immutable": true,
|
|
4978
4978
|
"locationInModule": {
|
|
4979
4979
|
"filename": "src/providers/fargate.ts",
|
|
4980
|
-
"line":
|
|
4980
|
+
"line": 47
|
|
4981
4981
|
},
|
|
4982
4982
|
"name": "securityGroup",
|
|
4983
4983
|
"optional": true,
|
|
@@ -4996,7 +4996,7 @@
|
|
|
4996
4996
|
"immutable": true,
|
|
4997
4997
|
"locationInModule": {
|
|
4998
4998
|
"filename": "src/providers/fargate.ts",
|
|
4999
|
-
"line":
|
|
4999
|
+
"line": 119
|
|
5000
5000
|
},
|
|
5001
5001
|
"name": "spot",
|
|
5002
5002
|
"optional": true,
|
|
@@ -5014,7 +5014,7 @@
|
|
|
5014
5014
|
"immutable": true,
|
|
5015
5015
|
"locationInModule": {
|
|
5016
5016
|
"filename": "src/providers/fargate.ts",
|
|
5017
|
-
"line":
|
|
5017
|
+
"line": 40
|
|
5018
5018
|
},
|
|
5019
5019
|
"name": "vpc",
|
|
5020
5020
|
"optional": true,
|
|
@@ -5478,7 +5478,7 @@
|
|
|
5478
5478
|
"kind": "interface",
|
|
5479
5479
|
"locationInModule": {
|
|
5480
5480
|
"filename": "src/providers/image-builders/container.ts",
|
|
5481
|
-
"line":
|
|
5481
|
+
"line": 148
|
|
5482
5482
|
},
|
|
5483
5483
|
"name": "ImageBuilderAsset",
|
|
5484
5484
|
"properties": [
|
|
@@ -5491,7 +5491,7 @@
|
|
|
5491
5491
|
"immutable": true,
|
|
5492
5492
|
"locationInModule": {
|
|
5493
5493
|
"filename": "src/providers/image-builders/container.ts",
|
|
5494
|
-
"line":
|
|
5494
|
+
"line": 157
|
|
5495
5495
|
},
|
|
5496
5496
|
"name": "asset",
|
|
5497
5497
|
"type": {
|
|
@@ -5507,7 +5507,7 @@
|
|
|
5507
5507
|
"immutable": true,
|
|
5508
5508
|
"locationInModule": {
|
|
5509
5509
|
"filename": "src/providers/image-builders/container.ts",
|
|
5510
|
-
"line":
|
|
5510
|
+
"line": 152
|
|
5511
5511
|
},
|
|
5512
5512
|
"name": "path",
|
|
5513
5513
|
"type": {
|
|
@@ -5532,7 +5532,7 @@
|
|
|
5532
5532
|
},
|
|
5533
5533
|
"locationInModule": {
|
|
5534
5534
|
"filename": "src/providers/image-builders/container.ts",
|
|
5535
|
-
"line":
|
|
5535
|
+
"line": 222
|
|
5536
5536
|
},
|
|
5537
5537
|
"parameters": [
|
|
5538
5538
|
{
|
|
@@ -5558,7 +5558,7 @@
|
|
|
5558
5558
|
"kind": "class",
|
|
5559
5559
|
"locationInModule": {
|
|
5560
5560
|
"filename": "src/providers/image-builders/container.ts",
|
|
5561
|
-
"line":
|
|
5561
|
+
"line": 209
|
|
5562
5562
|
},
|
|
5563
5563
|
"methods": [
|
|
5564
5564
|
{
|
|
@@ -5568,7 +5568,7 @@
|
|
|
5568
5568
|
},
|
|
5569
5569
|
"locationInModule": {
|
|
5570
5570
|
"filename": "src/providers/image-builders/container.ts",
|
|
5571
|
-
"line":
|
|
5571
|
+
"line": 314
|
|
5572
5572
|
},
|
|
5573
5573
|
"name": "grantAssetsRead",
|
|
5574
5574
|
"parameters": [
|
|
@@ -5586,7 +5586,7 @@
|
|
|
5586
5586
|
},
|
|
5587
5587
|
"locationInModule": {
|
|
5588
5588
|
"filename": "src/providers/image-builders/container.ts",
|
|
5589
|
-
"line":
|
|
5589
|
+
"line": 115
|
|
5590
5590
|
},
|
|
5591
5591
|
"name": "version",
|
|
5592
5592
|
"parameters": [
|
|
@@ -5627,7 +5627,7 @@
|
|
|
5627
5627
|
"immutable": true,
|
|
5628
5628
|
"locationInModule": {
|
|
5629
5629
|
"filename": "src/providers/image-builders/container.ts",
|
|
5630
|
-
"line":
|
|
5630
|
+
"line": 213
|
|
5631
5631
|
},
|
|
5632
5632
|
"name": "arn",
|
|
5633
5633
|
"type": {
|
|
@@ -5642,7 +5642,7 @@
|
|
|
5642
5642
|
"immutable": true,
|
|
5643
5643
|
"locationInModule": {
|
|
5644
5644
|
"filename": "src/providers/image-builders/container.ts",
|
|
5645
|
-
"line":
|
|
5645
|
+
"line": 218
|
|
5646
5646
|
},
|
|
5647
5647
|
"name": "platform",
|
|
5648
5648
|
"type": {
|
|
@@ -5663,7 +5663,7 @@
|
|
|
5663
5663
|
"kind": "interface",
|
|
5664
5664
|
"locationInModule": {
|
|
5665
5665
|
"filename": "src/providers/image-builders/container.ts",
|
|
5666
|
-
"line":
|
|
5666
|
+
"line": 163
|
|
5667
5667
|
},
|
|
5668
5668
|
"name": "ImageBuilderComponentProperties",
|
|
5669
5669
|
"properties": [
|
|
@@ -5677,7 +5677,7 @@
|
|
|
5677
5677
|
"immutable": true,
|
|
5678
5678
|
"locationInModule": {
|
|
5679
5679
|
"filename": "src/providers/image-builders/container.ts",
|
|
5680
|
-
"line":
|
|
5680
|
+
"line": 184
|
|
5681
5681
|
},
|
|
5682
5682
|
"name": "commands",
|
|
5683
5683
|
"type": {
|
|
@@ -5698,7 +5698,7 @@
|
|
|
5698
5698
|
"immutable": true,
|
|
5699
5699
|
"locationInModule": {
|
|
5700
5700
|
"filename": "src/providers/image-builders/container.ts",
|
|
5701
|
-
"line":
|
|
5701
|
+
"line": 177
|
|
5702
5702
|
},
|
|
5703
5703
|
"name": "description",
|
|
5704
5704
|
"type": {
|
|
@@ -5714,7 +5714,7 @@
|
|
|
5714
5714
|
"immutable": true,
|
|
5715
5715
|
"locationInModule": {
|
|
5716
5716
|
"filename": "src/providers/image-builders/container.ts",
|
|
5717
|
-
"line":
|
|
5717
|
+
"line": 172
|
|
5718
5718
|
},
|
|
5719
5719
|
"name": "displayName",
|
|
5720
5720
|
"type": {
|
|
@@ -5731,7 +5731,7 @@
|
|
|
5731
5731
|
"immutable": true,
|
|
5732
5732
|
"locationInModule": {
|
|
5733
5733
|
"filename": "src/providers/image-builders/container.ts",
|
|
5734
|
-
"line":
|
|
5734
|
+
"line": 167
|
|
5735
5735
|
},
|
|
5736
5736
|
"name": "platform",
|
|
5737
5737
|
"type": {
|
|
@@ -5747,7 +5747,7 @@
|
|
|
5747
5747
|
"immutable": true,
|
|
5748
5748
|
"locationInModule": {
|
|
5749
5749
|
"filename": "src/providers/image-builders/container.ts",
|
|
5750
|
-
"line":
|
|
5750
|
+
"line": 189
|
|
5751
5751
|
},
|
|
5752
5752
|
"name": "assets",
|
|
5753
5753
|
"optional": true,
|
|
@@ -6836,6 +6836,6 @@
|
|
|
6836
6836
|
"symbolId": "src/providers/image-builders/static:StaticRunnerImage"
|
|
6837
6837
|
}
|
|
6838
6838
|
},
|
|
6839
|
-
"version": "0.5.
|
|
6840
|
-
"fingerprint": "
|
|
6839
|
+
"version": "0.5.2",
|
|
6840
|
+
"fingerprint": "Sc+5tsmlptxSISzllbW7wsw8WNVyRRUOaSqJRWvNco8="
|
|
6841
6841
|
}
|