Skip to content

Commit

Permalink
Update for issue #15
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Aug 2, 2018
1 parent b55275a commit 020deca
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
```

### Service linked roles
Currently the ec2 instance role does not allow creation of service linked roles. The runner instances is depended on the following two service linked roles:
- AWSServiceRoleForAutoScaling
- AWSServiceRoleForEC2Spot

You can create them manually or via terraform.

```
resource "aws_iam_service_linked_role" "spot" {
aws_service_name = "spot.amazonaws.com"
}
resource "aws_iam_service_linked_role" "autoscaling" {
aws_service_name = "autoscaling.amazonaws.com"
}
```

### Configuration GitLab runner token
Currently register a new runner is a manual process. See the GitLab Runner [documentation](https://docs.gitlab.com/runner/register/index.html#docker) for more details.
Expand Down

0 comments on commit 020deca

Please sign in to comment.