upgraded lanuchhudsonslave to AMI with docker

This commit is contained in:
Steffen Wagner
2019-01-22 20:48:45 +00:00
parent 4b34b58102
commit 2f122f06ab
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
AWS=/root/.local/bin/aws
REGION=eu-west-1
HUDSON_SLAVE_AMI_ID=ami-0f6962a59a3a52d8b
HUDSON_SLAVE_AMI_ID=ami-08b16bb742363f967
echo Launching instance...
instanceid=`$AWS ec2 run-instances --image-id $HUDSON_SLAVE_AMI_ID --count 1 --instance-type c5d.4xlarge --key-name Axel --security-groups "Sailing Analytics App" --region $REGION --placement AvailabilityZone=eu-west-1c --tag-specifications 'ResourceType=instance,Tags=[{Key=Name,Value=Hudson Ubuntu Slave}]' --instance-initiated-shutdown-behavior terminate | tee /tmp/slavelaunch.out | jq .Instances[0].InstanceId | sed -e 's/"//g'`
if [ "$instanceid" = "" ]; then