From ce30d0287cea28d97124dacfb7cdc8dcebd4980d Mon Sep 17 00:00:00 2001 From: TC Johnson Date: Wed, 19 Feb 2025 14:00:16 -0600 Subject: [PATCH] Updated Digital Ocean image sizes, ssh keys, and updated Rust/Python versions on build machine image. [skip ci] --- .../cicd/build-orchestration/build-machine-ctrl.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/cicd/build-orchestration/build-machine-ctrl.sh b/scripts/cicd/build-orchestration/build-machine-ctrl.sh index d1cd1548..36e23da5 100644 --- a/scripts/cicd/build-orchestration/build-machine-ctrl.sh +++ b/scripts/cicd/build-orchestration/build-machine-ctrl.sh @@ -4,9 +4,9 @@ if [ "$1" = "create" ] && [ "$2" = "amd64-deb" ] then ## Create amd64-deb build machine echo "Creating amd64-deb build machine" - doctl compute droplet create build-server-amd64-deb-tmp --image 178721112 \ - --size c2-8vcpu-16gb-intel --region nyc1 --enable-private-networking \ - --ssh-keys 38852180,38632397,41187560 --tag-names build-machines,build-orchestration --wait + doctl compute droplet create build-server-amd64-deb-tmp --image 179066895 \ + --size c2-16vcpu-32gb --region nyc1 --enable-private-networking \ + --ssh-keys 38852180,38632397,41187560,45621126 --tag-names build-machines,build-orchestration --wait echo "Done" elif [ "$1" = "create" ] && [ "$2" = "arm64-deb" ] @@ -15,7 +15,7 @@ then echo "Creating arm64-deb build machine" doctl compute droplet create build-server-arm64-deb-tmp --image 178721107 \ --size c2-8vcpu-16gb-intel --region nyc1 --enable-private-networking \ - --ssh-keys 38852180,38632397,41187560 --tag-names build-machines,build-orchestration --wait + --ssh-keys 38852180,38632397,41187560,45621126 --tag-names build-machines,build-orchestration --wait echo "Done" elif [ "$1" = "create" ] && [ "$2" = "amd64-rpm" ] @@ -24,7 +24,7 @@ then echo "Creating amd64-rpm build machine" doctl compute droplet create build-server-amd64-rpm-tmp --image 178721114 \ --size c2-8vcpu-16gb-intel --region nyc1 --enable-private-networking \ - --ssh-keys 38852180,38632397,41187560 --tag-names build-machines,build-orchestration --wait + --ssh-keys 38852180,38632397,41187560,45621126 --tag-names build-machines,build-orchestration --wait echo "Done" elif [ "$1" = "create" ] && [ "$2" = "arm64-rpm" ] ## This snapshot does not yet exist @@ -33,7 +33,7 @@ then echo "Creating arm64-rpm build machine" doctl compute droplet create build-server-arm64-rpm-tmp --image 178721114 \ --size c2-8vcpu-16gb-intel --region nyc1 --enable-private-networking \ - --ssh-keys 38852180,38632397,41187560 --tag-names build-machines,build-orchestration --wait + --ssh-keys 38852180,38632397,41187560,45621126 --tag-names build-machines,build-orchestration --wait echo "Done" elif [ "$1" = "delete" ] && [ "$2" = "amd64-deb" ]