From cb7f4115dc5c2b5b808c86720743b0168932fa23 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Thu, 7 Nov 2024 06:47:37 -0800 Subject: [PATCH] Remove actuated docs (#2423) --- assets.md | 10 --------- docs/using-actuated.md | 49 ------------------------------------------ 2 files changed, 59 deletions(-) delete mode 100644 docs/using-actuated.md diff --git a/assets.md b/assets.md index ddac7c27..de070130 100644 --- a/assets.md +++ b/assets.md @@ -8,7 +8,6 @@ This file is intended to list all the assets controlled by OpenTelemetry. - [Credential Storage](#credential-storage) - [Community Resource Accounts](#community-resource-accounts) - * [Actuated](#actuated) * [AWS account](#aws-account) * [Equinix bare metal](#equinix-bare-metal) * [Grafana organization for SIG Security](#grafana-organization-for-sig-security) @@ -50,15 +49,6 @@ This file is intended to list all the assets controlled by OpenTelemetry. ## Community Resource Accounts -### Actuated - -Link: https://actuated.dev/blog/arm-ci-cncf-ampere -Doc: [Using Actuated](docs/using-actuated.md) - -- GitHub App available for repositories to get ARM64 Actions runners. -- Admin: N/A. The program is managed by the CNCF and Actuated. The only - available admin task is to add the GitHub App to a repository. - ### AWS account Link: http://cncf-aws-opentelemetry.signin.aws.amazon.com/ diff --git a/docs/using-actuated.md b/docs/using-actuated.md deleted file mode 100644 index 712c3bde..00000000 --- a/docs/using-actuated.md +++ /dev/null @@ -1,49 +0,0 @@ -# Using actuated - -[Actuated](https://actuated.dev/) is available as a GitHub App which can be -enabled on repositories, and allows GH Actions to execute on runners hosted by -the CNCF. [See the announcement](https://actuated.dev/blog/arm-ci-cncf-ampere). - -Using actuated is ideal if you need to run an Action on an an ARM64 -environment, which GitHub doesn't currently provide. -It should not replace the GitHub Actions runners in every job. - -## Installation - -Before it can be used, the App has to be enabled on the repository, through a -maintenance request. [See an -example](https://github.com/open-telemetry/community/issues/1954). - -## Usage - -Using actuated on a GitHub Actions job consists in changing the `runs-on` -section to be `actuated-arm64-*`, with the required CPUs and RAM in the name. - -See the [actuated -documentation](https://docs.actuated.dev/examples/custom-vm-size/) about custom -VM sizes. - -For example: - -```yaml -runs-on: actuated-arm64-4cpu-16gb -``` - -This configuration will ensure your job has 4 CPUs and 16GB of RAM available. - -While not specifying any CPU/RAM values (`runs-on: actuated-arm64`) currently -works, using that format is deprecated and will be removed. - -## Right-sizing VMs - -As you set up your job, you may need an estimation of the resources it needs, -to better set your requirements. - -Actuated provides VMMeter, a small action which will output system information -at the end of a run. -Follow [the -instructions](https://gist.github.com/alexellis/1f33e581c75e11e161fe613c46180771) -to set it up in your job. - -see [the actuated -documentation](https://actuated.dev/blog/right-sizing-vms-github-actions).