From 179eb06d5ca422d29a991caaf0211f349a01f15c Mon Sep 17 00:00:00 2001 From: komodo Date: Mon, 25 Nov 2024 07:13:06 +0000 Subject: [PATCH] [Komodo] Commit Sync: update builders.toml --- builders.toml | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/builders.toml b/builders.toml index 4287ca8..9724e4a 100644 --- a/builders.toml +++ b/builders.toml @@ -1 +1,32 @@ -# \ No newline at end of file +[[builder]] +name = "aarch64_builder" +tags = ["builder"] +[builder.config] +type = "Aws" +params.region = "us-east-2" +params.instance_type = "c7g.2xlarge" +params.ami_id = "ami-06fdde90cf1861127" +params.subnet_id = "subnet-02ae5ad480eacc4bc" +params.key_pair_name = "komodo-key" +params.assign_public_ip = true +params.security_group_ids = ["sg-0babe545ecfb49c9b"] +params.user_data = """ +#!/bin/bash +curl -sSL https://raw.githubusercontent.com/mbecker20/komodo/main/scripts/setup-periphery.py | HOME=/root python3""" + +## + +[[builder]] +name = "x86_builder" +tags = ["builder"] +[builder.config] +type = "Aws" +params.region = "us-east-2" +params.ami_id = "ami-0364d0950b88ef0e9" +params.subnet_id = "subnet-02ae5ad480eacc4bc" +params.key_pair_name = "komodo-key" +params.assign_public_ip = true +params.security_group_ids = ["sg-0babe545ecfb49c9b"] +params.user_data = """ +#!/bin/bash +curl -sSL https://raw.githubusercontent.com/mbecker20/komodo/main/scripts/setup-periphery.py | HOME=/root python3""" \ No newline at end of file