Skip to content

Releases: buildkite/elastic-ci-stack-for-aws

v5.22.1

21 Jul 08:14
655cb9a
Compare
Choose a tag to compare

⚠️ Known Issues

This version of the Elastic CI Stack contains a version of the agent with known issues with uploading pipelines. Please use v6.2.0 or v5.22.3 instead.

v5.22.1 (2023-07-21)

Full Changelog

Changed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.22.1/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.22.0

20 Jul 05:08
ad62e16
Compare
Choose a tag to compare

⚠️ Known Issues

This version of the Elastic CI Stack contains a version of the agent with known issues with uploading pipelines. Please use v6.2.0 or v5.22.3 instead.

v5.22.0 (2023-07-20)

Full Changelog

Changed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.22.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v6.0.0-beta2

17 Jul 10:50
v6.0.0-beta2
2e98ada
Compare
Choose a tag to compare
v6.0.0-beta2 Pre-release
Pre-release

We've been dogfooding v6.0.0-beta1 for some time and are ready to make another beta release.

Known Issues

  • Building docker images intermittently fails with connection aborted and IO ERROR when trying to write files to the container's file system. This happens reasonably infrequently, and we recommend detecting build errors from docker and retrying, either inside your build scripts or by retrying the command step. If you are using docker compose to build images, or the docker-compose-buildkite-plugin, the exit status to retry on will be 17 in most cases.
  • If you invoke docker compose with the docker-compose command, the --compatibilty flag will be prepended for you. We still recommend you use the cli-version: 2 syntax in your Buildkite docker-compose plugin blocks, which is the equivalent of invoking docker compose with the docker compose command.
  • The ID of the docker group is now determined when the docker package is installed. Previously it was hard-coded to be 1001, but now it is 993, but that may change in later releases. If you rely on the GID being hard-coded to 1001 in your builds, they may have permission errors. We recommend you use something like the bash syntax getent group docker | awk -F: '{print $3}' to detect what the ID of the docker group is instead.

v6.0.0-beta2 (2023-07-17)

Full Changelog

Changed

  • Bump docker compose to v2.20.0 and buildx to v0.11.1 #1150 (@triarius)
  • Reorganise build scripts to restart docker after installing qemu #1149 (@triarius)

Fixed

  • Fix issues with docker-compose plugin by creating a script to prepend --compatibility flag to docker-compose #1148 (@triarius)
  • subuid and subgid files no longer have multiple ranges #1149 (@triarius)

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v6.0.0-beta2/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the README for this release.

v6.0.0-beta1

28 Jun 02:15
v6.0.0-beta1
ef02a6a
Compare
Choose a tag to compare
v6.0.0-beta1 Pre-release
Pre-release

We are excited to announce the release of v6.0.0-beta1 of the Elastic CI Stack for AWS. We have been using this internally in our pipelines for some time, and we are ready for the next phase of releasing it to customers.

Two highlights of this release are:

Amazon Linux 2023

We have upgraded the Base AMI for Linux EC2 instances to Amazon Linux 2023. This upgrade brings numerous improvements and updates to the underlying operating system. You can find more details on the changes made by Amazon in their official documentation here. Many packages have been added, upgraded, or removed since Amazon Linux 2, making Amazon Linux 2023 a more robust and up-to-date choice for your CI/CD runners.

This update was made in response to valuable feedback from our customers. Specifically, we received requests for Amazon Linux 2023 because Amazon Linux 2 did not support Node 18+, and our customers wanted to leverage the latest version of Node.js in their CI/CD workflows.

Multi-Platform Docker Image Support

We have added support for running and building multi-platform docker images on Linux. This feature allows you to build and run docker images on different architectures, such as arm64 images on x86_64 machines and vice versa. We have been using this to create multi-platform images for the Buildkite Agent, so we are excited to release it to our customers too.

We appreciate your input and strive to continuously improve our platform based on your needs. Thank you for your support, and we hope these updates enhance your CI/CD experience on AWS EC2.

Please refer to the full changelog for more details on all the changes and fixes included in this release. If you have any questions or need assistance, please don't hesitate to reach out to our support team. Happy deploying!

Known Issues

  • The docker-compose-buildkite-plugin may need to be run with the configuration option cli-version: 2 in some situations. We're likely to make this the default in a future version of the plugin, but for now we recommend you set this in your pipeline definitions.
  • The ID of the docker group is now determined when the docker package is installed. Previously it was hard-coded to be 1001, but now it is 993, but that may change in later releases. If you rely on the GID being hard-coded to 1001 in your builds, they may have permission errors. We recommend you use something like the bash syntax getent group docker | awk -F: '{print $3}' to detect what the ID of the docker group is instead.

v6.0.0-beta1 (2023-06-28)

Full Changelog

Changed

  • Upgrade base image to Amazon Linux 2023 #1122 (@triarius)
  • Publish template to both main and master #1129 (@triarius)
  • Increase job cancel grace period to 60s #1144 (@triarius)
  • Allow the MaxSize to be 0 #1140 (@triarius)
  • Default EC2 instance names to stack name #1137 (@triarius)
  • Rename the parameter InstanceType to InstanceTypes #1138 (@triarius)
  • Rename the parameter ManagedPolicyARN to ManagedPolicyARNs #1138 (@triarius)
  • Rename the parameter SecurityGroupId to SecurityGroupIds #1128 (@triarius)
  • Rename the parameter EnableAgentGitMirrorsExperiment to BuildkiteAgentEnableGitMirrors #1123 (@triarius)
  • Enable the ansi-timestamps setting if and only if BuildkiteAgentTimestampLines parameter is "false" #1132 (@triarius)

Added

Fixed

  • Guard against BUILDKITE_AGENT_ENABLE_GIT_MIRRORS not being set in startup script #1135 (@triarius)

Removed

  • Remove deprecated SpotPrice parameter #1130 (@triarius)
  • These packages are either not available on Amazon Linux 2023, or not installed by default on the base image we use. We have decided to not make them available as suitable replacements are available.
    • Python 2
    • OpenSSL v1.0
    • AWS CLI v1
    • Docker-Compose v1
    • Cronie

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v6.0.0-beta1/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the README for this release.

v5.21.0

26 May 01:43
90e22e4
Compare
Choose a tag to compare

v5.21.0 (2023-05-25)

Full Changelog

Changed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.21.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.20.0

05 May 04:15
3037a8f
Compare
Choose a tag to compare

5.20.0 (2023-05-05)

Full Changelog

Changed

  • Bump buildkite-agent to v3.46.0 #1114 (@moskyb)
  • Update description of BuildkiteAdditionalSudoPermissions parameter #1113 (@triarius)

Fixed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.20.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.19.0

24 Apr 00:59
6efaa35
Compare
Choose a tag to compare

v5.19.0 (2023-04-24)

Full Changelog

Added

  • A parameter for buildkite-agent-scaler edition and version #1104 (@triarius)

Fixed

  • Stack failed to create because it tried to create an ACL on S3 #1109 (@saviogl)

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.19.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.18.0

23 Mar 07:33
84b79bc
Compare
Choose a tag to compare

v5.18.0 (2023-03-23)

Full Changelog

Changed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.18.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.17.0

28 Feb 02:28
a0f0029
Compare
Choose a tag to compare

v5.17.0 (2023-02-28)

Full Changelog

Added

  • Support for c7gn, m7g, and r7g instance type classes with the arm64 AMI #1095 (@triarius)
  • Customise the Name tag on EC2 instances spawned by the ASG with the new InstanceName parameter #1088 (@fd-jonathanlinn)

Changed

Fixed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.17.0/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.

v5.16.1

20 Jan 03:29
Compare
Choose a tag to compare

5.16.1 (2023-01-20)

Full Changelog

Changed

Upgrading

Perform a CloudFormation stack update with the following URL:
https://s3.amazonaws.com/buildkite-aws-stack/v5.16.1/aws-stack.yml

If you want to launch a new stack, you can use this link (make sure not to use your production AWS account, create a new one for CI):

Launch Buildkite AWS Stack

Documentation

See the Readme for this release.