All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudsnorkel.cdk.github.runners.package-info Maven / Gradle / Ivy

Go to download

CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.

There is a newer version: 0.14.7
Show newest version
/**
 * 

GitHub Self-Hosted Runners CDK Constructs

*

* NPM * PyPI * Maven Central * Go * Nuget * Release * License *

* Use this CDK construct to create ephemeral self-hosted GitHub runners on-demand inside your AWS account. *

*

    *
  • Easy to configure GitHub integration with a web-based interface
  • *
  • Customizable runners with decent defaults
  • *
  • Multiple runner configurations controlled by labels
  • *
  • Everything fully hosted in your account
  • *
  • Automatically updated build environment with latest runner version
  • *
*

* Self-hosted runners in AWS are useful when: *

*

    *
  • You need easy access to internal resources in your actions
  • *
  • You want to pre-install some software for your actions
  • *
  • You want to provide some basic AWS API access (but aws-actions/configure-aws-credentials has more security controls)
  • *
*

* Ephemeral (or on-demand) runners are the recommended way by GitHub 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. *

*

API

*

* The best way to browse API documentation is on Constructs Hub. It is available in all supported programming languages. *

*

Providers

*

* A runner provider creates compute resources on-demand and uses actions/runner to start a runner. *

* | | EC2 | CodeBuild | Fargate | Lambda | * |------------------|-------------------|----------------------------|----------------|---------------| * | Time limit | Unlimited | 8 hours | Unlimited | 15 minutes | * | vCPUs | Unlimited | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 | * | RAM | Unlimited | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb | * | Storage | Unlimited | 50gb to 824gb | 20gb to 200gb | Up to 10gb | * | Architecture | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | * | sudo | ✔ | ✔ | ✔ | ❌ | * | Docker | ✔ | ✔ (Linux only) | ❌ | ❌ | * | Spot pricing | ✔ | ❌ | ✔ | ❌ | * | OS | Linux, Windows | Linux, Windows | Linux, Windows | Linux | *

* The 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. *

* You can also create your own provider by implementing IRunnerProvider. *

*

Installation

*

*

    *
  1. Confirm you're using CDK v2
  2. *
  3. Install the appropriate package *

    *

      *
    1. Python *

      *

       * pip install cloudsnorkel.cdk-github-runners
       * 
    2. *
    3. TypeScript or JavaScript *

      *

       * npm i @cloudsnorkel/cdk-github-runners
       * 
    4. *
    5. Java *

      *

       * <dependency>
       * <groupId>com.cloudsnorkel</groupId>
       * <artifactId>cdk.github.runners</artifactId>
       * </dependency>
       * 
    6. *
    7. Go *

      *

       * go get github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners
       * 
    8. *
    9. .NET *

      *

       * dotnet add package CloudSnorkel.Cdk.Github.Runners
       * 
    10. *
  4. *
  5. Use GitHubRunners construct in your code (starting with default arguments is fine)
  6. *
  7. Deploy your stack
  8. *
  9. Look for the status command output similar to aws --region us-east-1 lambda invoke --function-name status-XYZ123 status.json
  10. *
  11. Execute the status command (you may need to specify --profile too) and open the resulting status.json file
  12. *
  13. Open the URL in github.setup.url from status.json or manually setup GitHub integration as an app or with personal access token
  14. *
  15. Run status command again to confirm github.auth.status and github.webhook.status are OK
  16. *
  17. Trigger a GitHub action that has a self-hosted label with runs-on: [self-hosted, linux, codebuild] or similar
  18. *
  19. If the action is not successful, see troubleshooting
  20. *
*

* Demo *

*

Customizing

*

* The 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. *

* For example: *

*

 * let vpc: ec2.Vpc;
 * let runnerSg: ec2.SecurityGroup;
 * let dbSg: ec2.SecurityGroup;
 * let bucket: s3.Bucket;
 * 
 * // create a custom CodeBuild provider
 * const myProvider = new CodeBuildRunner(this, 'codebuild runner', {
 *   label: 'my-codebuild',
 *   vpc: vpc,
 *   securityGroup: runnerSg,
 * });
 * // grant some permissions to the provider
 * bucket.grantReadWrite(myProvider);
 * dbSg.connections.allowFrom(runnerSg, ec2.Port.tcp(3306), 'allow runners to connect to MySQL database');
 * 
 * // create the runner infrastructure
 * new GitHubRunners(this, 'runners', {
 *    providers: [myProvider],
 * });
 * 
*

* Another way to customize runners is by modifying the image used to spin them up. The image contains the runner, any required dependencies, and integration code with the provider. You may choose to customize this image by adding more packages, for example. *

*

 * const myBuilder = new CodeBuildImageBuilder(this, 'image builder', {
 *   dockerfilePath: FargateRunner.LINUX_X64_DOCKERFILE_PATH,
 *   runnerVersion: RunnerVersion.specific('2.291.0'),
 *   rebuildInterval: Duration.days(14),
 * });
 * myBuilder.setBuildArg('EXTRA_PACKAGES', 'nginx xz-utils');
 * 
 * const myProvider = new FargateRunner(this, 'fargate runner', {
 *   label: 'customized-fargate',
 *   vpc: vpc,
 *   securityGroup: runnerSg,
 *   imageBuilder: myBuilder,
 * });
 * 
 * // create the runner infrastructure
 * new GitHubRunners(stack, 'runners', {
 *   providers: [myProvider],
 * });
 * 
*

* Your workflow will then look like: *

*

 * name: self-hosted example
 * on: push
 * jobs:
 *   self-hosted:
 *     runs-on: [self-hosted, customized-fargate]
 *     steps:
 *       - run: echo hello world
 * 
*

* Windows images must be built with AWS Image Builder. *

*

 * const myWindowsBuilder = new ContainerImageBuilder(this, 'Windows image builder', {
 *   architecture: Architecture.X86_64,
 *   os: Os.WINDOWS,
 *   runnerVersion: RunnerVersion.specific('2.291.0'),
 *   rebuildInterval: Duration.days(14),
 * });
 * myWindowsBuilder.addComponent(new ImageBuilderComponent(this, 'Ninja Component',
 *   {
 *     displayName: 'Ninja',
 *     description: 'Download and install Ninja build system',
 *     platform: 'Windows',
 *     commands: [
 *       'Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip" -OutFile ninja.zip',
 *       'Expand-Archive ninja.zip -DestinationPath C:\\actions',
 *       'del ninja.zip',
 *     ],
 *   }
 * ));
 * 
 * const myProvider = new FargateRunner(this, 'fargate runner', {
 *   label: 'customized-windows-fargate',
 *   vpc: vpc,
 *   securityGroup: runnerSg,
 *   imageBuiler: myWindowsBuilder,
 * });
 * 
 * // create the runner infrastructure
 * new GitHubRunners(stack, 'runners', {
 *   providers: [myProvider],
 * });
 * 
*

*

Architecture

*

* Architecture diagram *

*

Troubleshooting

*

*

    *
  1. Always start with the status function, make sure no errors are reported, and confirm all status codes are OK
  2. *
  3. If jobs are stuck on pending: *

    *

      *
    1. Make sure runs-on in the workflow matches the expected labels set in the runner provider
    2. *
    3. If it happens every time, cancel the job and start it again
    4. *
  4. *
  5. Confirm the webhook Lambda was called by visiting the URL in troubleshooting.webhookHandlerUrl from status.json *

    *

      *
    1. If it's not called or logs errors, confirm the webhook settings on the GitHub side
    2. *
    3. If you see too many errors, make sure you're only sending workflow_job events
    4. *
  6. *
  7. When using GitHub app, make sure there are active installation in github.auth.app.installations
  8. *
  9. Check execution details of the orchestrator step function by visiting the URL in troubleshooting.stepFunctionUrl from status.json *

    *

      *
    1. Use the details tab to find the specific execution of the provider (Lambda, CodeBuild, Fargate, etc.)
    2. *
    3. Every step function execution should be successful, even if the runner action inside it failed
    4. *
  10. *
*

*

Other Options

*

*

    *
  1. philips-labs/terraform-aws-github-runner if you're using Terraform
  2. *
  3. actions/actions-runner-controller if you're using Kubernetes
  4. *
*/ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) package com.cloudsnorkel.cdk.github.runners;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy