First things first: you need to be on US East to see the stock images: https://pythond.atlassian.net/builds/admin/elastic/manageElasticInstances.action
Fooling around with bamboo until then was an exercise in "what is supposed to be happening here?", but now bamboo is beginning to make sense.
Now bamboo shows a set of stock images that have Elastic Agent preinstalled on them. So I took the ubuntu one and messed with it, running the following:
apt-get install -y python-dev apt-get install -y python-numpy apt-get install -y python3-dev apt-get install -y python3-numpy apt-get install -y xdg-utils wget http://downloads.dlang.org/releases/2014/dmd_2.066.1-0_amd64.deb dpkg -i dmd_2.066.1-0_amd64.deb hg clone https://ariovistus@bitbucket.org/ariovistus/pyd cd pyd python setup.py build python runtests.py -b apt-get install libconfig++9 wget http://http.us.debian.org/debian/pool/main/l/ldc/libphobos2-ldc65_0.14.0.dfsg-1_amd64.deb wget http://http.us.debian.org/debian/pool/main/l/ldc/libphobos2-ldc-debug65_0.14.0.dfsg-1_amd64.deb wget http://http.us.debian.org/debian/pool/main/l/ldc/libphobos2-ldc-dev_0.14.0.dfsg-1_amd64.deb wget http://http.us.debian.org/debian/pool/main/l/ldc/ldc_0.14.0.dfsg-1_amd64.deb dpkg -i ./libphobos2-ldc65_0.14.0.dfsg-1_amd64.deb dpkg -i ./libphobos2-ldc-dev_0.14.0.dfsg-1_amd64.deb dpkg -i ./libphobos2-ldc-debug65_0.14.0.dfsg-1_amd64.deb
I guess in aws, you start with an image (AMI), launch an instance of it, modify the instance, then use the instance to create a new image. So that's what I did. I had to upgrade from 13.10 to 14.10 to install ldc. We'll see if the Elastic Agent still runs.
0 Comments