Manual
This page documents the requirements and steps required to install BYOC Satellites in AWS by manually configuring them.
Requirements
Manual installation only requires that you meet the base requirements for installation within AWS. No additional permissions within AWS are required.
Manual Installation
Manual Installation requires you to provide all the information that Earthly would otherwise gather automatically. To do this, run:
Assuming the installation reports the status as Green
, you should be good to go!
Parameters
Name | Description |
---|---|
name | The name to use to identify the cloud installation. This can be any string. |
aws-account-id | The AWS account ID the required BYOC infrastructure was provisioned into. |
aws-region | The AWS region the required BYOC infrastructure was provisioned into. Currently, only |
The ID ( | |
The name of the SSH key to be included in new satellites. | |
The ID ( | |
The ARN ( | |
The ARN ( |
Manually Configuring BYOC Infrastructure
If you can't provision BYOC infrastructure using CloudFormation or Terraform, this should give you enough information to recreate what they do yourself. If you need help, you can contact us.
Subnet
You will need to create a Subnet (and a VPC, if needed) within the desired AWS account. The Subnet should have internet access, and have a CIDR block or DNS that is resolvable from within your network (VPN or otherwise).
Security Group
Each satellite has one security group associated with it. Each satellite gets the following ingress rules by default:
Protocol | CIDR | From Port | To Port | Description |
---|---|---|---|---|
TCP | Satellite Subnet | 22 | 22 | Allow SSH access from within the ingress subnet. Used for debugging satellite issues. |
TCP | Satellite Subnet | 8372 | 8372 | Allow Buildkit access. |
TCP | Satellite Subnet | 9000 | 9000 | Allow Prometheus scraping for monitoring your satellites. Metrics are exported by |
Satellite egress defaults to allowing general, unrestricted outbound traffic to the general internet.
SSH Key
Any SSH key will do. Follow AWS's guide to create or upload an existing keypair.
Cloudwatch Logs
Create a new Cloudwatch log group named /earthly/satellites/<cloud-name>
, where <cloud-name>
is the same value you will provide to Earthly via the --name
parameter. The default class is STANDARD
. For more information on log group classes, see AWS documentation.
Instance Role
Each satellite is configured to put relevant Buildkit logs in Cloudwatch. Earthly relies on an instance role to provide the relevant permissions.
Start by creating a new IAM policy:
Follow the AWS guide to create a new instance role, associating this new policy with your role.
Compute Role
Earthly uses a role within your AWS account to enable orchestration. This means that Earthly will only time-limited, user-revocable access to your cloud account.
Start by creating the policy needed:
Follow AWS's guide for creating a new IAM role with a custom trust policy. Disregard all optional steps. Use the following trust policy:
This trust policy enables Earthly to use the newly created role to orchestrate satellites on your behalf.
Last updated